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

Log of /trunk/gui/gui/inc/TGSplitter.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: 6283 byte(s)
Diff to previous 25229
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 25229 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Aug 25 15:14:34 2008 UTC (6 years, 5 months ago) by bellenot
File length: 6268 byte(s)
Diff to previous 23115
From Matevz and me:
Merge changes from branches/dev/fireworks (CMS event display)

TGSplitFrame
------------
- Added Docked(TGFrame*) and  Undocked(TGFrame*) signals
- Added GetUndocked() getter

TGView
------
- Added a protection against possible negative scroll values

TGTextView
----------
- Fix bottom line not being properly updated while scrolling TGTextView
- Solve a problem with vertical slider (avoid negative value when scrolling)

TGTextEdit
----------
- Fix blinking cursor on some platforms/compilers in TGTextEdit

TGToolTip
---------
- Add new constructor with global x, y position.
If neither fWindow nor fPad are set use global fX, fY that was passed from outside.

TGListTree
----------
DeleteItem/Children() - for list-tree in stand-alone mode set below-mouse/current item to zero before deleting the item; remove corresponding comments.

TGSplitter
----------
- Add option to handle frame resizing externally.

TGPack
------
New Container class for vertical and horizontal grouping of frames. It enforces a predictable resizing behaviour on children.

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: 5826 byte(s)
Copied from: trunk/gui/inc/TGSplitter.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/TGSplitter.h
File length: 5826 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/TGSplitter.h
File length: 5826 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/TGSplitter.h
File length: 5876 byte(s)
Diff to previous 19739
remove :$ from tag line

Revision 19739 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Aug 30 20:46:09 2007 UTC (7 years, 4 months ago) by rdm
Original Path: trunk/gui/inc/TGSplitter.h
File length: 5886 byte(s)
Diff to previous 15879
From Matevz:
Added abstract method 'SetFrame(TGFrame *frame, Bool_t prev)' that
allows usage of base-class pointer for configuration of
TGHSplitter and TGVSplitter.

Revision 15879 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue Aug 1 10:54:37 2006 UTC (8 years, 5 months ago) by rdm
Original Path: trunk/gui/inc/TGSplitter.h
File length: 5824 byte(s)
Diff to previous 15849
From David Gonzalez Maline and Bertrand:
- Implemented resizable TGListView headers.
- Implemented files sorting by clicking header buttons in TGFileDialog
  and TRootBrowser.

Revision 15849 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Jul 26 13:36:44 2006 UTC (8 years, 6 months ago) by rdm
Original Path: trunk/gui/inc/TGSplitter.h
File length: 5059 byte(s)
Diff to previous 15672
Instead of providing default implementations for copy ctor's and assignment
operators we better make them private (and not implemented) to avoid people
from accidentally using them. Especially the collections classes and the
TQObject derived classes. In these classes the default implementations would
cause havoc due to multiple deletions of the same objects and other
potential memory corruptions.

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/TGSplitter.h
File length: 5174 byte(s)
Diff to previous 15134
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 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/TGSplitter.h
File length: 5166 byte(s)
Diff to previous 15044
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 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/TGSplitter.h
File length: 4905 byte(s)
Diff to previous 14658
From Federico:
headers modified to support the gcc option effc++

Revision 14658 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Apr 12 11:11:43 2006 UTC (8 years, 9 months ago) by rdm
Original Path: trunk/gui/inc/TGSplitter.h
File length: 4622 byte(s)
Diff to previous 10110
From Bertrand:
Added a pixmap on TGHSplitter and TGVSplitter to make them more visible.

Revision 10110 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Sep 20 19:11:54 2004 UTC (10 years, 4 months ago) by rdm
Original Path: trunk/gui/inc/TGSplitter.h
File length: 4567 byte(s)
Diff to previous 9948
TGSplitte: add IsLeft() and IsAbove() (in addition to GetLeft() and
GetAbove() which are not a correct names for a boolean getters).

Revision 9948 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Sep 8 09:03:44 2004 UTC (10 years, 4 months ago) by brun
Original Path: trunk/gui/inc/TGSplitter.h
File length: 4465 byte(s)
Diff to previous 9945
From Valeriy Onuchin:
- correct default width/height for some widgets.
   Thanks to Ilka reporting side effect.

Revision 9945 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Sep 8 08:13:11 2004 UTC (10 years, 4 months ago) by brun
Original Path: trunk/gui/inc/TGSplitter.h
File length: 4466 byte(s)
Diff to previous 7520
From Valeriy Onuchin:
- provide default constructors for most TGxxx classes.
  The goal:
    1.  required for  guibuilder
     2. providing  ROOT I/O for GUI classes.
  In all default constructors parent window is NULL,
  that means that parent window is currently editted window.

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/TGSplitter.h
File length: 4452 byte(s)
Diff to previous 7074
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 7074 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Aug 11 12:51:31 2003 UTC (11 years, 5 months ago) by rdm
Original Path: trunk/gui/inc/TGSplitter.h
File length: 4317 byte(s)
Diff to previous 6663
added some Getters needed by Ilka.

Revision 6663 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed May 28 11:55:32 2003 UTC (11 years, 8 months ago) by rdm
Original Path: trunk/gui/inc/TGSplitter.h
File length: 4095 byte(s)
Diff to previous 6303
major changes in the resource management of the GUI classes. Introduced the
new class TGResourcePool which loads and keeps track of the 3 main resource
pools: fonts, picture and graphics contexts. Fonts are now handled via the
new TGFont class (and TGFontPool). In the past the loading of these resources
was done in TGClient and required all GUI classes to have TGClient as friend
to have their global statics initialized by TGClient. Adding a new widget
required TGClient.cxx to be changed too. This was obviously not good.
In addition it is now possible to find the full definition of the original
resource back based on a resource handle (GContext_t or FontStruct_t yielding
a TGGC or TGFont) which is needed for the SavePrimitive() functionality.

The resource pool can be found via TGClient (e.g. gClient->GetResourcePool()).
To see all active graphics contexts, fonts and pictures do:
   gClient->GetResourcePool()->GetGCPool()->Print()
   gClient->GetResourcePool()->GetFontPool()->Print()
   gClient->GetResourcePool()->GetPicturePool()->Print()
For more examples see the widget source code.

These changes are largely backward compatible except maybe for some low
level 3rd party widgets that use some TGFrame internals. In these cases
the following sed command will patch the code:
   sed -e "s/fgBlackGC()/GetBlackGC()()/g" \
       -e "s/fgWhiteGC()/GetWhiteGC()()/g" \
       -e "s/fgHilightGC()/GetHilightGC()()/g" \
       -e "s/fgShadowGC()/GetShadowGC()()/g" \
       -e "s/fgBckgndGC()/GetBckgndGC()()/g" \
       widget.cxx > widget.cxx.new

Revision 6303 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Fri Mar 14 11:34:18 2003 UTC (11 years, 10 months ago) by rdm
Original Path: trunk/gui/inc/TGSplitter.h
File length: 4095 byte(s)
Diff to previous 2110
rename fWidth and fHeight to fFrameWidht and fFrameHeight to avoid possible
name clash with baseclass fHeight and fWidth.

Revision 2110 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed May 2 11:45:46 2001 UTC (13 years, 8 months ago) by rdm
Original Path: trunk/gui/inc/TGSplitter.h
File length: 4095 byte(s)
Diff to previous 685
fixes in header files to not use directly static data members as default
arguments. This does not work on Windows due to export problems of these
statics. Use now static Getters instead.

Revision 685 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Fri Sep 29 08:57:05 2000 UTC (14 years, 3 months ago) by rdm
Original Path: trunk/gui/inc/TGSplitter.h
File length: 4086 byte(s)
Diff to previous 600
many change connected with the introduction of the TGGC (graphics context)
class (all backward compatible). Also many of the static default GC's and
fontstructs are now available to the user. This can simplify code in many
places. See change in guitest.cxx.

Revision 600 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Sep 7 11:19:01 2000 UTC (14 years, 4 months ago) by rdm
Original Path: trunk/gui/inc/TGSplitter.h
File length: 5635 byte(s)
Diff to previous 595
smoothed some rough edges with the new TGSplitter widget (for its use see
TRootBrowser.cxx). Also added the TGHSplitter (the horizontal) variant.

Revision 595 - (view) (download) (as text) (annotate) - [select for diffs]
Added Thu Sep 7 00:32:14 2000 UTC (14 years, 4 months ago) by rdm
Original Path: trunk/gui/inc/TGSplitter.h
File length: 4244 byte(s)
new TGSplitter and TGVSplitter classes. The TGVSplitter allows the dynamic
change in width of a designated frame. The source file also contains the
code for TGHorizontal3DLine (was in TGToolBar.h) and the new TGVertical3DLine.
TGHSplitter comes later.

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