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

Log of /trunk/gui/gui/inc/TGLayout.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: 12169 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: 12124 byte(s)
Copied from: trunk/gui/inc/TGLayout.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/TGLayout.h
File length: 12124 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/TGLayout.h
File length: 12124 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/TGLayout.h
File length: 12177 byte(s)
Diff to previous 19665
remove :$ from tag line

Revision 19665 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Aug 22 08:50:02 2007 UTC (7 years, 5 months ago) by antcheva
Original Path: trunk/gui/inc/TGLayout.h
File length: 12187 byte(s)
Diff to previous 18975
From Valeriy Onuchin (tested by Bertrand):

o TGLayoutManager::IsModified method was overloaded.
  This method is used to indicate that sub frames
  changed/unchanged their positions/sizes after layout.

  For example, in some cases positions&sizes of sub frames
  can be unchanged after calling Layout method
  (e.g. for TGTileLayout manager).
  TGLayoutManager::IsModified will return kFALSE.

o  TGListBox.h,cxx, TGCanvas.h,cxx, TGListTree.h,cxx,
   TGListView.h,cxx

   - new painting technique was implemented:
     1. repaint only exposed/dirty regions.
        Previously the whole view port (or even container frame)
        was repainted.
     2. use double-buffering (using back plane pixmap) during
        repainting.
     That allows to eliminate flickering during resizing,
     scrolling, exposing/overlapping.
   - several bugs were fixed:
     o keyboard navigation in list view, list box, list tree
     o resizing columns (details view) in list view
       when  horizontal scroll bar not in zero position.
     o in list view (details view) buttons were moved when
       it was resized.
     o extra unnecessary repainting in list view, list tree
       were removed.
     o probably I missed something to mention .

o  TGScrollBar
  - bug fix: increment value was reset to 1 after button release.
  - do not redraw scroll button if it's width/height was unchanged.
    That reduces flickering

Revision 18975 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Jun 7 08:45:21 2007 UTC (7 years, 7 months ago) by antcheva
Original Path: trunk/gui/inc/TGLayout.h
File length: 11966 byte(s)
Diff to previous 16732
From Valeriy O.
New data member Bool_t fModified of TGTileLayout class.
New virtual method TGLayoutManager::IsModified() and
TGTileLayout::IsModified(). This method is used to indicate
that subframes changed their positions after layout.
For example, for TGTileLayout and derived layout managers
after calling Layout method positions of frames can be unchanged.
So, the returned value will be kFALSE.

Revision 16732 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Fri Nov 10 10:47:10 2006 UTC (8 years, 2 months ago) by antcheva
Original Path: trunk/gui/inc/TGLayout.h
File length: 11799 byte(s)
Diff to previous 15672
- make saving of  TGLayoutHits flexible (having a coma separator is optional)

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/TGLayout.h
File length: 11792 byte(s)
Diff to previous 15181
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 15181 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Fri May 26 15:13:03 2006 UTC (8 years, 8 months ago) by rdm
Original Path: trunk/gui/inc/TGLayout.h
File length: 11757 byte(s)
Diff to previous 15134
one more round of code cleanup: change NULL by 0 in all C++ code.

Revision 15134 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue May 23 04:47:42 2006 UTC (8 years, 8 months ago) by brun
Original Path: trunk/gui/inc/TGLayout.h
File length: 11761 byte(s)
Diff to previous 15047
From Federico Carminati:

"I have implemented all copy and equal operators needed to silence all
warnings in AliRoot, as requested. I have implemented shallow copies as
would do the default operators synthetized by the compiler.
Most operators are protected. If users complain, you just have to move
them into the public area, but class derivation is of course supported.
It has been a terrible job, I have modified 278 files, but the changes
are backward compabile, and this goes a long way to permitting user to
use the effc++ flag with root headers."

Revision 15047 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon May 15 11:01:14 2006 UTC (8 years, 8 months ago) by rdm
Original Path: trunk/gui/inc/TGLayout.h
File length: 11586 byte(s)
Diff to previous 15044
coding conventions (put methods after data members, after Fed's changes).

Revision 15044 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon May 15 07:43:34 2006 UTC (8 years, 8 months ago) by brun
Original Path: trunk/gui/inc/TGLayout.h
File length: 11586 byte(s)
Diff to previous 13278
From Federico:
headers modified to support the gcc option effc++

Revision 13278 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Nov 17 19:09:28 2005 UTC (9 years, 2 months ago) by rdm
Original Path: trunk/gui/inc/TGLayout.h
File length: 11126 byte(s)
Diff to previous 9935
From Ilka:
code style fixes (comments, descriptions and identation).

Revision 9935 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue Sep 7 09:31:08 2004 UTC (10 years, 4 months ago) by brun
Original Path: trunk/gui/inc/TGLayout.h
File length: 11092 byte(s)
Diff to previous 7693
From Valeriy Onuchin:
- TGLayoutHints now derived also from  TRefCnt
- pointer to frame element containing this layout_hints added
- setter methods added to TGLayoutHints (used in guibuilding)
- Print methods added to TGLayoutHints and TGFrameElement classes.
   Usefull for debugging, e.g. "compositeFrame->GetList()->Print()"

Revision 7693 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Fri Dec 5 01:17:03 2003 UTC (11 years, 1 month ago) by brun
Original Path: trunk/gui/inc/TGLayout.h
File length: 9926 byte(s)
Diff to previous 7683
From Valeriy Onouchin

- flicker-free scrolling is implemented for TGContainer class.
  Scrolling through listview looks much better now. One of the nice
  "side effects" of solving  "limited list box entries" bug.
- followups mods after solving "missing horizontal scroll bar in detailed view" bug
  TGListDetailsLayout constructor modified for SavePrimitives method.

Revision 7683 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Dec 3 00:25:19 2003 UTC (11 years, 1 month ago) by brun
Original Path: trunk/gui/inc/TGLayout.h
File length: 9878 byte(s)
Diff to previous 7520
From Valeriy Onuchin:

- SetDefaultWidth, SetDefaultHeight methods introduced to
  TGLayoutManager class. That  allows to force setting default size to
  listview container.
  Along with changes in listview related classes that fixes
   1. "missing horizontal scroll bar in detailed view" bug.
   2. "mess in the names in detailed view" bug.

Revision 7520 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Nov 5 13:08:26 2003 UTC (11 years, 2 months ago) by rdm
Original Path: trunk/gui/inc/TGLayout.h
File length: 9679 byte(s)
Diff to previous 6518
From Ilka:
Any ROOT GUI can now be saved as a macro. Executing this macro brings back
the current GUI (minus the action handling). This very important development
allows to get easily the source for any GUI, which can then be inspected or
used to create other GUI's. Also this will allow a GUI builder to save and
restore GUI's.

To save the source of a GUI use the methods TGMainFrame::SaveSource() or
TGTransientFrame::SaveSource(), where the latter saves the source for dialogs.

To trigger the saving of any GUI just use ctrl-s.

Revision 6518 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu May 1 17:26:16 2003 UTC (11 years, 8 months ago) by rdm
Original Path: trunk/gui/inc/TGLayout.h
File length: 9158 byte(s)
Diff to previous 5564
change TGLayoutHints padding values from UInt_t to Int_t. Padding values
can also be negative to fine-tune the layout.

Revision 5564 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Nov 11 16:23:16 2002 UTC (12 years, 2 months ago) by brun
Original Path: trunk/gui/inc/TGLayout.h
File length: 9162 byte(s)
Diff to previous 2107
The following patch 'upgrades' the new TClass and TGenericClassInfo code to actually follow the ROOT coding
conventions.

This patch also enables a rootcint error (prevents the creation of the dictionary) in the case where the class
derives (directly or indirectly) from TObject and do not have its own ClassDef.

3 helper class in ROOT failed the test: TGFrameElement, TAssoc and TGMenuEntry.

Philippe.

Revision 2107 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed May 2 00:52:08 2001 UTC (13 years, 8 months ago) by rdm
Original Path: trunk/gui/inc/TGLayout.h
File length: 9129 byte(s)
Diff to previous 798
new GUI TGTableLayout manager by Brett Viren.
The TGTableLayout manager places child frames in a table. It uses
TGTableLayoutHints (not TGLayoutHints). See TGTableLayoutHints
for how to use these. This manager works like TGMatrixLayout with
the addition that:
  - Child frames can span more than one column/row.
  - Child frames can resize with the frame.
  - Column and row sizes are not fixed nor (optionally) homogeneous.
  - The number of columns and rows must be fully specified.

Revision 798 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Fri Oct 20 12:22:08 2000 UTC (14 years, 3 months ago) by rdm
Original Path: trunk/gui/inc/TGLayout.h
File length: 9059 byte(s)
Diff to previous 3
updated some comments.

Revision 3 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue May 16 17:00:58 2000 UTC (14 years, 8 months ago) by rdm
Original Path: trunk/gui/inc/TGLayout.h
File length: 8834 byte(s)
Copied from: branches/rdm/gui/inc/TGLayout.h revision 2
Diff to previous 2
This commit was generated by cvs2svn to compensate for changes in r2,
which included commits to RCS files with non-trunk default branches.

Revision 2 - (view) (download) (as text) (annotate) - [select for diffs]
Added Tue May 16 17:00:58 2000 UTC (14 years, 8 months ago) by rdm
Original Path: branches/rdm/gui/inc/TGLayout.h
File length: 8834 byte(s)
Initial import of ROOT into CVS

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