Ignore:
Timestamp:
02/25/03 21:07:13 (22 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

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

    r1760 r1793  
    4848    kPB_TPOINT,
    4949    kPB_START,
     50    kPB_DISPLAY1,
     51    kPB_DISPLAY2,
    5052    kPB_RAp,
    5153    kPB_RAm,
     
    345347    TGCompositeFrame *tf1 = fTab->AddTab("Position");
    346348    TGCompositeFrame *tf2 = fTab->AddTab("Track");
    347     TGCompositeFrame *tf4 = fTab->AddTab("Calibration");
     349    TGCompositeFrame *tf4 = fTab->AddTab("Calib");
    348350    TGCompositeFrame *tf5 = fTab->AddTab("Test SE");
     351    TGCompositeFrame *tf6 = fTab->AddTab("Gear");
    349352    /*TGCompositeFrame *tf3 =*/ fTab->AddTab("Demo");
    350353
     
    418421    fList->Add(l3);
    419422    fList->Add(l4);
     423
     424    l1 = new TGLabel(tf6, "FIXME Text missing / Only one axis?");
     425    l1->Move(x, y);
     426    fList->Add(l1);
    420427
    421428    //
     
    465472    fList->Add(but);
    466473
     474    but = new TGTextButton(tf5, "Display", kPB_DISPLAY1);
     475    but->Resize(80, 25);
     476    but->Move(160, 197);
     477    but->SetToolTipText("Display Histogram.");
     478    but->Associate(this);
     479    fList->Add(but);
     480
     481    but = new TGTextButton(tf6, "Display", kPB_DISPLAY2);
     482    but->Resize(80, 25);
     483    but->Move(160, 197);
     484    but->SetToolTipText("Display Histogram.");
     485    but->Associate(this);
     486    fList->Add(but);
     487
    467488    but= new TGTextButton(tf2, "Calc Zd/Az",  kPB_CALCALTAZ);
    468489    but->Resize(80, 25);
     
    11901211                    return kTRUE;
    11911212                case 4:
     1213                    fQueue->Proc(WM_GEAR, (void*)1);
     1214                    return kTRUE;
     1215                case 5:
    11921216                    StartDemo();
    11931217                    return kTRUE;
     
    12011225                if (fTab->GetCurrent()==3)
    12021226                    fQueue->Proc(WM_TESTSE, NULL);
     1227                if (fTab->GetCurrent()==4)
     1228                    fQueue->Proc(WM_GEAR, NULL);
    12031229                cout << "PostMsg (WM_Stop) returned." << endl;
    12041230                return kTRUE;
     
    12561282                fQueue->PostMsg(WM_HOME, 0, 0);
    12571283                return kTRUE;
     1284            case kPB_DISPLAY1:
     1285            case kPB_DISPLAY2:
     1286                fQueue->PostMsg(WM_DISPLAY, 0, 0);
     1287                return kTRUE;
    12581288
    12591289            default:
Note: See TracChangeset for help on using the changeset viewer.