Logo ROOT   6.08/07
Reference Guide
TGMdiMainFrame.cxx
Go to the documentation of this file.
1 // @(#)root/gui:$Id$
2 // Author: Bertrand Bellenot 20/08/2004
3 
4 /*************************************************************************
5  * Copyright (C) 1995-2004, Rene Brun and Fons Rademakers. *
6  * All rights reserved. *
7  * *
8  * For the licensing terms see $ROOTSYS/LICENSE. *
9  * For the list of contributors see $ROOTSYS/README/CREDITS. *
10  *************************************************************************/
11 
12 /**************************************************************************
13 
14  This file is part of TGMdi an extension to the xclass toolkit.
15  Copyright (C) 1998-2002 by Harald Radke, Hector Peraza.
16 
17  This application is free software; you can redistribute it and/or
18  modify it under the terms of the GNU Library General Public
19  License as published by the Free Software Foundation; either
20  version 2 of the License, or (at your option) any later version.
21 
22  This application is distributed in the hope that it will be useful,
23  but WITHOUT ANY WARRANTY; without even the implied warranty of
24  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
25  Library General Public License for more details.
26 
27  You should have received a copy of the GNU Library General Public
28  License along with this library; if not, write to the Free
29  Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
30 
31 **************************************************************************/
32 
33 //////////////////////////////////////////////////////////////////////////
34 // //
35 // TGMdiMainFrame. //
36 // //
37 // This file contains the TGMdiMainFrame class. //
38 // //
39 //////////////////////////////////////////////////////////////////////////
40 
41 #include "KeySymbols.h"
42 #include "TGFrame.h"
43 #include "TGMdiMainFrame.h"
44 #include "TGMdiDecorFrame.h"
45 #include "TGMdiFrame.h"
46 #include "TGMdiMenu.h"
47 #include "TGGC.h"
48 #include "TGResourcePool.h"
49 #include "Riostream.h"
50 #include "TList.h"
51 
56 
57 ////////////////////////////////////////////////////////////////////////////////
58 /// Create a MDI main frame.
59 
61  Int_t w, Int_t h, UInt_t options,
62  Pixel_t back) :
63  TGCanvas(p, w, h, options | kDoubleBorder | kSunkenFrame | kMdiMainFrame, back)
64 {
65  fContainer = new TGMdiContainer(this, 10, 10, kOwnBackground,
66  fClient->GetShadow(GetDefaultFrameBackground()));
67  TGCanvas::SetContainer(fContainer);
68 
69  fNumberOfFrames = 0;
70  fMenuBar = menuBar;
71  fChildren = 0;
72  fCurrent = 0;
73  fArrangementMode = 0;
74 
75  const TGResourcePool *res = GetResourcePool();
76  fBackCurrent = res->GetSelectedBgndColor();
77  fForeCurrent = res->GetSelectedFgndColor();
78  fForeNotCurrent = res->GetFrameBgndColor();
79  fBackNotCurrent = res->GetFrameShadowColor();
80  fFontCurrent = (TGFont *)res->GetMenuFont();
81  fFontNotCurrent = fFontCurrent;
82 
83  fBoxGC = new TGGC(*gClient->GetResourcePool()->GetFrameGC());
84  fBoxGC->SetForeground(fForeNotCurrent);
85  fBoxGC->SetBackground(fBackNotCurrent);
86  fBoxGC->SetFunction(kGXxor);
87  fBoxGC->SetLineWidth(TGMdiDecorFrame::kMdiBorderWidth-3);
88  fBoxGC->SetSubwindowMode(kIncludeInferiors);
89  fBoxGC->SetStipple(fClient->GetResourcePool()->GetCheckeredBitmap());
90  fBoxGC->SetFillStyle(kFillOpaqueStippled);
91 
92  fCurrentX = fCurrentY = 0;
93  fResizeMode = kMdiDefaultResizeMode;
94 
95  fWinListMenu = new TGPopupMenu(fClient->GetDefaultRoot());
96 
97  const TGMainFrame *main = (TGMainFrame *) GetMainFrame();
98  if (main){
99  Int_t keycode = gVirtualX->KeysymToKeycode(kKey_Tab);
100  main->BindKey(this, keycode, kKeyControlMask);
101  main->BindKey(this, keycode, kKeyControlMask | kKeyShiftMask);
102  keycode = gVirtualX->KeysymToKeycode(kKey_F4);
103  main->BindKey(this, keycode, kKeyControlMask);
104  ((TGFrame *)main)->Connect("ProcessedConfigure(Event_t*)",
105  "TGMdiMainFrame", this, "UpdateMdiButtons()");
106  }
107 
108  MapSubwindows();
109  Layout();
110  MapWindow();
111  SetWindowName();
112 }
113 
114 ////////////////////////////////////////////////////////////////////////////////
115 /// MDI main frame destructor.
116 
118 {
119  TGMdiFrameList *tmp, *travel = fChildren;
120 
121  while (travel) {
122  tmp = travel->GetNext();
123  delete travel;
124  travel = tmp;
125  }
126 
128  if (fFontNotCurrent != fFontCurrent) fClient->FreeFont((TGFont *)fFontNotCurrent);
129 
130  delete fBoxGC;
131 
132  if (!MustCleanup()) {
133 
134  const TGMainFrame *main = (TGMainFrame *) GetMainFrame();
135 
136  if (main && main->InheritsFrom("TGMainFrame")) {
137  Int_t keycode = gVirtualX->KeysymToKeycode(kKey_Tab);
138  main->RemoveBind(this, keycode, kKeyControlMask);
139  main->RemoveBind(this, keycode, kKeyControlMask | kKeyShiftMask);
140  keycode = gVirtualX->KeysymToKeycode(kKey_F4);
141  main->RemoveBind(this, keycode, kKeyControlMask);
142  }
143  }
144 }
145 
146 ////////////////////////////////////////////////////////////////////////////////
147 /// Set MDI windows resize mode (opaque or transparent).
148 
150 {
151  TGMdiFrameList *travel;
152 
153  fResizeMode = mode;
154  for (travel = fChildren; travel; travel = travel->GetNext()) {
155  travel->GetDecorFrame()->SetResizeMode(mode);
156  }
157 }
158 
159 ////////////////////////////////////////////////////////////////////////////////
160 /// Handle keyboards events into MDI main frame.
161 
163 {
164  char input[10];
165  UInt_t keysym;
166 
167  if (event->fType == kGKeyPress) {
168  gVirtualX->LookupString(event, input, sizeof(input), keysym);
169  if ((EKeySym)keysym == kKey_Tab) {
170  if (event->fState & kKeyControlMask) {
171  if (event->fState & kKeyShiftMask) {
172  CirculateUp();
173  } else {
174  CirculateDown();
175  }
176  return kTRUE;
177  }
178  } else if ((EKeySym)keysym == kKey_F4) {
179  if (event->fState & kKeyControlMask) {
180  Close(GetCurrent());
181  return kTRUE;
182  }
183  }
184  }
185  return kFALSE;
186 }
187 
188 ////////////////////////////////////////////////////////////////////////////////
189 /// Add new MDI child window.
190 
192 {
193  TGMdiFrameList *travel;
194 
195  frame->UnmapWindow();
196 
197  travel = new TGMdiFrameList;
198  travel->SetCyclePrev(travel);
199  travel->SetCycleNext(travel);
200  travel->SetPrev(0);
201  if (fChildren) fChildren->SetPrev(travel);
202  travel->SetNext(fChildren);
203  fChildren = travel;
204 
205  travel->SetDecorFrame(new TGMdiDecorFrame(this, frame, frame->GetWidth(),
206  frame->GetHeight(), fBoxGC));
207 
208  travel->SetFrameId(frame->GetId());
210 
211  if (fCurrentX + travel->GetDecorFrame()->GetWidth() > fWidth) fCurrentX = 0;
212  if (fCurrentY + travel->GetDecorFrame()->GetHeight() > fHeight) fCurrentY = 0;
213  travel->GetDecorFrame()->Move(fCurrentX, fCurrentY);
214 
215  fCurrentX += travel->GetDecorFrame()->GetTitleBar()->GetHeight() + fBorderWidth * 2;
216  fCurrentY += travel->GetDecorFrame()->GetTitleBar()->GetHeight() + fBorderWidth * 2;
217  travel->GetDecorFrame()->SetMdiButtons(travel->GetDecorFrame()->GetMdiButtons());
218 
219  fNumberOfFrames++;
220 
222  SetCurrent(travel);
223  Layout();
224 
226  FrameCreated(travel->GetDecorFrame()->GetId());
227 }
228 
229 ////////////////////////////////////////////////////////////////////////////////
230 /// Remove MDI child window.
231 
233 {
234  TGMdiFrameList *travel = fChildren;
235 
236  if (!frame) return kFALSE;
237 
238  if (frame->IsEditable()) frame->SetEditable(kFALSE);
239 
240  while (travel && (travel->GetFrameId() != frame->GetId()))
241  travel = travel->GetNext();
242  if (!travel) return kFALSE;
243 
244  if (travel == fCurrent) fCurrent = 0;
245 
246  // unlink the element from the fCycle list
247  travel->GetCyclePrev()->SetCycleNext(travel->GetCycleNext());
248  travel->GetCycleNext()->SetCyclePrev(travel->GetCyclePrev());
249 
250  // and from the main list
251  if (travel->GetNext()) {
252  travel->GetNext()->SetPrev(travel->GetPrev());
253  }
254  if (travel->GetPrev()) {
255  travel->GetPrev()->SetNext(travel->GetNext());
256  } else {
257  fChildren = travel->GetNext();
258  }
259 
260  if (!fCurrent) {
261  if (fChildren) SetCurrent(travel->GetCyclePrev());
262  }
263 
264  travel->GetDecorFrame()->RemoveFrame(frame);
265 
266  UInt_t old_id = frame->GetId();
267 
268  delete travel->fDecor;
269 
270  fNumberOfFrames--;
271 
273  Layout();
274 
275  SendMessage(fParent, MK_MSG(kC_MDI, kMDI_CLOSE), old_id, 0);
276  FrameClosed(old_id);
277 
278  return kTRUE;
279 }
280 
281 ////////////////////////////////////////////////////////////////////////////////
282 /// Set current (active) MDI child window (by id).
283 
285 {
286  if (fCurrent && (fCurrent->GetDecorFrame()->GetId() == id)) {
291 
292  Emit("SetCurrent(TGMdiFrame*)", (long)fCurrent->GetDecorFrame()->GetMdiFrame());
293  return kTRUE;
294  }
295 
296  TGMdiFrameList *travel = fChildren;
297  while (travel && (travel->GetDecorFrame()->GetId() != id)) travel = travel->GetNext();
298  if (!travel) return kFALSE;
299 
300  return SetCurrent(travel);
301 }
302 
303 ////////////////////////////////////////////////////////////////////////////////
304 /// Set current (active) MDI child window (by frame pointer).
305 
307 {
308  if (fCurrent && (fCurrent->GetDecorFrame()->GetMdiFrame() == f)) {
313  Emit("SetCurrent(TGMdiFrame*)", (long)fCurrent->GetDecorFrame()->GetMdiFrame());
314  return kTRUE;
315  }
316 
317  TGMdiFrameList *travel = fChildren;
318  while (travel && (travel->GetDecorFrame()->GetMdiFrame() != f)) travel = travel->GetNext();
319  if (!travel) return kFALSE;
320 
321  return SetCurrent(travel);
322 }
323 
324 ////////////////////////////////////////////////////////////////////////////////
325 /// Set current (active) MDI child window (by frame list).
326 
328 {
329  if (fCurrent && (fCurrent == newcurrent)) {
334  Emit("SetCurrent(TGMdiFrame*)", (long)fCurrent->GetDecorFrame()->GetMdiFrame());
335  return kTRUE;
336  }
337 
338  if (fCurrent) {
343  }
344 
345  if (newcurrent) {
346  if (fCurrent) {
347  // unlink the element from the old position
348  newcurrent->GetCyclePrev()->SetCycleNext(newcurrent->GetCycleNext());
349  newcurrent->GetCycleNext()->SetCyclePrev(newcurrent->GetCyclePrev());
350  // and link it to the top of the window fCycle stack
351  newcurrent->SetCyclePrev(fCurrent);
352  newcurrent->SetCycleNext(fCurrent->GetCycleNext());
353  fCurrent->SetCycleNext(newcurrent);
354  newcurrent->GetCycleNext()->SetCyclePrev(newcurrent);
355  } else {
356  // no current? well, put it at the head of the list...
357  if (fChildren && newcurrent != fChildren) {
358  // unlink the element from the old position
359  newcurrent->GetCyclePrev()->SetCycleNext(newcurrent->GetCycleNext());
360  newcurrent->GetCycleNext()->SetCyclePrev(newcurrent->GetCyclePrev());
361  // and link it to the beginning of the window list
362  newcurrent->SetCyclePrev(fChildren);
363  newcurrent->SetCycleNext(fChildren->GetCycleNext());
364  fChildren->SetCycleNext(newcurrent);
365  newcurrent->GetCycleNext()->SetCyclePrev(newcurrent);
366  }
367  }
368  }
369 
370  fCurrent = newcurrent;
371 
372  if (!fCurrent) return kFALSE;
373 
376  fBackCurrent,
377  fFontCurrent);
378 
380  Emit("SetCurrent(TGMdiFrame*)", (long)fCurrent->GetDecorFrame()->GetMdiFrame());
381 
383 
387 
388  return kTRUE;
389 }
390 
391 ////////////////////////////////////////////////////////////////////////////////
392 /// Bring the lowest window to the top.
393 
395 {
396  if (fCurrent) {
400 
402 
405  fBackCurrent,
406  fFontCurrent);
410 
411  } else if (fChildren) {
413  }
414 }
415 
416 ////////////////////////////////////////////////////////////////////////////////
417 /// Send the highest window to the bottom.
418 
420 {
421  if (fCurrent) {
426 
427  fCurrent = fCurrent->GetCyclePrev(); // do not call SetCurrent in order
428  // to not to alter the stacking order
431  fBackCurrent,
432  fFontCurrent);
436  } else if (fChildren) {
438  }
439 }
440 
441 ////////////////////////////////////////////////////////////////////////////////
442 /// Return decor frame of MDI child window (by frame pointer).
443 
445 {
446  TGMdiFrameList *travel = fChildren;
447  while (travel && (travel->GetDecorFrame()->GetMdiFrame() != frame))
448  travel = travel->GetNext();
449  if (!travel) return 0;
450  return travel->GetDecorFrame();
451 }
452 
453 ////////////////////////////////////////////////////////////////////////////////
454 /// Return decor frame of MDI child window (by id).
455 
457 {
458  TGMdiFrameList *travel = fChildren;
459  while (travel && (travel->GetDecorFrame()->GetId() != id)) travel = travel->GetNext();
460  if (!travel) return 0;
461  return travel->GetDecorFrame();
462 }
463 
464 ////////////////////////////////////////////////////////////////////////////////
465 /// Return frame of MDI child window (by id).
466 
468 {
469  TGMdiDecorFrame *frame = GetDecorFrame(id);
470  if (!frame) return 0;
471  return frame->GetMdiFrame();
472 }
473 
474 ////////////////////////////////////////////////////////////////////////////////
475 /// Return resizing box (rectangle) for current MDI child.
476 
478 {
480  return TGRectangle(0, 0, fWidth - 2 * fBorderWidth, fHeight - 2 * fBorderWidth);
481  } else {
482  TGRectangle rect;
483  TGMdiFrameList *travel;
484 
485  for (travel = fChildren; travel; travel = travel->GetNext()) {
486  Int_t x = travel->GetDecorFrame()->GetX();
487  Int_t y = travel->GetDecorFrame()->GetY();
488  UInt_t w = travel->GetDecorFrame()->GetWidth();
489  UInt_t h = travel->GetDecorFrame()->GetHeight();
490  TGRectangle wrect(x, y, w, h);
491  rect.Merge(wrect);
492  }
493  return rect;
494  }
495 }
496 
497 ////////////////////////////////////////////////////////////////////////////////
498 /// Return minimized box (rectangle) for current MDI child.
499 
501 {
502  TGRectangle rect;
503  TGMdiFrameList *travel;
504  Int_t first = kTRUE;
505 
506  for (travel = fChildren; travel; travel = travel->GetNext()) {
507  if (travel->GetDecorFrame()->IsMinimized()) {
508  TGRectangle wrect(travel->GetDecorFrame()->GetX(), travel->GetDecorFrame()->GetY(),
509  travel->GetDecorFrame()->GetWidth(), travel->GetDecorFrame()->GetHeight());
510  if (first) rect = wrect;
511  else rect.Merge(wrect);
512  first = kFALSE;
513  }
514  }
515  return rect;
516 }
517 
518 ////////////////////////////////////////////////////////////////////////////////
519 /// Update MDI menu entries with current list of MDI child windows.
520 
522 {
523  TString buf;
524  char scut;
525  TGMdiFrameList *travel;
526  const TGPicture *pic;
527 
528  TGMenuEntry *e;
530  while ((e = (TGMenuEntry*)fNext())) {
532  }
533  scut = '0';
534 
535  if (!fChildren) {
536  fWinListMenu->AddEntry(new TGHotString("(None)"), 1000);
537  fWinListMenu->DisableEntry(1000);
538  return;
539  }
540 
541  for (travel = fChildren; travel; travel = travel->GetNext()) {
542  scut++;
543  if (scut == ('9' + 1)) scut = 'A';
544  buf = TString::Format("&%c. %s", scut, travel->GetDecorFrame()->GetWindowName());
545  if (travel->GetDecorFrame()->GetMdiButtons() & kMdiMenu)
546  pic = travel->GetDecorFrame()->GetWindowIcon();
547  else
548  pic = 0;
549  fWinListMenu->AddEntry(new TGHotString(buf.Data()), travel->GetDecorFrame()->GetId(), 0, pic);
550  }
551 
552  if (fCurrent)
554 }
555 
556 ////////////////////////////////////////////////////////////////////////////////
557 /// Recalculates the postion and the size of all MDI child windows.
558 
560 {
564  2 * fBorderWidth);
565 }
566 
567 ////////////////////////////////////////////////////////////////////////////////
568 /// Update the status of MDI buttons in the decor frame of all children.
569 
571 {
572  static Bool_t done = kFALSE;
573  TGMdiFrameList *travel;
574  if (done) return;
575  for (travel = fChildren; travel; travel = travel->GetNext()) {
576  if (!travel->GetDecorFrame()->IsMaximized() &&
577  !travel->GetDecorFrame()->IsMinimized()) {
578  travel->GetDecorFrame()->SetMdiButtons(travel->GetDecorFrame()->GetMdiButtons());
579  }
580  }
581  done = kTRUE;
582 }
583 
584 ////////////////////////////////////////////////////////////////////////////////
585 /// Automatic repositionning and resizing of every MDI child window.
586 /// depending on mode : tile horizontal, tile vertical, or cascade.
587 
589 {
590  Int_t factor_x = 0;
591  Int_t factor_y = 0;
592  Int_t num_mapped = 0;
593  Int_t x = 0;
594  Int_t y = 0;
595  Int_t w = fWidth - 2 * fBorderWidth; //GetContainer()->GetWidth();
596  Int_t h = fHeight - 2 * fBorderWidth; //GetContainer()->GetHeight();
597 
598  fArrangementMode = mode;
599 
600  TGMdiFrameList *tmp, *travel;
601 
602  for (travel = fChildren; travel; travel = travel->GetNext()) {
603  if (travel->GetDecorFrame()->IsMaximized())
604  Restore(travel->GetDecorFrame()->GetMdiFrame());
605  if (!travel->GetDecorFrame()->IsMinimized())
606  ++num_mapped;
607  }
608 
609  // must also restore view to 0,0
610  GetViewPort()->SetHPos(0);
611  GetViewPort()->SetVPos(0);
612 
614 
615  travel = fChildren;
616 
617  if (num_mapped == 0) return;
618 
619  TGRectangle irect = GetMinimizedBBox();
620  h -= irect.fH;
621 
622  switch (mode) {
623  case kMdiTileHorizontal:
624  factor_y = h / num_mapped;
625  for (travel = fChildren; travel; travel = travel->GetNext()) {
626  if (!travel->GetDecorFrame()->IsMinimized()) {
627  travel->GetDecorFrame()->MoveResize(x, y, w, factor_y);
628  y = y + factor_y;
629  }
630  }
631  break;
632 
633  case kMdiTileVertical:
634  factor_x = w / num_mapped;
635  for (travel = fChildren; travel; travel = travel->GetNext()) {
636  if (!travel->GetDecorFrame()->IsMinimized()) {
637  travel->GetDecorFrame()->MoveResize(x, y, factor_x, h);
638  x = x + factor_x;
639  }
640  }
641  break;
642 
643  case kMdiCascade:
644  y = travel->GetDecorFrame()->GetTitleBar()->GetX() +
645  travel->GetDecorFrame()->GetTitleBar()->GetHeight();
646  x = y;
647  factor_y = (h * 2) / 3;
648  factor_x = (w * 2) / 3;
649 
650  travel = fCurrent;
651  if (!travel) travel = fChildren;
652  tmp = travel;
653  if (travel) {
654  do {
655  travel = travel->GetCycleNext();
656  if (!travel->GetDecorFrame()->IsMinimized()) {
657  travel->GetDecorFrame()->MoveResize(x - y, x - y, factor_x, factor_y);
658  x += y;
659  }
660  } while (travel != tmp);
661  }
662  break;
663  }
664 
665  FramesArranged(mode);
666 
667  Layout();
668 }
669 
670 ////////////////////////////////////////////////////////////////////////////////
671 /// This is an attempt to an "smart" minimized window re-arrangement.
672 
674 {
675  TGMdiFrameList *travel, *closest;
676  Int_t x, y, w, h;
677 
678  Bool_t arranged = kTRUE;
679 
680  for (travel = fChildren; travel && arranged; travel = travel->GetNext())
681  if (travel->GetDecorFrame()->IsMinimized()) arranged = kFALSE;
682 
683  // return if there is nothing to do
684 
685  if (arranged || !fChildren) return;
686 
690 
691  x = 0;
692  y = GetViewPort()->GetHeight() - h;
693 
694  // we'll use the _minimizedUserPlacement variable as a "not arranged" flag
695 
696  for (travel = fChildren; travel; travel = travel->GetNext())
697  travel->GetDecorFrame()->SetMinUserPlacement();
698 
699  do {
700  closest = 0;
701  Int_t cdist = 0;
702  for (travel = fChildren; travel; travel = travel->GetNext()) {
703  if (travel->GetDecorFrame()->IsMinimized()) {
704  if (travel->GetDecorFrame()->GetMinUserPlacement()) {
705  Int_t dx = travel->GetDecorFrame()->GetX() - x;
706  Int_t dy = y - travel->GetDecorFrame()->GetY();
707  Int_t dist = dx * dx + dy * dy;
708  if (!closest || (dist < cdist)) {
709  closest = travel;
710  cdist = dist;
711  }
712  }
713  }
714  }
715 
716  if (closest) {
717  closest->GetDecorFrame()->SetMinimizedX(x);
718  closest->GetDecorFrame()->SetMinimizedY(y);
719  closest->GetDecorFrame()->MoveResize(x, y, w, h);
721 
722  x += w;
723  if (x + w > (Int_t)GetViewPort()->GetWidth()) {
724  x = 0;
725  y -= h;
726  }
727  }
728 
729  } while (closest);
730 
731  // reset the fMinimizedUserPlacement settings for all windows
732 
733  for (travel = fChildren; travel; travel = travel->GetNext())
735 }
736 
737 ////////////////////////////////////////////////////////////////////////////////
738 /// Process messages MDI main frame.
739 
741 {
742  switch (GET_MSG(msg)) {
743  case kC_MDI:
744  SetCurrent(parm1);
745  switch (GET_SUBMSG(msg)) {
746 
747  case kMDI_MINIMIZE:
748  Minimize(GetCurrent());
749  break;
750 
751  case kMDI_MAXIMIZE:
752  Maximize(GetCurrent());
753  break;
754 
755  case kMDI_RESTORE:
756  Restore(GetCurrent());
757  break;
758 
759  case kMDI_CLOSE:
760  Close(GetCurrent());
761  break;
762 
763  case kMDI_MOVE:
764  FreeMove(GetCurrent());
765  break;
766 
767  case kMDI_SIZE:
768  FreeSize(GetCurrent());
769  break;
770 
771  case kMDI_HELP:
773  break;
774  }
775  break;
776 
777  default:
778  return TGCanvas::ProcessMessage(msg, parm1, parm2);
779  }
780 
781  return kTRUE;
782 }
783 
784 ////////////////////////////////////////////////////////////////////////////////
785 /// Maximize MDI child window mdiframe.
786 
788 {
789  TGMdiDecorFrame *frame = GetDecorFrame(mdiframe);
790 
791  if (!frame) return;
792 
793  if (frame->IsMaximized()) return;
794 
795  if (frame->IsMinimized()) Restore(mdiframe);
796 
797  frame->SetDecorBorderWidth(0);
798  frame->SetPreResizeX(frame->GetX());
799  frame->SetPreResizeY(frame->GetY());
800  frame->SetPreResizeWidth(frame->GetWidth());
801  frame->SetPreResizeHeight(frame->GetHeight());
802  frame->GetUpperHR()->UnmapWindow();
803  frame->GetLowerHR()->UnmapWindow();
804  frame->GetLeftVR()->UnmapWindow();
805  frame->GetRightVR()->UnmapWindow();
806  frame->GetUpperLeftCR()->UnmapWindow();
807  frame->GetUpperRightCR()->UnmapWindow();
808  frame->GetLowerLeftCR()->UnmapWindow();
809  frame->GetLowerRightCR()->UnmapWindow();
810 
812  fHeight - 2 * fBorderWidth);
813  frame->Maximize();
814  frame->GetTitleBar()->LayoutButtons(frame->GetMdiButtons(), frame->IsMinimized(),
815  frame->IsMaximized());
816  frame->GetTitleBar()->RemoveFrames(frame->GetTitleBar()->GetWinIcon(),
817  frame->GetTitleBar()->GetButtons());
818  frame->HideFrame(frame->GetTitleBar());
819 
820  if (fMenuBar) {
824  frame->GetTitleBar()->GetButtons());
825  fMenuBar->Layout();
826  }
827 
829  FrameMaximized(frame->GetId());
830 
831  Layout();
832 }
833 
834 ////////////////////////////////////////////////////////////////////////////////
835 /// Restore size of MDI child window mdiframe.
836 
838 {
839  TGMdiDecorFrame *frame = GetDecorFrame(mdiframe);
840 
841  if (!frame) return;
842 
843  if (frame->IsMinimized() == kFALSE && frame->IsMaximized() == kFALSE) return;
844 
845  if (frame->IsMinimized()) {
846  frame->SetMinimizedX(frame->GetX());
847  frame->SetMinimizedY(frame->GetY());
848  frame->Minimize(kFALSE);
850  fBackCurrent,
851  fFontCurrent);
852  } else if (frame->IsMaximized()) {
854  frame->MapSubwindows();
855 
856  if (fMenuBar) {
858  frame->GetTitleBar()->GetButtons());
859  fMenuBar->Layout();
860  }
861 
862  frame->GetTitleBar()->AddFrames(frame->GetTitleBar()->GetWinIcon(),
863  frame->GetTitleBar()->GetButtons());
865  fFontCurrent);
866  frame->ShowFrame(frame->GetTitleBar());
867  }
868  frame->Minimize(kFALSE);
869  frame->Maximize(kFALSE);
870  frame->GetTitleBar()->LayoutButtons(frame->GetMdiButtons(), kFALSE, kFALSE);
871  frame->MoveResize(frame->GetPreResizeX(), frame->GetPreResizeY(),
872  frame->GetPreResizeWidth(), frame->GetPreResizeHeight());
873  SetCurrent(mdiframe);
875  FrameRestored(frame->GetId());
876 
877  Layout();
878 }
879 
880 ////////////////////////////////////////////////////////////////////////////////
881 /// Minimize MDI child window mdiframe.
882 
884 {
885  Int_t x, y, w, h;
886  TGMdiDecorFrame *frame = GetDecorFrame(mdiframe);
887 
888  if (!frame) return;
889 
890  if (frame->IsMinimized()) return;
891 
892  if (frame->IsMaximized()) Restore(mdiframe);
893 
894  frame->SetPreResizeX(frame->GetX());
895  frame->SetPreResizeY(frame->GetY());
896  frame->SetPreResizeWidth(frame->GetWidth());
897  frame->SetPreResizeHeight(frame->GetHeight());
898 
899  h = frame->GetTitleBar()->GetDefaultHeight() + frame->GetBorderWidth();
900  w = kMinimizedWidth * h + frame->GetBorderWidth();
901 
902  if (!frame->GetMinUserPlacement()) {
903 
904  x = 0;
905  y = GetViewPort()->GetHeight() - h;
906 
907  while (1) {
908  TGMdiFrameList *travel;
909  Bool_t taken = kFALSE;
910 
911  // find an empty spot...
912  for (travel = fChildren; travel; travel = travel->GetNext()) {
913  if (travel->GetDecorFrame()->IsMinimized()) {
914  TGPosition p(travel->GetDecorFrame()->GetX(),
915  travel->GetDecorFrame()->GetY());
916  TGDimension s(travel->GetDecorFrame()->GetWidth(),
917  travel->GetDecorFrame()->GetHeight());
918  if ((x <= p.fX + (Int_t) s.fWidth - 1) && (x + w - 1 >= p.fX) &&
919  (y <= p.fY + (Int_t) s.fHeight - 1) && (y + h - 1 >= p.fY)) {
920  taken = kTRUE;
921  break;
922  }
923  }
924  }
925  if (!taken) break;
926 
927  x += w;
928  if (x + w > (Int_t)GetViewPort()->GetWidth()) {
929  x = 0;
930  y -= h;
931  }
932  }
933 
934  frame->SetMinimizedX(x);
935  frame->SetMinimizedY(y);
936  }
937 
938  frame->Minimize();
939 
940  frame->MoveResize(frame->GetMinimizedX(), frame->GetMinimizedY(), w, h);
941  frame->LowerWindow();
942  frame->GetTitleBar()->LayoutButtons(frame->GetMdiButtons(),
943  frame->IsMinimized(),
944  frame->IsMaximized());
945  frame->Layout();
946 
948  FrameMinimized(frame->GetId());
949 
950  Layout();
951 }
952 
953 ////////////////////////////////////////////////////////////////////////////////
954 /// Close MDI child window mdiframe.
955 
957 {
958  if (!mdiframe) return kFALSE;
959 
960  TGMdiDecorFrame *frame = GetDecorFrame(mdiframe);
961  Restore(mdiframe);
962  mdiframe->Emit("CloseWindow()");
963  if (frame && mdiframe->TestBit(kNotDeleted) && !mdiframe->TestBit(TGMdiFrame::kDontCallClose))
964  return frame->CloseWindow();
965  return kTRUE;
966 }
967 
968 ////////////////////////////////////////////////////////////////////////////////
969 /// Allow to move MDI child window mdiframe.
970 
972 {
973  TGMdiDecorFrame *frame = GetDecorFrame(mdiframe);
974  if (!frame) return;
975 
976  Int_t x = frame->GetTitleBar()->GetWidth() / 2;
977  Int_t y = frame->GetTitleBar()->GetHeight() - 1;
978 
979  gVirtualX->Warp(x, y, frame->GetTitleBar()->GetId());
980 
981  frame->GetTitleBar()->SetLeftButPressed();
982  frame->GetTitleBar()->SetX0(x);
983  frame->GetTitleBar()->SetY0(y);
984  Cursor_t cursor = gVirtualX->CreateCursor(kMove);
985  gVirtualX->SetCursor(frame->GetTitleBar()->GetId(), cursor);
986 
987  gVirtualX->GrabPointer(frame->GetTitleBar()->GetId(),
989  kNone, cursor, kTRUE, kFALSE);
990 }
991 
992 ////////////////////////////////////////////////////////////////////////////////
993 /// Allow to resize MDI child window mdiframe.
994 
996 {
997  TGMdiDecorFrame *frame = GetDecorFrame(mdiframe);
998  if (!frame) return;
999 
1000  Int_t x = frame->GetLowerRightCR()->GetWidth() - 5;
1001  Int_t y = frame->GetLowerRightCR()->GetHeight() - 5;
1002 
1003  Int_t xroot, yroot;
1004  Window_t win;
1005 
1006  gVirtualX->TranslateCoordinates(frame->GetLowerRightCR()->GetId(),
1007  fClient->GetDefaultRoot()->GetId(), x, y, xroot, yroot, win);
1008 
1009  gVirtualX->Warp(x, y, frame->GetLowerRightCR()->GetId());
1010 
1011  Event_t event;
1012 
1013  event.fType = kButtonPress;
1014  event.fWindow = frame->GetLowerRightCR()->GetId();
1015  event.fCode = kButton1;
1016  event.fX = x;
1017  event.fY = y;
1018  event.fXRoot = xroot;
1019  event.fYRoot = yroot;
1020 
1021  Cursor_t cursor = gVirtualX->CreateCursor(kBottomRight);
1022  gVirtualX->SetCursor(frame->GetLowerRightCR()->GetId(), cursor);
1023 
1024  gVirtualX->GrabPointer(frame->GetLowerRightCR()->GetId(),
1026  kNone, cursor, kTRUE, kFALSE);
1027 
1028  frame->GetLowerRightCR()->HandleButton(&event);
1029 }
1030 
1031 ////////////////////////////////////////////////////////////////////////////////
1032 /// Calls Help() method of MDI child window mdiframe.
1033 
1035 {
1036  if (mdiframe)
1037  return mdiframe->Help();
1038  else
1039  return kFALSE;
1040 }
1041 
1042 ////////////////////////////////////////////////////////////////////////////////
1043 /// Return pointer on current (active) MDI child window.
1044 
1046 {
1047  if (fCurrent)
1048  return fCurrent->GetDecorFrame()->GetMdiFrame();
1049  else
1050  return 0;
1051 }
1052 
1053 ////////////////////////////////////////////////////////////////////////////////
1054 /// Get MDI geometry of MDI child window f.
1055 
1057 {
1058  TGMdiGeometry geom;
1059 
1060  geom.fValueMask = 0;
1061 
1062  const TGMdiDecorFrame *frame = GetDecorFrame(f);
1063  if (frame) {
1064  Int_t th = frame->GetTitleBar()->GetDefaultHeight();
1065  Int_t bw = frame->GetBorderWidth();
1066 
1067  if (frame->IsMinimized() || frame->IsMaximized()) {
1068  geom.fDecoration = TGRectangle(frame->GetPreResizeX(),
1069  frame->GetPreResizeY(),
1070  (unsigned) frame->GetPreResizeWidth(),
1071  (unsigned) frame->GetPreResizeHeight());
1072  } else {
1073  geom.fDecoration = TGRectangle(frame->GetX(),
1074  frame->GetY(),
1075  (unsigned) frame->GetWidth(),
1076  (unsigned) frame->GetHeight());
1077  }
1078  geom.fValueMask |= kMdiDecorGeometry;
1079 
1080  geom.fClient = TGRectangle(geom.fDecoration.fX + bw,
1081  geom.fDecoration.fY + bw + th,
1082  (unsigned) (geom.fDecoration.fW - 2 * bw),
1083  (unsigned) (geom.fDecoration.fH - 2 * bw - th));
1085 
1086  if (frame->GetMinUserPlacement()) {
1087  Int_t mh = th + 2 * bw;
1088  Int_t mw = kMinimizedWidth * mh;
1089 
1090  geom.fIcon = TGRectangle(frame->GetMinimizedX(),
1091  frame->GetMinimizedY(),
1092  (unsigned) mw,
1093  (unsigned) mh);
1094  geom.fValueMask |= kMdiIconGeometry;
1095  }
1096 
1097  }
1098 
1099  return geom;
1100 }
1101 
1102 ////////////////////////////////////////////////////////////////////////////////
1103 /// Set MDI geometry for MDI child window f.
1104 
1106 {
1107  TGMdiDecorFrame *frame = GetDecorFrame(f);
1108  if (frame) {
1109  if (geom.fValueMask & kMdiDecorGeometry) {
1110  if (frame->IsMinimized() || frame->IsMaximized()) {
1111  frame->SetPreResizeX(geom.fDecoration.fX);
1112  frame->SetPreResizeY(geom.fDecoration.fY);
1113  frame->SetPreResizeWidth(geom.fDecoration.fW);
1114  frame->SetPreResizeHeight(geom.fDecoration.fH);
1115  } else {
1116  frame->MoveResize(geom.fDecoration.fX, geom.fDecoration.fY,
1117  geom.fDecoration.fW, geom.fDecoration.fH);
1118  }
1119  } else if (geom.fValueMask & kMdiClientGeometry) {
1120 
1121  }
1122  if (geom.fValueMask & kMdiIconGeometry) {
1123  frame->SetMinimizedX(geom.fIcon.fX);
1124  frame->SetMinimizedY(geom.fIcon.fY);
1125  frame->SetMinUserPlacement();
1126  if (frame->IsMinimized())
1127  frame->Move(frame->GetMinimizedX(), frame->GetMinimizedY());
1128  }
1129  Layout();
1130  }
1131 }
1132 
1133 ////////////////////////////////////////////////////////////////////////////////
1134 /// Close all MDI child windows.
1135 
1137 {
1138  TGMdiFrameList *tmp, *travel = fChildren;
1139 
1140  while (travel) {
1141  tmp = travel->GetNext();
1142  SetCurrent(travel);
1143  Close(GetCurrent());
1144  travel = tmp;
1145  }
1146 }
1147 
1148 ////////////////////////////////////////////////////////////////////////////////
1149 /// Check if MDI child window f is maximized;
1150 
1152 {
1153  TGMdiDecorFrame *frame = GetDecorFrame(f);
1154  if (frame) return frame->IsMaximized();
1155  return kFALSE;
1156 }
1157 
1158 ////////////////////////////////////////////////////////////////////////////////
1159 /// Check if MDI child window f is minimized;
1160 
1162 {
1163  TGMdiDecorFrame *frame = GetDecorFrame(f);
1164  if (frame) return frame->IsMinimized();
1165  return kFALSE;
1166 }
1167 
1168 ////////////////////////////////////////////////////////////////////////////////
1169 /// TGMdiContainer constructor.
1170 
1172  UInt_t options, ULong_t back) :
1173  TGFrame(p->GetViewPort(), w, h, options, back)
1174 {
1175  fMain = p;
1177 }
1178 
1179 ////////////////////////////////////////////////////////////////////////////////
1180 /// Return dimension of MDI container.
1181 
1183 {
1184  TGRectangle rect = fMain->GetBBox();
1185 
1186  Int_t xpos = -fMain->GetViewPort()->GetHPos() - rect.LeftTop().fX;
1187  Int_t ypos = -fMain->GetViewPort()->GetVPos() - rect.LeftTop().fY;
1188 
1189  return TGDimension(TMath::Max(Int_t(xpos + fWidth), rect.RightBottom().fX + 1),
1190  TMath::Max(Int_t(ypos + fHeight), rect.RightBottom().fY + 1));
1191 }
1192 
1193 ////////////////////////////////////////////////////////////////////////////////
1194 /// Handle configure notify events for MDI container.
1195 
1197 {
1198  if (event->fWindow != fId) {
1199  TGRectangle rect = fMain->GetBBox();
1200 
1201  Int_t vw = fMain->GetViewPort()->GetWidth();
1202  Int_t vh = fMain->GetViewPort()->GetHeight();
1203 
1204  Int_t w = TMath::Max(vw, rect.RightBottom().fX + 1);
1205  Int_t h = TMath::Max(vh, rect.RightBottom().fY + 1);
1206 
1207  if ((w != (Int_t)fWidth) || (h != (Int_t)fHeight)) {
1208  ((TGMdiMainFrame*)fMain)->Layout();
1209  return kTRUE;
1210  }
1211  }
1212  return kFALSE;
1213 }
1214 
1215 ////////////////////////////////////////////////////////////////////////////////
1216 /// Save a MDI main frame as a C++ statement(s) on output stream out
1217 
1218 void TGMdiMainFrame::SavePrimitive(std::ostream &out, Option_t *option /*= ""*/)
1219 {
1220  if (fBackground != GetDefaultFrameBackground()) SaveUserColor(out, option);
1221 
1222  out << std::endl << " // MDI main frame" << std::endl;
1223  out << " TGMdiMainFrame *";
1224  out << GetName() << " = new TGMdiMainFrame(" << fParent->GetName()
1225  << "," << GetMenu()->GetName() << "," << GetWidth() << "," << GetHeight();
1226 
1228  if (!GetOptions()) {
1229  out << ");" << std::endl;
1230  } else {
1231  out << "," << GetOptionString() <<");" << std::endl;
1232  }
1233  } else {
1234  out << "," << GetOptionString() << ",ucolor);" << std::endl;
1235  }
1236  if (option && strstr(option, "keep_names"))
1237  out << " " << GetName() << "->SetName(\"" << GetName() << "\");" << std::endl;
1238 
1239  TGMdiFrameList *travel=fChildren;
1240  travel->SetCycleNext(travel);
1241  for (travel = fChildren; travel; travel = travel->GetNext()) {
1242  TGMdiFrame *mf = travel->GetDecorFrame()->GetMdiFrame();
1243  if (mf) mf->SavePrimitive(out, option);
1244  }
1245  if (fArrangementMode) {
1246  out << " " << GetName() << "->ArrangeFrames(";
1247  switch (fArrangementMode) {
1248 
1249  case kMdiTileHorizontal:
1250  out << "kMdiTileHorizontal);" << std::endl;
1251  break;
1252 
1253  case kMdiTileVertical:
1254  out << "kMdiTileVertical);" << std::endl;
1255  break;
1256 
1257  case kMdiCascade:
1258  out << "kMdiCascade);" << std::endl;
1259  break;
1260  }
1261  }
1262  if (fResizeMode != kMdiOpaque)
1263  out << " " << GetName() << "->SetResizeMode(kMdiNonOpaque);" << std::endl;
1264 
1265  if (fCurrent)
1266  out << " " << GetName() << "->SetCurrent(" << GetCurrent()->GetName()
1267  << ");" << std::endl;
1268 }
1269 
1270 
void SetMinUserPlacement(Bool_t place=kTRUE)
virtual void HideFrame(TGFrame *f)
Hide sub frame.
Definition: TGFrame.cxx:1172
virtual Bool_t HandleButton(Event_t *event)
Handle button events in resizer (grab button and resize).
const TGWindow * fParent
Definition: TGWindow.h:43
object has not been deleted
Definition: TObject.h:69
void SetPreResizeHeight(Int_t h)
double dist(Rotation3D const &r1, Rotation3D const &r2)
Definition: 3DDistances.cxx:48
TGMdiCornerWinResizer * GetLowerLeftCR() const
virtual void CloseAll()
Close all MDI child windows.
void Maximize(Bool_t max=kTRUE)
Int_t GetBorderWidth() const
Definition: TGFrame.h:296
TGPopupMenu * fWinListMenu
Int_t GetPreResizeY() const
virtual void FreeSize(TGMdiFrame *frame)
Allow to resize MDI child window mdiframe.
virtual UInt_t GetOptions() const
Definition: TGFrame.h:260
Int_t fY
Definition: TGDimension.h:53
Int_t fBorderWidth
Definition: TGFrame.h:156
void SetDecorFrame(TGMdiDecorFrame *decor)
virtual Int_t Close(TGMdiFrame *frame)
Close MDI child window mdiframe.
void AddInput(UInt_t emask)
Add events specified in the emask to the events the frame should handle.
Definition: TGFrame.cxx:321
void SetMdiButtons(ULong_t buttons)
Set-up MDI buttons.
const char Option_t
Definition: RtypesCore.h:62
const Mask_t kKeyShiftMask
Definition: GuiTypes.h:196
void Merge(const TGRectangle &r)
Definition: TGDimension.cxx:42
virtual Int_t ContextHelp(TGMdiFrame *frame)
Calls Help() method of MDI child window mdiframe.
void SetDecorBorderWidth(Int_t bw)
Set border width of the decor.
TGRectangle fIcon
virtual void Minimize(TGMdiFrame *frame)
Minimize MDI child window mdiframe.
Int_t GetY() const
Definition: TGFrame.h:295
Pixel_t GetFrameBgndColor() const
virtual void Maximize(TGMdiFrame *frame)
Maximize MDI child window mdiframe.
void SetForeground(Pixel_t v)
Set foreground color.
Definition: TGGC.cxx:276
Bool_t TestBit(UInt_t f) const
Definition: TObject.h:157
void SetLeftButPressed(Bool_t press=kTRUE)
UInt_t GetHeight() const
Definition: TGFrame.h:288
virtual void FrameCreated(Int_t id)
Pixel_t fBackCurrent
TH1 * h
Definition: legend2.C:5
virtual void SetVPos(Int_t ypos)
Moves content of container frame in vertical direction.
Definition: TGCanvas.cxx:224
void AddMdiFrame(TGMdiFrame *f)
Add new MDI child window.
virtual void DisableEntry(Int_t id)
Disable entry (disabled entries appear in a sunken relieve).
Definition: TGMenu.cxx:1714
TGRectangle GetMinimizedBBox() const
Return minimized box (rectangle) for current MDI child.
Handle_t Cursor_t
Definition: GuiTypes.h:35
virtual Bool_t HandleConfigureNotify(Event_t *event)
Handle configure notify events for MDI container.
virtual void SetContainer(TGFrame *f)
Definition: TGCanvas.h:234
Bool_t RemoveMdiFrame(TGMdiFrame *f)
Remove MDI child window.
virtual void FrameRestored(Int_t id)
void AddFrames(TGMdiTitleIcon *icon, TGMdiButtons *buttons)
This is called from TGMdiMainFrame on Maximize().
Definition: TGMdiMenu.cxx:94
TGRectangle fClient
TGPosition LeftTop() const
Definition: TGDimension.h:144
Basic string class.
Definition: TString.h:137
Pixel_t fBackground
Definition: TGFrame.h:158
#define gClient
Definition: TGClient.h:174
virtual Int_t CloseWindow()
Int_t GetMinimizedX() const
virtual void FrameClosed(Int_t id)
virtual void ShowFrame(TGFrame *f)
Show sub frame.
Definition: TGFrame.cxx:1186
int Int_t
Definition: RtypesCore.h:41
bool Bool_t
Definition: RtypesCore.h:59
Int_t MK_MSG(EWidgetMessageTypes msg, EWidgetMessageTypes submsg)
virtual UInt_t GetDefaultHeight() const
Definition: TGFrame.h:389
const Bool_t kFALSE
Definition: Rtypes.h:92
virtual void AddEntry(TGHotString *s, Int_t id, void *ud=0, const TGPicture *p=0, TGMenuEntry *before=0)
Add a menu entry.
Definition: TGMenu.cxx:987
void SetTitleBarColors(UInt_t fore, UInt_t back, TGFont *f)
Set title bar color (blue or grey, depends on active state).
void SetX0(Int_t x0)
void SetCycleNext(TGMdiFrameList *next)
UInt_t GetWidth() const
Definition: TGFrame.h:287
TGMdiDecorFrame * fDecor
Window_t fWindow
Definition: GuiTypes.h:177
virtual void ArrangeMinimized()
This is an attempt to an "smart" minimized window re-arrangement.
Handle_t GetId() const
Definition: TGObject.h:52
virtual void Layout()
Layout the elements of the composite frame.
Definition: TGFrame.cxx:1239
Int_t GetVPos() const
Definition: TGCanvas.h:197
virtual void RemoveFrame(TGFrame *f)
Remove frame from composite frame.
Definition: TGFrame.cxx:1131
void Minimize(Bool_t min=kTRUE)
const Mask_t kPointerMotionMask
Definition: GuiTypes.h:164
Bool_t IsMaximized(TGMdiFrame *f)
Check if MDI child window f is maximized;.
const TGMdiMainFrame * fMain
virtual void Restore(TGMdiFrame *frame)
Restore size of MDI child window mdiframe.
void SetMinimizedY(Int_t y)
virtual Int_t MustCleanup() const
Definition: TGWindow.h:122
virtual void LowerWindow()
Definition: TGWindow.h:97
Double_t x[n]
Definition: legend1.C:17
Pixel_t fBackNotCurrent
virtual ~TGMdiMainFrame()
MDI main frame destructor.
TGMdiGeometry GetWindowGeometry(TGMdiFrame *f) const
Get MDI geometry of MDI child window f.
static TString Format(const char *fmt,...)
Static method which formats a string using a printf style format descriptor and return a TString...
Definition: TString.cxx:2335
ULong_t Pixel_t
Definition: GuiTypes.h:41
static Pixel_t GetDefaultFrameBackground()
Get default frame background.
Definition: TGFrame.cxx:665
virtual TGDimension GetDefaultSize() const
Return dimension of MDI container.
TGMdiMenuBar * fMenuBar
virtual void Move(Int_t x, Int_t y)
Move the MDI window at position x, y.
Int_t GetMinimizedY() const
Bool_t IsMinimized() const
Pixel_t GetSelectedFgndColor() const
void UpdateWinListMenu()
Update MDI menu entries with current list of MDI child windows.
void SetPreResizeX(Int_t x)
void SetNext(TGMdiFrameList *next)
virtual Bool_t Help()
Definition: TGMdiFrame.h:74
virtual Bool_t ProcessMessage(Long_t msg, Long_t parm1, Long_t parm2)
Process messages MDI main frame.
virtual void SendMessage(const TGWindow *w, Long_t msg, Long_t parm1, Long_t parm2)
Send message (i.e.
Definition: TGFrame.cxx:627
virtual const TGWindow * GetMainFrame() const
Returns top level main frame.
Definition: TGWindow.cxx:133
virtual void SavePrimitive(std::ostream &out, Option_t *option="")
Save a MDIframe as a C++ statement(s) on output stream out.
Definition: TGMdiFrame.cxx:190
TGMdiDecorFrame * GetDecorFrame(UInt_t id) const
Return decor frame of MDI child window (by id).
virtual void SetBackgroundColor(Pixel_t back)
Set background color (override from TGWindow base class).
Definition: TGFrame.cxx:294
void SetY0(Int_t y0)
virtual void FreeMove(TGMdiFrame *frame)
Allow to move MDI child window mdiframe.
void SetFrameId(UInt_t id)
XFontStruct * id
Definition: TGX11.cxx:108
TGMdiVerticalWinResizer * GetUpperHR() const
TGMdiContainer(const TGMdiMainFrame *p, Int_t w, Int_t h, UInt_t options=0, ULong_t back=GetDefaultFrameBackground())
TGMdiContainer constructor.
TGViewPort * GetViewPort() const
Definition: TGCanvas.h:229
void UpdateMdiButtons()
Update the status of MDI buttons in the decor frame of all children.
Bool_t IsMinimized(TGMdiFrame *f)
Check if MDI child window f is minimized;.
TGMdiFrameList * fCurrent
void Emit(const char *signal)
Acitvate signal without args.
Definition: TQObject.cxx:561
virtual Bool_t HandleKey(Event_t *event)
Handle keyboards events into MDI main frame.
virtual void FrameMinimized(Int_t id)
TGMdiHorizontalWinResizer * GetRightVR() const
Int_t GetHPos() const
Definition: TGCanvas.h:196
ULong_t GetMdiButtons() const
virtual void FrameMaximized(Int_t id)
Int_t GetPreResizeX() const
TGMdiVerticalWinResizer * GetLowerHR() const
Int_t GetPreResizeHeight() const
virtual void MoveResize(Int_t x, Int_t y, UInt_t w, UInt_t h)
Move the MDI window at position x, y and set size to w, h.
Pixel_t fForeNotCurrent
void SetPreResizeY(Int_t y)
virtual void CirculateUp()
Bring the lowest window to the top.
Int_t GetX() const
Definition: TGFrame.h:294
TGMdiFrameList * fChildren
Pixel_t GetFrameShadowColor() const
void FreeFont(const TGFont *font)
Free a font.
Definition: TGClient.cxx:362
Long_t fNumberOfFrames
Pixel_t GetSelectedBgndColor() const
TGMdiFrameList * GetCycleNext() const
TGMdiFrame * GetCurrent() const
Return pointer on current (active) MDI child window.
Bool_t SetCurrent(TGMdiFrameList *newcurrent)
Set current (active) MDI child window (by frame list).
void RemoveFrames(TGMdiTitleIcon *icon, TGMdiButtons *buttons)
This is called from TGMdiMainFrame on Maximize().
EGEventType fType
Definition: GuiTypes.h:176
void SetPrev(TGMdiFrameList *prev)
Int_t GET_SUBMSG(Long_t val)
const TGFont * GetMenuFont() const
virtual Bool_t InheritsFrom(const char *classname) const
Returns kTRUE if object inherits from class "classname".
Definition: TObject.cxx:488
virtual const char * GetName() const
Return unique name, used in SavePrimitive methods.
Definition: TGWindow.cxx:221
TGMdiTitleIcon * GetWinIcon() const
unsigned int UInt_t
Definition: RtypesCore.h:42
const Handle_t kNone
Definition: GuiTypes.h:89
TGRectangle fDecoration
TGMdiCornerWinResizer * GetLowerRightCR() const
TGMdiHorizontalWinResizer * GetLeftVR() const
TGMdiFrameList * GetNext() const
virtual Bool_t ProcessMessage(Long_t msg, Long_t parm1, Long_t parm2)
Handle message generated by the canvas scrollbars.
Definition: TGCanvas.cxx:2341
Int_t fX
Definition: TGDimension.h:52
TGMdiFrameList * GetCyclePrev() const
virtual void Layout()
Recalculates the postion and the size of all MDI child windows.
const TGPicture * GetWindowIcon()
void ConfigureWindow(TGMdiFrame *f, TGMdiGeometry &geom)
Set MDI geometry for MDI child window f.
virtual void SavePrimitive(std::ostream &out, Option_t *option="")
Save a MDI main frame as a C++ statement(s) on output stream out.
virtual void RCheckEntry(Int_t id, Int_t IDfirst, Int_t IDlast)
Radio-select entry (note that they cannot be unselected, the selection must be moved to another entry...
Definition: TGMenu.cxx:1850
Bool_t IsMaximized() const
TGRectangle GetBBox() const
Return resizing box (rectangle) for current MDI child.
#define gVirtualX
Definition: TVirtualX.h:362
UInt_t fWidth
Definition: TGFrame.h:150
Int_t GET_MSG(Long_t val)
EKeySym
Definition: KeySymbols.h:27
virtual void CirculateDown()
Send the highest window to the bottom.
long Long_t
Definition: RtypesCore.h:50
#define ClassImp(name)
Definition: Rtypes.h:279
double f(double x)
const Mask_t kStructureNotifyMask
Definition: GuiTypes.h:167
virtual Bool_t IsEditable() const
Return kTRUE if frame is being edited.
Definition: TGFrame.cxx:909
Int_t GetPreResizeWidth() const
const Mask_t kButtonReleaseMask
Definition: GuiTypes.h:163
virtual void RaiseWindow()
Definition: TGWindow.h:96
TGMdiCornerWinResizer * GetUpperRightCR() const
const char * GetWindowName()
Definition: TGFont.h:155
unsigned long ULong_t
Definition: RtypesCore.h:51
Double_t y[n]
Definition: legend1.C:17
you should not use this method at all Int_t Int_t Double_t Double_t Double_t e
Definition: TRolke.cxx:630
void ShowFrames(TGMdiTitleIcon *icon, TGMdiButtons *buttons)
This is called from TGMdiMainFrame on Maximize().
Definition: TGMdiMenu.cxx:134
TGPosition RightBottom() const
Definition: TGDimension.h:146
UInt_t fHeight
Definition: TGFrame.h:151
void SetMinimizedX(Int_t x)
void SetResizeMode(Int_t mode=kMdiDefaultResizeMode)
Set MDI windows resize mode (opaque or transparent).
virtual void MapSubwindows()
Map all sub windows that are part of the composite frame.
Definition: TGFrame.cxx:1146
TGMdiTitleBar * GetTitleBar() const
Handle_t fId
Definition: TGObject.h:40
const Int_t kMaxInt
Definition: Rtypes.h:103
TGFont * fFontCurrent
virtual void RemoveBind(const TGWindow *w, Int_t keycode, Int_t modifier) const
Remove key binding.
Definition: TGFrame.cxx:1618
void LayoutButtons(UInt_t buttonmask, Bool_t isMinimized, Bool_t isMaximized)
Recalculates the position of every enabled (displayed) buttons.
Handle_t Window_t
Definition: GuiTypes.h:30
virtual void UnmapWindow()
Definition: TGFrame.h:269
virtual void Layout()
Create layout for canvas.
Definition: TGCanvas.cxx:2226
virtual void SetHPos(Int_t xpos)
Moves content of container frame in horizontal direction.
Definition: TGCanvas.cxx:173
RooCmdArg Layout(Double_t xmin, Double_t xmax=0.99, Double_t ymin=0.95)
void RemoveFrames(TGMdiTitleIcon *icon, TGMdiButtons *buttons)
This is called from TGMdiMainFrame on Restore()
Definition: TGMdiMenu.cxx:116
TGClient * fClient
Definition: TGObject.h:41
Short_t Max(Short_t a, Short_t b)
Definition: TMathBase.h:202
void SetPreResizeWidth(Int_t w)
TGMdiFrame * GetMdiFrame(UInt_t id) const
Return frame of MDI child window (by id).
const TGWindow * GetDefaultRoot() const
Returns the root (i.e.
Definition: TGClient.cxx:232
TGMdiDecorFrame * GetDecorFrame() const
UInt_t fState
Definition: GuiTypes.h:182
TGFont * fFontNotCurrent
virtual void DeleteEntry(Int_t id)
Delete entry with specified id from menu.
Definition: TGMenu.cxx:1916
void SaveUserColor(std::ostream &out, Option_t *)
Save a user color in a C++ macro file - used in SavePrimitive().
Definition: TGFrame.cxx:2433
virtual void Layout()
Recalculates the postion and the size of all decor frame components.
void AddFrames(TGMdiTitleIcon *icon, TGMdiButtons *buttons)
This is called from TGMdiMainFrame on Restore().
TString GetOptionString() const
Returns a frame option string - used in SavePrimitive().
Definition: TGFrame.cxx:2460
UInt_t GetFrameId() const
TGMdiFrameList * GetPrev() const
const Mask_t kKeyControlMask
Definition: GuiTypes.h:198
Definition: first.py:1
void SetCyclePrev(TGMdiFrameList *prev)
Pixel_t fForeCurrent
TGMdiCornerWinResizer * GetUpperLeftCR() const
virtual void SetEditable(Bool_t on=kTRUE)
Switch ON/OFF edit mode.
Definition: TGFrame.cxx:930
const Bool_t kTRUE
Definition: Rtypes.h:91
Bool_t GetMinUserPlacement() const
const TList * GetListOfEntries() const
Definition: TGMenu.h:221
Definition: TGGC.h:35
void SetResizeMode(Int_t mode=kMdiDefaultResizeMode)
Set resize mode (opaque or transparent)
virtual void FramesArranged(Int_t mode)
int main(int argc, char **argv)
TGMdiButtons * GetButtons() const
TGMdiFrame * GetMdiFrame() const
virtual void ArrangeFrames(Int_t mode)
Automatic repositionning and resizing of every MDI child window.
const char * Data() const
Definition: TString.h:349