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

Log of /trunk/gui/gui/src/TGLabel.cxx

Parent Directory Parent Directory


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

Revision 46073 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Sep 20 09:04:04 2012 UTC (2 years, 4 months ago) by pcanal
File length: 16339 byte(s)
Diff to previous 44507
Make sure fgDefaultGC is initialized before using it

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: 16323 byte(s)
Diff to previous 41257
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 41257 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Fri Oct 7 09:42:03 2011 UTC (3 years, 3 months ago) by bellenot
File length: 16268 byte(s)
Diff to previous 41192
Fix coverity report ##34545 (Dereference after null check)

Revision 41192 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Oct 6 10:30:48 2011 UTC (3 years, 3 months ago) by bellenot
File length: 16220 byte(s)
Diff to previous 35582
Fix coverity reports (dereference null return value)

Revision 35582 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Sep 22 13:38:27 2010 UTC (4 years, 4 months ago) by bellenot
File length: 16166 byte(s)
Diff to previous 32830
Add the "keep_names" option when saving the GUI source, to allow the users to change the name of any frame in the ROOT Gui Builder and more important to keep it across the different load/edit/save cycles. This should solve a problem reported on the forum at: http://root.cern.ch/phpBB3//viewtopic.php?f=3&t=11216

Revision 32830 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue Mar 30 08:03:46 2010 UTC (4 years, 9 months ago) by bellenot
File length: 16037 byte(s)
Diff to previous 32581
- Replace several sprintf by using TString (coverity)

Revision 32581 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Fri Mar 12 09:17:10 2010 UTC (4 years, 10 months ago) by bellenot
File length: 16036 byte(s)
Diff to previous 31669
- Replace several sprintf by using TString (coverity)
- Fix a bug when saving multi-lines labels (convert newline characters by the correct escape sequence "\n")

Revision 31669 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue Dec 8 15:15:47 2009 UTC (5 years, 1 month ago) by bellenot
File length: 15971 byte(s)
Diff to previous 28392
- Add missing initializations (coverity)
- Fix potential memory leaks (coverity)
- Add protections against possible NULL pointers (coverity)

Revision 28392 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Apr 30 07:32:21 2009 UTC (5 years, 8 months ago) by bellenot
File length: 15911 byte(s)
Diff to previous 23115
Check validity of gc pointer before calling pool->FreeGC(gc); This will avoid this kind of message:
Error in <THashTable::FindObject>: argument is a null pointer

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: 15903 byte(s)
Copied from: trunk/gui/src/TGLabel.cxx 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/src/TGLabel.cxx
File length: 15903 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/src/TGLabel.cxx
File length: 15903 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/src/TGLabel.cxx
File length: 15957 byte(s)
Diff to previous 19402
remove :$ from tag line

Revision 19402 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Jul 19 12:37:26 2007 UTC (7 years, 6 months ago) by antcheva
Original Path: trunk/gui/src/TGLabel.cxx
File length: 15967 byte(s)
Diff to previous 19364
From Valeriy Onuchin:
TGLabel::GetDefaultSize() modified to allow fixed size labels.
  For example,
     label->ChangeOptions(label->GetOptions() | kFixedSize);
     label->Resize(100, 100);
  after that the label size can not changed by layout manager.

Revision 19364 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue Jul 17 12:55:52 2007 UTC (7 years, 6 months ago) by antcheva
Original Path: trunk/gui/src/TGLabel.cxx
File length: 15611 byte(s)
Diff to previous 18974
From Valeriy Onuchin:
 o TGLabel::SavePrimitive - saving multi line labels.

Revision 18974 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Jun 7 08:43:59 2007 UTC (7 years, 7 months ago) by antcheva
Original Path: trunk/gui/src/TGLabel.cxx
File length: 15391 byte(s)
Diff to previous 18853
From Valeriy O.
In SetTextJustify method set correspondent gravity bits
to minimize repainting of widgets during resizing.

Revision 18853 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue May 22 11:47:14 2007 UTC (7 years, 8 months ago) by antcheva
Original Path: trunk/gui/src/TGLabel.cxx
File length: 13732 byte(s)
Diff to previous 18678
From Valeri Onuchin:
Fixed memory leaks.

Revision 18678 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Sun May 6 08:04:39 2007 UTC (7 years, 8 months ago) by brun
Original Path: trunk/gui/src/TGLabel.cxx
File length: 13715 byte(s)
Diff to previous 18655
Fix coding conventions

Revision 18655 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Fri May 4 15:16:33 2007 UTC (7 years, 8 months ago) by antcheva
Original Path: trunk/gui/src/TGLabel.cxx
File length: 13713 byte(s)
Diff to previous 16715
From Valeriy Onuchin:
possiblity to have multiline labels/tooltips

Revision 16715 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Nov 9 13:23:13 2006 UTC (8 years, 2 months ago) by antcheva
Original Path: trunk/gui/src/TGLabel.cxx
File length: 12052 byte(s)
Diff to previous 15849
- fixed typo in comments

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/src/TGLabel.cxx
File length: 12051 byte(s)
Diff to previous 15742
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 15742 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Sun Jul 9 05:27:55 2006 UTC (8 years, 6 months ago) by brun
Original Path: trunk/gui/src/TGLabel.cxx
File length: 12939 byte(s)
Diff to previous 15672
From Eddy:
Fix many typos in comments

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/src/TGLabel.cxx
File length: 12938 byte(s)
Diff to previous 15285
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 15285 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Jun 1 11:38:15 2006 UTC (8 years, 7 months ago) by antcheva
Original Path: trunk/gui/src/TGLabel.cxx
File length: 12926 byte(s)
Diff to previous 15191
From Valeriy Onuchin:
- move the GUI builder specific code from widget constructors to TRootGuiBuilder.

Revision 15191 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Sun May 28 20:08:00 2006 UTC (8 years, 7 months ago) by brun
Original Path: trunk/gui/src/TGLabel.cxx
File length: 12996 byte(s)
Diff to previous 15173
From valeriy Onuchine:

- TImage, TASImage
 o Change return type of Vectorize method  from "void" to "Double_t*".
 o Implement FromWindow method under X11. This method allows to
   create "snapshot image" from any ROOT window or frame.

- config/Makefile.depend
 Add dependency of libGuiBld lib on libGraf.
 GuiBuilder uses internally TImage/TASImage class.

- GX11Gui.cxx

 X11 error handler was slightly modified.
 Many X11 errors lead to freezing X11 server and
 did not allow debugging.
 To prevent freezing, a "forced seg.violation" was added
 to the error handler.

 The usage of the new "feature" is the following:
 0. run "gdb root.exe"
 1. set "gDebug = (int)gVirtualX" - that activates the new error handling.
 2. run application which has X11 errors.

On X11 error the application was stopped by the "forced seg.violation".

 3. "gdb>bt" - backtrace the problem.



!!! A big list of changes in libGui initiated by gui builder development !!!

- TGButton.h, TGButton.cxx
  TGButton class:
   o SetDown methods removed from context menu.
   o SetEnabled method of context menu changed to TOGGLE.
     Setting fWidgetFlags was added.

- TGTextButton class
   o GetNormGC(), GetFontStruct() methods are introduced.
   o SetFont removed from context menu.
   o ChangeText(const char *title) was introduced and added to context menu.
   o fixed an error in SetFont method which set font globally instead of
     locally.
   o SavePrimitive - save text justification

- TGPictureButton
   o added getter method GetDisabledPicture()

- TGCanvas
   o added to GuiBuilder widgets palette.

- TGColorDialog
   o new methods:
     - TGColorPalette *GetPalette(),
     - TGColorPalette *GetCustomPalette(),
     - void SetCurrentColor(Pixel_t col)
   o new signal:
      - void ColorSelected(Pixel_t)
   o new parameter added to contructor "Bool_t wait".
     If "wait" is kTRUE, "gClient->WaitForUnmap" is called internally
     (normal/old usage). If "wait" is kFALSE - "gClient->WaitForUnmap"
     should be called by user.
   o few "usefull" colors added to "custom" palette.

- TGColorSelect
   o added to GuiBuilder widgets palette.

- TGComboBox
   o new methods:
     - SortByName - allows to sort combobox entries by names.
     - SetEnabled, IsEnabled.

- TGFontDialog was rewritten.
   o Previous version worked under win32 only,
      now it works on X11 also.
      It allows to select any font available on the system.

  o new parameter added to contructor "Bool_t wait".
     If "wait" is kTRUE, "gClient->WaitForUnmap" is called internally
     (normal/old usage). If "wait" is kFALSE - "gClient->WaitForUnmap"
     should be called by user.

  o new methods:
      void SetFont(TGFont *font);
      void SetColor(Pixel_t color);
      void SetAlign(Int_t align);
      void EnableAlign(Bool_t on = kTRUE);
      void UpdateStyleSize(const char *family);

 o new signals:
   - FontSelected(char *font)
   - AlignSelected(Int_t a)
   - ColorSelected(Pixel_t c)

- TGFrame
   o unused static member fgContextMenu removed.

- TGCompositeFrame
   o TGCompositeFrame::SetEditDisabled modified. It is used for setting
     fEditDisableXX attribute during gui buildind.

   o ChangeSubframesBackground helper method was introduced.

- TGGroupFrame
   o SetTextFont, SetTextColor methods were corrected for
     "local" changing of the font.

- TGWindow
   o kEditDisableKeyEnable added to EEditMode enum.
     If this flag is set - window can handle keyboard events during gui
     building.

- TGLabel
   o new methods:
    - GetNormGC, GetFontStruct
   o fixed bugs in setting label's "local" text font.
   o SavePrimitive - saving text justification added.

- TGListBox
  o new methods:
     - SortByName - allow to sort listbox entries by names.
     - new auxilary/internal class TGLBFrameElement created.
        It's used for ascending/descending sort of list box entries.

  o reimplemented methods:
   ChangeBackground, Layout, GetDefaultWidth

  o disable changing layout manager in SetLayoutManager method.
    Layout manager is not used for layout of list box.

- TGIcon
   o SetImagePath method was corrected.

- TGScrollBarElement
   o new methods:
     - SetEnabled, IsEnabled. These methods are used in enabling/disabling
       TGNumberEntry objects.

- TGScrollBar
   o new getter methods:
      - GetHead, GetTail, GetSlider
   o new signals:
      - PositionChanged, RangeChanged, PageSizeChanged
   o ChangeBackground was reimplemented.

- TGShutter
   o new methods:
      - AddPage, RemovePage, RenamePage
   o new signal Selected.
   o disable changing layout manager in SetLayoutManager method.
     Layout manager is not used for layout.

- TGView
   o disable changing layout manager by SetLayoutManager method.
     Layout manager is not used for layout.
   o ChangeBackground(Pixel_t col) method added which changes background
     color only of the canvas frame.

- TGNumberEntry
   o more options added to context menu.

- TGProgressBar
   o new getter/setter methods:
    - GetBarColor, GetNormGC, GetFontStruct, SetForegroundColor.

- TGTab
   o disable SetEditDisabled method to avoid changing "edit disable
     attribute".

- TGTextEdit, TGTextView, TGView
   o fixed bug - "character replace" mode didn't work
   o setting insert mode added to context menu.
   o setting "read only" mode added to context menu.
   o new method which enable/disable "popup menu for edit actions" added.
   o few corrections to SavePrimitive method.

- TGTextEntry
   o guibuilder specific code was removed.

-  TGuiBuilder.h, TGuiBldAction
   o possibility to set picture for context menu entry added.

- treeviewer/inc/TSessionViewer.h
  o forward declaration of TContextMenu class added.

Revision 15173 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed May 24 18:20:12 2006 UTC (8 years, 8 months ago) by brun
Original Path: trunk/gui/src/TGLabel.cxx
File length: 12391 byte(s)
Diff to previous 15134
Fix coding conventions violations

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/src/TGLabel.cxx
File length: 12326 byte(s)
Diff to previous 14804
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 14804 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Apr 24 13:49:25 2006 UTC (8 years, 9 months ago) by antcheva
Original Path: trunk/gui/src/TGLabel.cxx
File length: 11514 byte(s)
Diff to previous 14336
rom Valeriy Onuchin:
- TGLabel

   o SetText, Disable methods are added to context menu.

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/gui/src/TGLabel.cxx
File length: 11441 byte(s)
Diff to previous 13342
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 13342 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Nov 24 15:53:56 2005 UTC (9 years, 2 months ago) by rdm
Original Path: trunk/gui/src/TGLabel.cxx
File length: 11422 byte(s)
Diff to previous 12656
From Ilka:
Fix in TGLabel::DoRedraw() method - disabled labels were drawn with default
font in spite of different font structure in use (set in the constructor
or by the method TGLabel::SetTextFont). In addition, this patch fixes
the reported case on Forum at:
http://root.cern.ch/phpBB2/viewtopic.php?t=2742

Revision 12656 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Sep 5 13:33:08 2005 UTC (9 years, 4 months ago) by rdm
Original Path: trunk/gui/src/TGLabel.cxx
File length: 11070 byte(s)
Diff to previous 11764
from Ilka:
more coding convention fixes.

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/gui/src/TGLabel.cxx
File length: 11070 byte(s)
Diff to previous 11757
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 11757 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue May 10 09:27:45 2005 UTC (9 years, 8 months ago) by rdm
Original Path: trunk/gui/src/TGLabel.cxx
File length: 11069 byte(s)
Diff to previous 11754
From Ilka:
roll back change of yesterday which had nasty side effects.

Revision 11754 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon May 9 16:59:07 2005 UTC (9 years, 8 months ago) by rdm
Original Path: trunk/gui/src/TGLabel.cxx
File length: 11071 byte(s)
Diff to previous 10904
From Ilka:
fix in TGLabel::SetTextColor() about global font color settings
(reported in PR#2873).

Revision 10904 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Jan 12 18:39:30 2005 UTC (10 years ago) by brun
Original Path: trunk/gui/src/TGLabel.cxx
File length: 11070 byte(s)
Diff to previous 9983
From Valeriy Onuchin:
- new concept of "pseudo-window" introduced.
  pseudo-window - is an object inherited from TGWindow which
  is not created by window system (X11 or M$ Windows).
  It does not consume window system resouces.

  The main use-case of pseudo-windows is GUI containers
  with very large number of items. For example, listviews, listboxes,
  where listview/listbox items/entries are pseudo-windows.
  Pseudo-window  has "window id" equal to zero.
  In order to "activate pseudo-window concept" the parent should
  have fIsMapSubwindows dat member to be kFALSE.
  So, it's backward compatible,  setting fIsMapSubwindows=kTRUE in parent window
  will activate normal behavior, i.e. will be created in window system.

 Introduction of  "pseudo-window concept" forced the changes in
 TGX11, TGWin32 classes to avoid  TVirtualX methods execution when
 "window id" is NULL (the case of  pseudo-window).

 Introduction of pseudo-windows which do not consume window system resouces
 greately improved  performance of  TGListView, TGListBox, TGComboBox objects.

 Now it's possible to have these containers with more than 10000 items.

- some optimization in TGLBContainer drawing
- add SetWindowName to most GUI classes. It's very usefull for GUI debugging.

Revision 9983 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Sat Sep 11 16:27:09 2004 UTC (10 years, 4 months ago) by brun
Original Path: trunk/gui/src/TGLabel.cxx
File length: 11030 byte(s)
Diff to previous 9931
From Valeriy Onuchin:
- overload TObject's SetTitle method in classes which display  text label
- TGWindow::fEditDisabled was not initiated
- set text in default constructors for windows containing text labels

Revision 9931 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Sep 6 18:56:27 2004 UTC (10 years, 4 months ago) by brun
Original Path: trunk/gui/src/TGLabel.cxx
File length: 11003 byte(s)
Diff to previous 9833
From Valeriy Onuchin:
- always call TGFrame::DoRedraw() in TGLabel::DoRedraw method.
   That fixes weird appearence when label is resized "during guibuilding"

Revision 9833 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue Aug 24 10:42:14 2004 UTC (10 years, 5 months ago) by rdm
Original Path: trunk/gui/src/TGLabel.cxx
File length: 11006 byte(s)
Diff to previous 9811
From Ilka:
- label is redrawn any time it is Enabled() or Disabled()
- the disabled option is saved in GUI macro code

Revision 9811 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Sat Aug 21 07:05:35 2004 UTC (10 years, 5 months ago) by brun
Original Path: trunk/gui/src/TGLabel.cxx
File length: 10857 byte(s)
Diff to previous 9807
From Valeriy Onuchin:
- delete  local GC in TGLabel and TGTextButton destructor

Revision 9807 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Fri Aug 20 22:15:30 2004 UTC (10 years, 5 months ago) by rdm
Original Path: trunk/gui/src/TGLabel.cxx
File length: 10790 byte(s)
Diff to previous 8547
From Ilka:
new methods to enable and disable the label widget. When a label is
disabled the label text is greyed-out. This is not so much interesting for
labels as well as for other widgets which contain labels.

Revision 8547 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue Apr 6 21:19:23 2004 UTC (10 years, 9 months ago) by rdm
Original Path: trunk/gui/src/TGLabel.cxx
File length: 10573 byte(s)
Diff to previous 7842
fix in font handling and force redraws when label attributes are changed.

Revision 7842 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Jan 5 17:44:09 2004 UTC (11 years ago) by rdm
Original Path: trunk/gui/src/TGLabel.cxx
File length: 10161 byte(s)
Diff to previous 7761
renamed IsOwnTextFont() to HasOwnFont() (Is makes no sense) and changed
Option_t argument in SetTextColor() and SetTextFont() to Bool_t.

Revision 7761 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Dec 15 18:04:27 2003 UTC (11 years, 1 month ago) by brun
Original Path: trunk/gui/src/TGLabel.cxx
File length: 10039 byte(s)
Diff to previous 7755
From Ilka:

Better initialisation of variables ParGC and ParFont.

Revision 7755 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Dec 15 08:54:29 2003 UTC (11 years, 1 month ago) by brun
Original Path: trunk/gui/src/TGLabel.cxx
File length: 10078 byte(s)
Diff to previous 7520
From Valeriy Onuchin


- few improvements from my todo list:
   o TGButton, TGLabel
       SetTextColor, SetFont methods added.
       Font, color can be changed globally (for every frame of some type),
       or locally (for some particular frame) - default option
   o TGNumberEntry
       Accelerate the speed for changing numbers when button is
       permanently pressed
  o TGPicture (inspired by Ilka's  recent changes)
       for picture specified by file name mods added:
       pname = gSystem->ExpandPathName(gSystem->UnixPathName(pname.Data()));
  o TGResourcePool
       add current directory to the icon_path for WIN32GDK
  o  cosmetic changes in WorldMap.C example
        This tutorial is now working under win32gdk
  o TGWin32, TGWin32ProxyBase
       Anather try to fix a problem reported by Ed Oltman recently

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/src/TGLabel.cxx
File length: 7494 byte(s)
Diff to previous 6663
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 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/src/TGLabel.cxx
File length: 5547 byte(s)
Diff to previous 685
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 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/src/TGLabel.cxx
File length: 5250 byte(s)
Diff to previous 561
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 561 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Sep 4 17:53:14 2000 UTC (14 years, 4 months ago) by rdm
Original Path: trunk/gui/src/TGLabel.cxx
File length: 4953 byte(s)
Diff to previous 3
updated description of SetText().

Revision 3 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue May 16 17:00:58 2000 UTC (14 years, 8 months ago) by rdm
Original Path: trunk/gui/src/TGLabel.cxx
File length: 4823 byte(s)
Copied from: branches/rdm/gui/src/TGLabel.cxx revision 2
Diff to previous 2
This commit was generated by cvs2svn to compensate for changes in r2,
which included commits to RCS files with non-trunk default branches.

Revision 2 - (view) (download) (as text) (annotate) - [select for diffs]
Added Tue May 16 17:00:58 2000 UTC (14 years, 8 months ago) by rdm
Original Path: branches/rdm/gui/src/TGLabel.cxx
File length: 4823 byte(s)
Initial import of ROOT into CVS

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