Ignore:
Timestamp:
01/08/03 17:21:33 (22 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Cosy/gui/MGCosy.cc

    r1690 r1699  
    5151    kPB_DECm,
    5252    kPB_LoadBending,
     53    kPB_ResetBending,
    5354    kPB_CALIBSE
    5455};
     
    337338    but = new TGTextButton(tf4, "TPoint", kPB_TPOINT);
    338339    but->Resize(80, 25);
    339     but->Move(25, 197);
     340    but->Move(25, 190);
    340341    but->SetToolTipText("Trigger writing a tpoint coordinate pair.");
    341342    but->Associate(this);
     
    351352    but = new TGTextButton(tf4, "Load", kPB_LoadBending);
    352353    but->Resize(80, 25);
    353     but->Move(25, 227);
     354    but->Move(25, 220);
    354355    but->SetToolTipText("Load bending corrections from file 'bending.txt'");
     356    but->Associate(this);
     357    fList->Add(but);
     358
     359    but = new TGTextButton(tf4, "Reset", kPB_ResetBending);
     360    but->Resize(80, 25);
     361    but->Move(25, 250);
     362    but->SetToolTipText("Reset bending correction (coefficients=0)");
    355363    but->Associate(this);
    356364    fList->Add(but);
     
    681689    fVelocity->Update(vel);
    682690    UpdateOffset(off);
    683    
    684691
    685692#define kError     0x01
     
    962969                fQueue->Proc(WM_LOADBENDING, NULL);
    963970                return kTRUE;
     971            case kPB_ResetBending:
     972                fQueue->Proc(WM_RESETBENDING, NULL);
     973                return kTRUE;
    964974
    965975            default:
Note: See TracChangeset for help on using the changeset viewer.