[root] / trunk / gui / gui / inc / TGMdiFrame.h Repository:
ViewVC logotype

Log of /trunk/gui/gui/inc/TGMdiFrame.h

Parent Directory Parent Directory


Links to HEAD: (view) (download) (as text) (annotate)
Sticky Revision:

Revision 44507 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Jun 4 12:30:41 2012 UTC (2 years, 7 months ago) by axel
File length: 3447 byte(s)
Diff to previous 23115
Remove
  using namespace std;
from Riostream.h, which has huge consequences for all of ROOT.
Riostream.h is now a simple wrapper for fstream, iostream, iomanip for backward compatibility; Riosfwd.h simply wraps iosfwd.

Because of templates and their inline functions, Riostream.h needed to be included in headers, too (e.g. TParameter.h), which violated the assumption that Riostream.h is not exposing its using namespace std to headers.
ROOT now requires R__ANSISTREAM, R__SSTREAM, which does not change the set of supported compilers.

Without "using namespace std", several identifiers are now prefixed by std::; e.g. roofit/* source files now have a using namespace std to keep their coding style.
TFile::MakeProject() now generates "using namespace std" to convert the CINT-style class names into C++ ones.

Revision 23115 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Apr 10 13:35:37 2008 UTC (6 years, 9 months ago) by rdm
File length: 3442 byte(s)
Copied from: trunk/gui/inc/TGMdiFrame.h revision 23114
Diff to previous 20882
moved to directory "gui" the following directories:

fitpanel, ged, gui, guibuilder, guihtml, qtgsi, qtroot, sessionviewer

Revision 20882 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Nov 19 11:31:26 2007 UTC (7 years, 2 months ago) by rdm
Original Path: trunk/gui/inc/TGMdiFrame.h
File length: 3442 byte(s)
Diff to previous 19826
Set property svn:eol-style LF on all source and Makefiles. This should avoid
problems with Win32 line endings ending up in the repository. All MS tools
support LF eols fine.

Revision 19826 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Sep 19 19:56:11 2007 UTC (7 years, 4 months ago) by rdm
Original Path: trunk/gui/inc/TGMdiFrame.h
File length: 3442 byte(s)
Diff to previous 19825
imported svn:keywords Id property

Revision 19825 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Sep 19 19:49:10 2007 UTC (7 years, 4 months ago) by rdm
Original Path: trunk/gui/inc/TGMdiFrame.h
File length: 3491 byte(s)
Diff to previous 15672
remove :$ from tag line

Revision 15672 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Jul 3 16:10:46 2006 UTC (8 years, 6 months ago) by brun
Original Path: trunk/gui/inc/TGMdiFrame.h
File length: 3501 byte(s)
Diff to previous 13292
from Axel:
Change the signature of SavePrimitive from

  void SavePrimitive(ofstream &out, Option_t *option);
to
  void SavePrimitive(ostream &out, Option_t *option = "");

With this change one can do, eg
   myhist.SavePrimitive(std::cout);

WARNING: do rm -f tree/src/*.o

Revision 13292 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Nov 21 00:25:38 2005 UTC (9 years, 2 months ago) by rdm
Original Path: trunk/gui/inc/TGMdiFrame.h
File length: 3497 byte(s)
Diff to previous 10402
From Bertrand:
- added comments in TGMdi classes.
- added comments in TGColorSelect and TGColorDialog classes.
- added comments in TGFontDialog classes.
- changes in all these classes to make rulechecker happy.
- added a new member / option in TGListTree allowing to disable
  item opening on doubleclick.

Revision 10402 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Oct 25 12:06:50 2004 UTC (10 years, 3 months ago) by rdm
Original Path: trunk/gui/inc/TGMdiFrame.h
File length: 3391 byte(s)
Diff to previous 9972
From Valeriy:
- TGFrame::MustCleanup now returns Int_t value (was Bool_t).
  Backward compatible.
- Int_t TGWindow::MustCleanup method added.
- TGTextButton dtor. Checking added. If kDeepCleanup is on call
  of GetMainFrame() gave segv.
- in TGMainFrame handing Ctrl-S it was not possible to save macro
  in other directory than the current.
- The same fix as above for ROOT GuiBuilder. Thanks to
  Christian Stratova for reporting it.
- TGMdiDecorFrame now using hierarchical cleaning. That fixes
  many memory leaks and improves robustness of GuiBuilder.
- TRootCanvas/TRootEmbeddedCanvas - disable swithching to
  editable mode (canvas became black after that) for container frame.
- Gui Builder highlights any plain composite frame under pointer.
  Protection added that highlighted frame exists and is a ROOT frame.
- improvements in TGuiBldQuickHandler. Sometimes it gave segv.

Revision 9972 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Fri Sep 10 14:00:40 2004 UTC (10 years, 4 months ago) by brun
Original Path: trunk/gui/inc/TGMdiFrame.h
File length: 3395 byte(s)
Diff to previous 9954
From Ilka:
Implementation of SavePrimitive for all MDI classes.

In addition:
- setting of new x,y coordinates in TGMdiFrame::Move method;
- fMdiHints was not initialized in the TGMdiFrame ctor
- new data member TGMdiMainFrame::fArrangementMode for saving the
selected arrangement mode
- included a getter: GetMenuBar() in TGMdiMenuBar

Revision 9954 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Sep 8 16:03:57 2004 UTC (10 years, 4 months ago) by brun
Original Path: trunk/gui/inc/TGMdiFrame.h
File length: 3281 byte(s)
Diff to previous 9903
From Valeriy Onuchin:

- two classes introduced TVirtualDragManager, TVirtualGuiBld
- TGWindow
  o move some TGFrame methods to here
  o fEditDisabled data member and  setter/getter methods introduced
     That allows to disable switch to edit mode

- TGFrame, TGCompositeFrame
 o new data members introduced  and correspondent setter/getters
   UInt_t   fMinWidth;      // minimal frame width
   UInt_t   fMinHeight;     // minimal frame height
   UInt_t   fMaxWidth;      // maximal frame width
   UInt_t   fMaxHeight;     // maximal frame height

 Correction to layout under development.

  o fCleanup data member is renamed to  fMustCleanup (to avoid name clashes)
  o methods required for handling drag and drop as weel for guibuilding added, i.e.
   HandleDragEnter, HandleDragLeave, HandleDragMotion, HandleDragDrop etc.

Revision 9903 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Fri Sep 3 16:19:37 2004 UTC (10 years, 4 months ago) by rdm
Original Path: trunk/gui/inc/TGMdiFrame.h
File length: 3367 byte(s)
Diff to previous 9878
change color arguments from ULong_t to Pixel_t.

Revision 9878 - (view) (download) (as text) (annotate) - [select for diffs]
Added Fri Sep 3 00:25:48 2004 UTC (10 years, 4 months ago) by rdm
Original Path: trunk/gui/inc/TGMdiFrame.h
File length: 3365 byte(s)
new MDI (Multiple Document Interface) GUI classes. Ported from xclass 95
by Bertrand Bellenot and me. To see how this works and for example code
see $ROOTSYS/tutorials/mditest.C.

This form allows you to request diffs between any two revisions of this file. For each of the two "sides" of the diff, enter a numeric revision.

  Diffs between and
  Type of Diff should be a

Sort log by:

Subversion Admin
ViewVC Help
Powered by ViewVC 1.0.9