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

Log of /trunk/gui/ged/inc/TGedFrame.h

Parent Directory Parent Directory


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

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: 4430 byte(s)
Diff to previous 27157
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 27157 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Jan 15 14:05:12 2009 UTC (6 years ago) by brun
File length: 4557 byte(s)
Diff to previous 23115
From Axel:
Replace all references to Text_t by char, still keeping the definition in Rtypes.h

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: 4559 byte(s)
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/ged/inc/TGedFrame.h
File length: 4559 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/ged/inc/TGedFrame.h
File length: 4559 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/ged/inc/TGedFrame.h
File length: 4608 byte(s)
Diff to previous 17733
remove :$ from tag line

Revision 17733 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue Feb 6 15:39:54 2007 UTC (7 years, 11 months ago) by antcheva
Original Path: trunk/ged/inc/TGedFrame.h
File length: 4618 byte(s)
Diff to previous 16507
- cleanup of includes

Revision 16507 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Oct 11 10:26:23 2006 UTC (8 years, 3 months ago) by rdm
Original Path: trunk/ged/inc/TGedFrame.h
File length: 4613 byte(s)
Diff to previous 16352
From Federico:
fixes for the -effc++ g++ option.

Revision 16352 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Sep 27 08:45:42 2006 UTC (8 years, 3 months ago) by rdm
Original Path: trunk/ged/inc/TGedFrame.h
File length: 4466 byte(s)
Diff to previous 16328
From Matevz:
Avoid reparenting during ged-frame creation. A static member is
used to propagate the current TGedEditor to the frames and
TGedFrame constructor retrieves it from there.

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/inc/TGedFrame.h
File length: 4392 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/inc/TGedFrame.h
File length: 3961 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/inc/TGedFrame.h
File length: 4008 byte(s)
Diff to previous 15181
- 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 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/ged/inc/TGedFrame.h
File length: 3929 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/ged/inc/TGedFrame.h
File length: 3954 byte(s)
Diff to previous 13199
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 13199 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Fri Nov 11 15:38:30 2005 UTC (9 years, 2 months ago) by brun
Original Path: trunk/ged/inc/TGedFrame.h
File length: 3413 byte(s)
Diff to previous 10062
From Ilka:
Fixes to make the rule checker happy

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/inc/TGedFrame.h
File length: 3372 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 9765 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Aug 16 15:05:52 2004 UTC (10 years, 5 months ago) by brun
Original Path: trunk/ged/inc/TGedFrame.h
File length: 3292 byte(s)
Diff to previous 9320
Overload the TObject functions GetDrawOption and SetDrawOption.
Instead of getting/setting the option in the current pad gPad, the
new functions get/set the options in the selected pad fPad.

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/inc/TGedFrame.h
File length: 3184 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.

Revision 9257 - (view) (download) (as text) (annotate) - [select for diffs]
Added Fri Jun 18 21:46:02 2004 UTC (10 years, 7 months ago) by brun
Original Path: trunk/ged/inc/TGedFrame.h
File length: 3082 byte(s)
This new class was forgotten in the previous check-in

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