|
1 |
| -// @(#)root/guibuilder:$Name: $:$Id: TGuiBuilder.cxx,v 1.11 2004/09/21 16:23:36 brun Exp $ |
| 1 | +// @(#)root/guibuilder:$Name: $:$Id: TGuiBuilder.cxx,v 1.12 2004/09/21 17:53:10 brun Exp $ |
2 | 2 | // Author: Valeriy Onuchin 12/09/04
|
3 | 3 |
|
4 | 4 | /*************************************************************************
|
@@ -318,6 +318,16 @@ TGuiBuilder::TGuiBuilder(const TGWindow *p) : TVirtualGuiBld(),
|
318 | 318 | act->fPic = "bld_groupframe.xpm";
|
319 | 319 | AddAction(act, "Containers");
|
320 | 320 |
|
| 321 | + act = new TGuiBldAction("TGVSplitter", "Horizontal Panes", kGuiBldFunc); |
| 322 | + act->fAct = "TGuiBuilder::VSplitter()"; |
| 323 | + act->fPic = "bld_hpaned.xpm"; |
| 324 | + AddAction(act, "Containers"); |
| 325 | + |
| 326 | + act = new TGuiBldAction("TGHSplitter", "Vertical Panes", kGuiBldFunc); |
| 327 | + act->fAct = "TGuiBuilder::HSplitter()"; |
| 328 | + act->fPic = "bld_vpaned.xpm"; |
| 329 | + AddAction(act, "Containers"); |
| 330 | + |
321 | 331 | fShutter->Resize(140, fShutter->GetHeight());
|
322 | 332 |
|
323 | 333 | fStatusBar = new TGStatusBar(this, 40, 10);
|
@@ -697,9 +707,8 @@ Bool_t TGuiBuilder::NewProject(Event_t *)
|
697 | 707 | fEditable->SetWindowName(fEditable->GetName());
|
698 | 708 | fEditable->SetEditDisabled(kFALSE);
|
699 | 709 | fEditable->MapRaised();
|
700 |
| - fEditable->AddInput(kButtonPressMask); |
| 710 | + fEditable->AddInput(kKeyPressMask | kButtonPressMask); |
701 | 711 | fEditable->SetEditable(kTRUE);
|
702 |
| - fEditable->AddInput(kKeyPressMask); |
703 | 712 |
|
704 | 713 | return kTRUE;
|
705 | 714 | }
|
@@ -1049,3 +1058,53 @@ void TGuiBuilder::BindKeys()
|
1049 | 1058 | gVirtualX->GrabKey(fId, gVirtualX->KeysymToKeycode(kKey_Backspace),
|
1050 | 1059 | kKeyShiftMask, kTRUE);
|
1051 | 1060 | }
|
| 1061 | + |
| 1062 | +//______________________________________________________________________________ |
| 1063 | +TGFrame *TGuiBuilder::VSplitter() |
| 1064 | +{ |
| 1065 | + // |
| 1066 | + |
| 1067 | + TGHorizontalFrame *ret = new TGHorizontalFrame(); |
| 1068 | + ret->MustCleanup(); |
| 1069 | + TGVerticalFrame *v1 = new TGVerticalFrame(ret, 40, 10, kSunkenFrame | kFixedWidth); |
| 1070 | + v1->MustCleanup(); |
| 1071 | + ret->AddFrame(v1, new TGLayoutHints(kLHintsLeft | kLHintsExpandY)); |
| 1072 | + |
| 1073 | + TGVSplitter *splitter = new TGVSplitter(ret); |
| 1074 | + splitter->SetFrame(v1, kTRUE); |
| 1075 | + ret->AddFrame(splitter, new TGLayoutHints(kLHintsLeft | kLHintsExpandY)); |
| 1076 | + |
| 1077 | + TGVerticalFrame *v2 = new TGVerticalFrame(ret, 10, 10, kSunkenFrame); |
| 1078 | + v2->ChangeOptions(kSunkenFrame); |
| 1079 | + v2->MustCleanup(); |
| 1080 | + ret->AddFrame(v2, new TGLayoutHints(kLHintsRight | kLHintsExpandX | kLHintsExpandY)); |
| 1081 | + |
| 1082 | + ret->MapSubwindows(); |
| 1083 | + ret->SetLayoutBroken(kFALSE); |
| 1084 | + return ret; |
| 1085 | +} |
| 1086 | + |
| 1087 | +//______________________________________________________________________________ |
| 1088 | +TGFrame *TGuiBuilder::HSplitter() |
| 1089 | +{ |
| 1090 | + // |
| 1091 | + |
| 1092 | + TGVerticalFrame *ret = new TGVerticalFrame(); |
| 1093 | + ret->MustCleanup(); |
| 1094 | + TGHorizontalFrame *v1 = new TGHorizontalFrame(ret, 10, 40, kSunkenFrame | kFixedHeight); |
| 1095 | + v1->MustCleanup(); |
| 1096 | + ret->AddFrame(v1, new TGLayoutHints(kLHintsTop | kLHintsExpandX)); |
| 1097 | + |
| 1098 | + TGHSplitter *splitter = new TGHSplitter(ret); |
| 1099 | + splitter->SetFrame(v1, kTRUE); |
| 1100 | + ret->AddFrame(splitter, new TGLayoutHints(kLHintsTop | kLHintsExpandX)); |
| 1101 | + |
| 1102 | + TGHorizontalFrame *v2 = new TGHorizontalFrame(ret, 10, 10); |
| 1103 | + v2->ChangeOptions(kSunkenFrame); |
| 1104 | + v2->MustCleanup(); |
| 1105 | + ret->AddFrame(v2, new TGLayoutHints(kLHintsBottom | kLHintsExpandX | kLHintsExpandY)); |
| 1106 | + |
| 1107 | + ret->MapSubwindows(); |
| 1108 | + ret->SetLayoutBroken(kFALSE); |
| 1109 | + return ret; |
| 1110 | +} |
0 commit comments