[root] / trunk / gui / ged / src / TAttMarkerEditor.cxx Repository:
ViewVC logotype

Log of /trunk/gui/ged/src/TAttMarkerEditor.cxx

Parent Directory Parent Directory


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

Revision 35527 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue Sep 21 12:27:01 2010 UTC (4 years, 4 months ago) by brun
File length: 5815 byte(s)
Diff to previous 33881
do not include snprintf.h

Revision 33881 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Jun 14 14:01:53 2010 UTC (4 years, 7 months ago) by bellenot
File length: 5837 byte(s)
Diff to previous 23115
Fix unchecked dynamic_cast (coverity)

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: 5809 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/src/TAttMarkerEditor.cxx
File length: 5809 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/src/TAttMarkerEditor.cxx
File length: 5809 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/src/TAttMarkerEditor.cxx
File length: 5872 byte(s)
Diff to previous 18842
remove :$ from tag line

Revision 18842 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon May 21 13:42:26 2007 UTC (7 years, 8 months ago) by antcheva
Original Path: trunk/ged/src/TAttMarkerEditor.cxx
File length: 5882 byte(s)
Diff to previous 17733
Added fSizeForText data member. It is set to kTRUE if the
"TEXT" draw option uses marker size as a text size setting.
Follow up changes in TH2Editor.

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/src/TAttMarkerEditor.cxx
File length: 5393 byte(s)
Diff to previous 16331
- cleanup of includes

Revision 16331 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Sep 25 13:40:06 2006 UTC (8 years, 4 months ago) by rdm
Original Path: trunk/ged/src/TAttMarkerEditor.cxx
File length: 5492 byte(s)
Diff to previous 15526
From Matevz:
Changes from TGedFrame.

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/TAttMarkerEditor.cxx
File length: 6109 byte(s)
Diff to previous 14336
- 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 14336 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Mar 20 21:43:44 2006 UTC (8 years, 10 months ago) by pcanal
Original Path: trunk/ged/src/TAttMarkerEditor.cxx
File length: 5969 byte(s)
Diff to previous 13358
Reduce direct dependencies on TClass.h, TROOT.h and TStreamerInfo.h.
Warning:  This means that some file that relied on the indirect
inclusion of these header file might now fail to compile with
an error message mention that gROOT is no known or that TClass,
TROOT or TStreamerInfo is incompletely defined.  Simply add the
proper include directive.

Revision 13358 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Fri Nov 25 09:56:35 2005 UTC (9 years, 2 months ago) by brun
Original Path: trunk/ged/src/TAttMarkerEditor.cxx
File length: 5950 byte(s)
Diff to previous 12968
From Ilka:
Using the faster version of InheritsFrom(TClass*) instead of InheritsFrom(const char*)
where possible in the editors' code.

Revision 12968 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Oct 17 10:20:01 2005 UTC (9 years, 3 months ago) by brun
Original Path: trunk/ged/src/TAttMarkerEditor.cxx
File length: 5942 byte(s)
Diff to previous 11789
From Ilka:
TAttMarkerEditor.h:
- used a number entry instead of a combo box for marker size;
- changed signature of DoMarkerSize() method;

TAttMarkerEditor.cxx
- code changes according to the number enry in use for marker size;

TGedMarkerSelect.cxx
- predefined set of marker types by adding marker  types 6 and 7
for better layout (3x6 types) of the popup window;

TGNumberEntry.cxx
- the status of the number entry was not saved in the generated code;

Revision 11789 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Sat May 14 00:19:58 2005 UTC (9 years, 8 months ago) by rdm
Original Path: trunk/ged/src/TAttMarkerEditor.cxx
File length: 5667 byte(s)
Diff to previous 9388
From Ilka:
- TGedEditor.cxx - if the canvas window is maximized the global editor
  appears in the bottom right corner of the canvas window
- fixes of errors reported in the violation table by Jose Lo

Revision 9388 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Jul 5 06:42:05 2004 UTC (10 years, 6 months ago) by brun
Original Path: trunk/ged/src/TAttMarkerEditor.cxx
File length: 5676 byte(s)
Diff to previous 9376
Add more comments in headers.
Rename gif files

Revision 9376 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Fri Jul 2 15:43:56 2004 UTC (10 years, 6 months ago) by brun
Original Path: trunk/ged/src/TAttMarkerEditor.cxx
File length: 5591 byte(s)
Diff to previous 9320
from Ilka
add pictures showing the ged for all classes supporting the new 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/TAttMarkerEditor.cxx
File length: 5533 byte(s)
Diff to previous 9258
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 9258 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Fri Jun 18 22:10:13 2004 UTC (10 years, 7 months ago) by brun
Original Path: trunk/ged/src/TAttMarkerEditor.cxx
File length: 5316 byte(s)
Diff to previous 9255
Add missing #include "snprintf.h"
The file did not compile on Windows (and may be other systems)

Revision 9255 - (view) (download) (as text) (annotate) - [select for diffs]
Added Fri Jun 18 15:55:00 2004 UTC (10 years, 7 months ago) by brun
Original Path: trunk/ged/src/TAttMarkerEditor.cxx
File length: 5295 byte(s)
From Ilka:
- new classes:
  TGedElement      - service class for registering the available attribute
                     editors and the canvas they are related to;
  TGedFrame        - base class of attribute editors
  TGedNameFrame    - in use to show the selected object name
  TAttFillEditor   - attribute editor related to the TAttFill class
  TAttLineEditor   - attribute editor related to the TAttLine class
  TAttMarkerEditor - attribute editor related to the TAttMarker class
  TAttTextEditor   - attribute editor related to the TAttText class
  TAxisEditor      - attribute editor related to the TAxis class

- removed classes:
  TGedAttFrame
  TGedAttNameFrame
  TGedAttFillFrame
  TGedAttLineFrame
  TGedAttTextFrame
  TGedAttMarkerFrame
  TGedAttAxisFrame
  TGedAttAxisTitle
  TGedAttAxisLabel
  TGedPropertyFrame

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