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

Log of /trunk/gui/gui/inc/TGTextEditDialogs.h

Parent Directory Parent Directory


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

Revision 40451 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Aug 4 09:58:12 2011 UTC (3 years, 5 months ago) by bellenot
File length: 6204 byte(s)
Diff to previous 25499
Replace the "Printer" text entry by a combo box populated with the list of available printers, and select the default one, if any.

Revision 25499 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Sep 22 19:54:46 2008 UTC (6 years, 4 months ago) by bellenot
File length: 6171 byte(s)
Diff to previous 23115
- Allow to search substrings in TGCanvas subframe names. 
  This e.g. allows to search for partial branch names
  when browsing a tree with the browser. To search 
  substring, just put a star anywhere in the search 
  pattern, e.g. *Track or Track* will find all branches
  with name containing the string Track.
  This has been requested on the forum:
  http://root.cern.ch/phpBB2/viewtopic.php?t=7312

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: 6117 byte(s)
Copied from: trunk/gui/inc/TGTextEditDialogs.h 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/inc/TGTextEditDialogs.h
File length: 6117 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/inc/TGTextEditDialogs.h
File length: 6117 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/inc/TGTextEditDialogs.h
File length: 6178 byte(s)
Diff to previous 19702
remove :$ from tag line

Revision 19702 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Aug 27 14:59:20 2007 UTC (7 years, 4 months ago) by rdm
Original Path: trunk/gui/inc/TGTextEditDialogs.h
File length: 6188 byte(s)
Diff to previous 17374
don't access class static fgSearchDialog inline.

Revision 17374 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Jan 17 13:59:15 2007 UTC (8 years ago) by antcheva
Original Path: trunk/gui/inc/TGTextEditDialogs.h
File length: 6207 byte(s)
Diff to previous 12659
- typo in comments

Revision 12659 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Sep 5 14:26:43 2005 UTC (9 years, 4 months ago) by rdm
Original Path: trunk/gui/inc/TGTextEditDialogs.h
File length: 6207 byte(s)
Diff to previous 12644
From Ilka:
more GUI coding violation fixes.

Revision 12644 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Sep 5 07:33:37 2005 UTC (9 years, 4 months ago) by rdm
Original Path: trunk/gui/inc/TGTextEditDialogs.h
File length: 6203 byte(s)
Diff to previous 12247
From Ilka:
fixing of coding style violations.

Revision 12247 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue Jul 5 12:36:07 2005 UTC (9 years, 6 months ago) by brun
Original Path: trunk/gui/inc/TGTextEditDialogs.h
File length: 6202 byte(s)
Diff to previous 9945
From valeriy Onuchin:
- new class TImagePlugin is introduced;
 To add possibility to read/write new image format one needs to create
 a derived class and to override two methods:
   virtual unsigned char *ReadFile(const char *filename, UInt_t &w,UInt_t &h)
   virtual Bool_t WriteFile(const char *filename, unsigned char *argb,
                             UInt_t w, UInt_t  h)
   ... and to specify it in the root resource file:

Plugin.TImagePlugin:  ps    TASPluginGS   ASPluginGS   "TASPluginGS(const char*)"
the name of plugin    file extension      DLL containing an implementation of
TImagePlugin subclass

- new class TASImagePlugin that is a subclass of TImagePlugin with ASImage
specific implementations;

- new class TASPluginGS - an image plugin class that allows to create images from
PS/EPS/PDF files and to display them in TCanvas/TPad. In addition, it allows to
browse PS/EPS/PDF files with the ROOT browser.

New files:
asimage/inc/LinkDefGS.h
asimage/inc/TASImagePlugin.h
asimage/inc/TASPluginGS.h
asimage/src/TASPluginGS.cxx

graf/inc/TImagePlugin.h

icons/pdf.xpm
icons/tb_find.xpm

libAfterImage.tar.gz

- TROOT.h
    o new data member fClipboard and corresponding getter GetClipboard();
      TSeqCollection  *fClipboard;           //List of clipboard objects;

- TGFrame
    o embedded frames resized correctly now.

- TGCanvas
    o several useful methods made public

- TGListBox, TGComboBox
    o new method FindEntry(const char *s) added which returns entry by name

- TGMdiMainFrame, TGMdiDecorFrame
    o fix bug which changed text color globally
    o add displaying scroll bars when mdi frame is moved out of mdi
      canvas viewport

- TGTextEdit/TGView, guitest
   o added processing of:
     2-clicks - selects a word
     3-clicks - selects a line
     4-clicks - selects the whole text
   o change  the key handling
     Ctrl-F - invokes Search dialog
     Ctrl-L - invokes Goto line dialog
     Correspondent changes  added to guitest.C and guitest.cxx (TextEdit test)
   o readonly mode added

- TGSearchDialog
   o Text entry was replaced by "text entry" combobox. It allows to
     "remember" a history of entered search strings.
   o new static method TGSearchDialog *&gDialog() introduced. It returns
     a global search dialog.
   o Search method - display warning message box when object is not found

- TRootBrowser, mime.types
   o  possibility to browse PS/EPS/PDF fies added
   o possibility to browse text files added. The content of text file
     appears in "icon box" window (a la netscape)
   o "Search" tool bar button added. It activates the "search dialog" for
     searching a specified icon or text when a text file is browsed.

- TGuiBldEditor.
  o fix bug which changed text color globally

Revision 9945 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Sep 8 08:13:11 2004 UTC (10 years, 4 months ago) by brun
Original Path: trunk/gui/inc/TGTextEditDialogs.h
File length: 5707 byte(s)
Diff to previous 1884
From Valeriy Onuchin:
- provide default constructors for most TGxxx classes.
  The goal:
    1.  required for  guibuilder
     2. providing  ROOT I/O for GUI classes.
  In all default constructors parent window is NULL,
  that means that parent window is currently editted window.

Revision 1884 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue Apr 3 10:36:21 2001 UTC (13 years, 9 months ago) by rdm
Original Path: trunk/gui/inc/TGTextEditDialogs.h
File length: 5635 byte(s)
Diff to previous 374
set correct frame type (either kMainFrame, kTransientFrame or kTempFrame).
Needed for Win32 port of GUI.

Revision 374 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Jul 13 15:09:39 2000 UTC (14 years, 6 months ago) by rdm
Original Path: trunk/gui/inc/TGTextEditDialogs.h
File length: 5674 byte(s)
Diff to previous 348
fix linking error on Win32. A struct seems to have different export
semantics that a class with all members public.

Revision 348 - (view) (download) (as text) (annotate) - [select for diffs]
Added Tue Jul 11 09:26:38 2000 UTC (14 years, 6 months ago) by rdm
Original Path: trunk/gui/inc/TGTextEditDialogs.h
File length: 5608 byte(s)
files containing utility dialogs used by the text edit widget. There are
TGSearchDialog, TGPrintDialog and TGGotoDialog. The TGPrintDialog could
be used in several other places too.

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