Log of /trunk/graf2d/gpad/inc/TControlBar.h
Parent Directory
Revision
23140 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Modified
Fri Apr 11 11:01:39 2008 UTC (6 years, 9 months ago) by
rdm
File length: 3507 byte(s)
Diff to
previous 20882
move the following directories to "graf2d":
asimage, freetype, gpad, graf, postscript, qt, win32gdk, x11, x11ttf
move the following directories to "graf3d":
eve, ftgl, g3d, gl, x3d
Revision
19219 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Modified
Mon Jul 2 12:59:25 2007 UTC (7 years, 6 months ago) by
brun
Original Path:
trunk/gpad/inc/TControlBar.h
File length: 3568 byte(s)
Diff to
previous 16770
From Ilka:
Added a new method SetButtonWidth(UInt_t buttonWidth) for setting
the button width in pixels.
Invoke this method before calling the TControlbar::Show() if you
want to specify the button width for all control bar buttons:
bar->SetButtonWidth(90);
bar->Show();
Revision
16770 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Modified
Wed Nov 15 16:35:56 2006 UTC (8 years, 2 months ago) by
brun
Original Path:
trunk/gpad/inc/TControlBar.h
File length: 3519 byte(s)
Diff to
previous 7404
From Ilka:
new method SetButtonState(const char *label, Int_t state = 0) in TControlBar. It allows to set different button states using the bar pointer and identifying the text button via its label. The possible states are: 0-kButtonUp, 1-kButtonDown, 2-kButtonEngaged, 3-kButtonDisabled.
Example:
root > .x tutorials/demos.C
// to disable the button 'first' do:
root > bar->SetButtonState("first", 3)
// to enable the button 'first' do:
root > bar->SetButtonState("first", 0)
Revision
6977 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Modified
Fri Jul 18 23:51:49 2003 UTC (11 years, 6 months ago) by
rdm
Original Path:
trunk/gpad/inc/TControlBar.h
File length: 3340 byte(s)
Diff to
previous 5329
new method SetFont() added to
TGTextButton, TControlBar, TRootControlBar, TControlBarImp
classes that allow to change the font of control bar on fly, example:
root [0] .x tutorials/demos.C
root [1] bar->SetFont("-adobe-helvetica-bold-r-*-*-12-*-*-*-*-*-iso8859-1")
root [2] bar->SetFont("-adobe-helvetica-bold-r-*-*-24-*-*-*-*-*-iso8859-1")
Revision
5327 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Modified
Wed Sep 18 12:21:04 2002 UTC (12 years, 4 months ago) by
rdm
Original Path:
trunk/gpad/inc/TControlBar.h
File length: 3361 byte(s)
Diff to
previous 1205
add an inline GUI detach method. This method is used in the actual
GUI implementation (TRootBrowser et al) to detach the GUI from the object
to avoid the when the object is deleted it will also delete the GUI.
The GUI itself will be deleted via the new TGFrame::DeleteWindow() method.
Revision
1205 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Modified
Wed Dec 13 15:13:57 2000 UTC (14 years, 1 month ago) by
brun
Original Path:
trunk/gpad/inc/TControlBar.h
File length: 3294 byte(s)
Diff to
previous 3
W A R N I N G !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
==================================================================
A very long list of changes in this pre-release of version 3.00.
We have modified the signature of many functions (in particular TObject)
to introduce more constness in the system.
You must change your code if your class derives from TObject and uses
one of the modified functions such as ls, Print, Compare, Hash, etc.
The modified functions in TObject have the following signature:
virtual TObject *Clone() const;
virtual Int_t Compare(const TObject *obj) const;
virtual void Delete(Option_t *option=""); // *MENU*
virtual void DrawClass() const; // *MENU*
virtual void DrawClone(Option_t *option="") const; // *MENU*
virtual void Dump() const; // *MENU*
virtual TObject *FindObject(const TObject *obj) const;
virtual char *GetObjectInfo(Int_t px, Int_t py) const;
virtual ULong_t Hash() const;
virtual void Inspect() const; // *MENU*
virtual Bool_t IsEqual(const TObject *obj) const;
virtual void ls(Option_t *option="") const;
virtual void Print(Option_t *option="") const;
A similar operation has been done with classes such as TH1, TVirtualPad,
TTree, etc.
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.