Log of /trunk/gui/ged/src/TGedFrame.cxx
Parent Directory
Revision
33457 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Modified
Tue May 11 07:11:07 2010 UTC (4 years, 8 months ago) by
bellenot
File length: 9121 byte(s)
Diff to
previous 27476
From Matevz:
* TGedFrame: Remove function TGedFrame::GetLayoutHints() and data-member fLayoutHints caching these layout-hints as it led to double deletion in TGedEditor destruction.
* TGedEditor: Directly instantiate layout-hints instead of calling TGedFrame::GetLayoutHints().
Revision
16328 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Modified
Mon Sep 25 13:32:57 2006 UTC (8 years, 4 months ago) by
rdm
Original Path:
trunk/ged/src/TGedFrame.cxx
File length: 8621 byte(s)
Diff to
previous 15849
From Matevz:
1. Changes applying to TGedFrame:
Handle list of additional tabs by using inner class TabSubFrame to
store information about each extra tabs. Use member TList
*fExtraTabs to aggregate the information. This is used by
fGedEditor when populating the full class editor.
Redirect the update call to fGedEditor.
Remove TGWidget inheritance.
Remove interaction with TClass::fClassEditors. Now class editors
are managed my TGedEditor map.
2. Changes applying to TGedFrame descendants:
In constructor remove widget ID argument and set all arguments a
default value. In the constructor implementation erase code which
operates on now obsoleted TClass::fClassEditors list.
Add memeber fGedEditor. Remove members fPad and fModel as they are
available from fGedEditor.
In SetModel() remove checking of inheritance and SetActive() call.
3. TGedNameFrame: added tooltip displaying name, title and
class-name of the model.
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/ged/src/TGedFrame.cxx
File length: 7273 byte(s)
Diff to
previous 15526
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
15526 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Modified
Fri Jun 23 15:19:22 2006 UTC (8 years, 7 months ago) by
antcheva
Original Path:
trunk/ged/src/TGedFrame.cxx
File length: 8522 byte(s)
Diff to
previous 15166
- fixed problem of object editor performance caused by freely emitted
signals of used GUI elements and corresponding slots execution.
TGedFrame
- new data member fAvoidSignal = kFALSE by default. In SetModel method of any editor it is set to kTRUE to avoid executing slot method and in the end of SetModet is set to kFALSE again;
TGedEditor
- move the call of TGMainFrame::Layout from TGedFrame::SetActive in
TGedEditor::SetModel
TPadEditor
- no need of TGCompositeFrame *f7 as data member
- added new data member TGButtonGroup *fBgrop
- connected DoBorderMode slot with TGButtonGroup::Released signal
TGraphEditor
- changed signature of DoShape method
- connected DoShape slot with TGButtonGroup::Released signal
TH1Editor
- new method DoHistView()
- fixed problem shown with MSVS 8 (thaks to Timur and Bertrand)
- connected DoHistView slot with TGButtonGroup::Released signal
TH2Editor
- new method DoHistView()
- fixed problem shown with MSVS 8 (thaks to Timur and Bertrand)
- connected DoHistView slot with TGButtonGroup::Released signal
All other editors - follow-up changes in the code related to the
fAvoidSignal use.
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/ged/src/TGedFrame.cxx
File length: 8215 byte(s)
Diff to
previous 13508
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
13508 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Modified
Tue Dec 6 17:32:15 2005 UTC (9 years, 1 month ago) by
rdm
Original Path:
trunk/ged/src/TGedFrame.cxx
File length: 7182 byte(s)
Diff to
previous 13358
From Ilka:
- fix of the bug 13809 reported on Savannah in Dividers methods of
TH1/2Editors (thanks to Axel).
- improved performance of both histogram editors.
- memory leak fixes.
- comment fixes.
- code layout changes of TH1/2 editors to make the code readable
(some lines had > 150 symbols).
Revision
11764 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Modified
Tue May 10 15:11:26 2005 UTC (9 years, 8 months ago) by
rdm
Original Path:
trunk/ged/src/TGedFrame.cxx
File length: 6931 byte(s)
Diff to
previous 10121
From Ilka:
fix of PR#2873 in the TGLabel::SetTextColor() method about global font
color settings. The reason of the side effect was the use of the
SetTextColor() method in the TGedNameFrame::SetModel() with second
parameter = kTRUE for a local color change at the time this code was written.
Revision
10062 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Modified
Wed Sep 15 14:56:35 2004 UTC (10 years, 4 months ago) by
brun
Original Path:
trunk/ged/src/TGedFrame.cxx
File length: 6933 byte(s)
Diff to
previous 9765
From Ilka and Carsten:
ged/*/TGedFrame.h,cxx
- a pointer to the parent tab fTab added as a new data member
- deactivate/activate additional tab in the method TGedFrame::SetActive()
gpad/src/TUtilPad.cxx
- in TUtilPad::DrawPanel invoke the new editor with GUI interface by
Carsten when fgPanelVersion > 0
gui/src/TRootCanvas.cxx
- reintroduced lines in CreateEditor() method for showing the old editor
Revision
9320 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Modified
Fri Jun 25 17:13:23 2004 UTC (10 years, 7 months ago) by
brun
Original Path:
trunk/ged/src/TGedFrame.cxx
File length: 5662 byte(s)
Diff to
previous 9257
From Ilka:
- implemented new method ConnectSignals2Slots() to avoid non pleasant
behavior of selected object in the canvas;
- improved comments;
- TGGroupFrame::DrawBorder() - fix in border drawing to avoid extra space
in the bottom of the group frame;
-TRootCanvas::ReallyDelete() - missing a call to DeleteEditors() method;
TPadEditor class provides GUI for an easy control of pad/canvas attributes.
Users can set log scales, ticks and grids along x, y,z; border mode and
size, etc.
TPaveStatsEditor provides GUI for editing TPaveStats options.
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.