Changeset 571 for trunk/MagicSoft/Mars/mgui
- Timestamp:
- 01/18/01 11:46:04 (24 years ago)
- Location:
- trunk/MagicSoft/Mars/mgui
- Files:
-
- 4 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mgui/GuiLinkDef.h
r461 r571 7 7 #pragma link C++ class MGMarsMain; 8 8 #pragma link C++ class MGDataCheckMain; 9 #pragma link C++ class MGMonteCarloMain; 10 11 #pragma link C++ class MGPrototyp; 12 9 13 //#pragma link C++ class MDumpEvtHeader; 10 14 -
trunk/MagicSoft/Mars/mgui/MGDataCheckMain.cc
r544 r571 169 169 fFileCont->Sort(kSortByName) ; 170 170 171 fTabF1b->AddFrame(fFileView, new TGLayoutHints(kLHintsTop | kLHintsExpandX , 5, 5, 5, 5) ) ;171 fTabF1b->AddFrame(fFileView, new TGLayoutHints(kLHintsTop | kLHintsExpandX | kLHintsExpandY, 5, 5, 5, 5) ) ; 172 172 173 173 tf->AddFrame(fTabF1, fLayTab) ; … … 181 181 // 182 182 183 SetWMSizeHints(400, 650, 1000, 1000, 10, 10 ) ; // set the smallest and biggest size of the Main frame183 SetWMSizeHints(400, 350, 1000, 1000, 10, 10 ) ; // set the smallest and biggest size of the Main frame 184 184 185 185 MapSubwindows(); -
trunk/MagicSoft/Mars/mgui/MGMarsMain.cc
r466 r571 10 10 11 11 #include "MGDataCheckMain.h" 12 #include "MGMonteCarloMain.h" 13 14 #include "MGPrototyp.h" 12 15 13 16 ClassImp(MGMarsMain) … … 190 193 191 194 case M_BUTTON_EVTDISP: 195 192 196 new TGMsgBox(fClient->GetRoot(), this, 193 197 "WARNING!", … … 208 212 209 213 case M_BUTTON_MONTECARLO: 210 new TGMsgBox(fClient->GetRoot(), this, 211 "WARNING!", 212 "MONTECARLO not yet implemented!", 213 kMBIconExclamation, buttons, &retval); 214 new MGMonteCarloMain(fClient->GetRoot(), this, 400, 650 ) ; 215 214 216 break ; 215 217 -
trunk/MagicSoft/Mars/mgui/Makefile
r546 r571 53 53 54 54 SRCFILES = MGMarsMain.cc \ 55 MGDataCheckMain.cc 55 MGDataCheckMain.cc \ 56 MGMonteCarloMain.cc \ 57 MGPrototyp.cc 56 58 57 59
Note:
See TracChangeset
for help on using the changeset viewer.