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

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

Parent Directory Parent Directory


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

Revision 48992 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Mar 28 15:26:26 2013 UTC (21 months, 3 weeks ago) by rdm
File length: 10016 byte(s)
Diff to previous 44507
From Lifeng Sun:
The attached patchset fixes a bunch of typo in the source:
0001-succes-success.patch
0002-preceed-preced.patch
0003-informations-information.patch
0004-childs-children.patch
0005-avaliable-available.patch
0006-writeable-writable.patch
0007-comand-command.patch
0008-unkown-unknown.patch
0009-wierd-weird.patch
0010-wheter-whether.patch
0011-unecessary-unnecessary.patch
0012-splitted-split.patch
0013-registerd-registered.patch
0014-recieve-receive.patch
0015-processsing-processing.patch
0016-ouput-output.patch
0017-mutiple-multiple.patch
0018-lenght-length.patch
0019-interupted-interrupted.patch
0020-independant-independent.patch
0021-inconsistant-inconsistent.patch
0022-expresion-expression.patch
0023-explicitely-explicitly.patch
0024-enviroment-environment.patch
0025-deafult-default.patch
0026-continous-continuous.patch
0027-completly-completely.patch
0028-commited-committed.patch
0029-choosen-chosen.patch
0030-backgroud-background.patch
0031-auxilliary-auxiliary.patch
0032-authentification-authentication.patch
0033-appropiate-appropriate.patch
0034-an-other-another.patch
0035-environement-environment.patch
0036-targetting-targeting.patch
0037-suppported-supported.patch
0038-paramater-parameter.patch

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: 10008 byte(s)
Diff to previous 40531
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 40531 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Aug 10 13:56:13 2011 UTC (3 years, 5 months ago) by bellenot
File length: 10003 byte(s)
Diff to previous 23115
Add a method to update the MDI buttons of each MDI child when the mainframe is mapped on screen (only once)

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: 9963 byte(s)
Copied from: trunk/gui/inc/TGMdiMainFrame.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/TGMdiMainFrame.h
File length: 9963 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/TGMdiMainFrame.h
File length: 9963 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/TGMdiMainFrame.h
File length: 10016 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/TGMdiMainFrame.h
File length: 10026 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/TGMdiMainFrame.h
File length: 10023 byte(s)
Diff to previous 12247
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 12247 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue Jul 5 12:36:07 2005 UTC (9 years, 6 months ago) by brun
Original Path: trunk/gui/inc/TGMdiMainFrame.h
File length: 9008 byte(s)
Diff to previous 11523
From valeriy Onuchin:
- new class TImagePlugin is introduced;
 To add possibility to read/write new image format one needs to create
 a derived class and to override two methods:
   virtual unsigned char *ReadFile(const char *filename, UInt_t &w,UInt_t &h)
   virtual Bool_t WriteFile(const char *filename, unsigned char *argb,
                             UInt_t w, UInt_t  h)
   ... and to specify it in the root resource file:

Plugin.TImagePlugin:  ps    TASPluginGS   ASPluginGS   "TASPluginGS(const char*)"
the name of plugin    file extension      DLL containing an implementation of
TImagePlugin subclass

- new class TASImagePlugin that is a subclass of TImagePlugin with ASImage
specific implementations;

- new class TASPluginGS - an image plugin class that allows to create images from
PS/EPS/PDF files and to display them in TCanvas/TPad. In addition, it allows to
browse PS/EPS/PDF files with the ROOT browser.

New files:
asimage/inc/LinkDefGS.h
asimage/inc/TASImagePlugin.h
asimage/inc/TASPluginGS.h
asimage/src/TASPluginGS.cxx

graf/inc/TImagePlugin.h

icons/pdf.xpm
icons/tb_find.xpm

libAfterImage.tar.gz

- TROOT.h
    o new data member fClipboard and corresponding getter GetClipboard();
      TSeqCollection  *fClipboard;           //List of clipboard objects;

- TGFrame
    o embedded frames resized correctly now.

- TGCanvas
    o several useful methods made public

- TGListBox, TGComboBox
    o new method FindEntry(const char *s) added which returns entry by name

- TGMdiMainFrame, TGMdiDecorFrame
    o fix bug which changed text color globally
    o add displaying scroll bars when mdi frame is moved out of mdi
      canvas viewport

- TGTextEdit/TGView, guitest
   o added processing of:
     2-clicks - selects a word
     3-clicks - selects a line
     4-clicks - selects the whole text
   o change  the key handling
     Ctrl-F - invokes Search dialog
     Ctrl-L - invokes Goto line dialog
     Correspondent changes  added to guitest.C and guitest.cxx (TextEdit test)
   o readonly mode added

- TGSearchDialog
   o Text entry was replaced by "text entry" combobox. It allows to
     "remember" a history of entered search strings.
   o new static method TGSearchDialog *&gDialog() introduced. It returns
     a global search dialog.
   o Search method - display warning message box when object is not found

- TRootBrowser, mime.types
   o  possibility to browse PS/EPS/PDF fies added
   o possibility to browse text files added. The content of text file
     appears in "icon box" window (a la netscape)
   o "Search" tool bar button added. It activates the "search dialog" for
     searching a specified icon or text when a text file is browsed.

- TGuiBldEditor.
  o fix bug which changed text color globally

Revision 11523 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Apr 7 14:43:35 2005 UTC (9 years, 9 months ago) by rdm
Original Path: trunk/gui/inc/TGMdiMainFrame.h
File length: 8945 byte(s)
Diff to previous 10743
Fix many warnings generated by the latest gcc 4.0 about classes with
virtual functions (all classes having a ClassDef) that did not have a
virtual dtor.

Revision 10743 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Dec 9 22:55:06 2004 UTC (10 years, 1 month ago) by brun
Original Path: trunk/gui/inc/TGMdiMainFrame.h
File length: 8913 byte(s)
Diff to previous 10414
From Valeriy Onuchin:
- TRootGuiBuilder,TGuiBldDragManager - more mods to make GuiBuilder
  re-entrant.
  That allows to create, close ROOT GuiBuilder during single ROOT session.
- TGMdiMainFrame - made methods virtual.
  CloseAll method added , which allows to close all opened mdi frames.
- TGMdiDecorFrame - mods for hierarchical cleaning.

Revision 10414 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue Oct 26 09:39:23 2004 UTC (10 years, 3 months ago) by rdm
Original Path: trunk/gui/inc/TGMdiMainFrame.h
File length: 8880 byte(s)
Diff to previous 9972
From Valeriy:
- Disable editting  GuiBuilder popup menus. That fixes undesirable effect
  discribed by Ilka "2-click on the main frame-->Window menu/Cascade-->click
  on the main frame title Properties tab shows the popup menu frame21
  as selected one".
- Fix handling  hot keys in GuiBuilder menu bar, menus, e.g. Alt-F, Alt-W.
- TGMdiMainFrame::SetCurrent(TGMdiFrame*) signal added, which
  emittied when mdi frame is chosen/map_raised by mouse clicking on mdi title.
  That allows  to fix an effect discribed by Ilka
   "Click on a main frame title bar does not make this frame selected".
- Fix "Ctrl-O" handling in GuiBuilder. Previously it had "Save As" dialog
  title instead of "Open ..".
- Forbid Ctrl-S handling if there is no active mdi frame. That fixes an
  segv. violation discribed by Ilka when one wants to "SaveAs" GuiBuilder
  itself.
- Fix name clashes when TRootEmbeddedCanvas saved. It was discovered
  when Cut&Paste embedded canvases during gui building.

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/TGMdiMainFrame.h
File length: 8868 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/TGMdiMainFrame.h
File length: 8758 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/TGMdiMainFrame.h
File length: 9014 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/TGMdiMainFrame.h
File length: 9008 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