[root] / trunk / core / base / src / TGuiFactory.cxx Repository:
ViewVC logotype

Log of /trunk/core/base/src/TGuiFactory.cxx

Parent Directory Parent Directory


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

Revision 34286 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Jul 1 20:38:57 2010 UTC (4 years, 6 months ago) by rdm
File length: 4666 byte(s)
Diff to previous 22961
fix format errors related to TString::Form(), TString::Format(), Form()
and Printf().

Revision 22961 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Apr 3 13:32:57 2008 UTC (6 years, 9 months ago) by rdm
File length: 4657 byte(s)
Diff to previous 21231
move the directories:
  base clib cont meta metautils newdelete pcre rint thread unix utils
  winnt zip
under the new core meta directory.

Revision 21231 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Dec 6 15:22:14 2007 UTC (7 years, 1 month ago) by rdm
Original Path: trunk/base/src/TGuiFactory.cxx
File length: 4657 byte(s)
Diff to previous 20877
change all occurances where %x is used to format a pointer to %lx.

Revision 20877 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Nov 19 11:17:07 2007 UTC (7 years, 2 months ago) by rdm
Original Path: trunk/base/src/TGuiFactory.cxx
File length: 4657 byte(s)
Diff to previous 20630
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 20630 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Fri Nov 2 19:36:55 2007 UTC (7 years, 2 months ago) by brun
Original Path: trunk/base/src/TGuiFactory.cxx
File length: 4657 byte(s)
Diff to previous 20516
From Gerri:
Fix compiler warnings on Linux.

Revision 20516 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Fri Oct 26 16:17:33 2007 UTC (7 years, 3 months ago) by rdm
Original Path: trunk/base/src/TGuiFactory.cxx
File length: 4663 byte(s)
Diff to previous 19826
From Bertrand:
merged bertrand dev branch changes r20120:20514 into the trunk.

Main new feature is the new TBrowser. To turn it on by default
change the Browser.Name option in rootrc.

Here the detailed ChangeLog:

- Renamed TRootBrowser TRootBrowserLite
 - Introduced the new class TRootBrowser, consisting of three 
   main tabs, as shown below:
    ______________
   |   |          |
   |   |          |
   |   |__________|
   |   |          |
   |___|__________|
   
   All tabs can 'swallow' frames, thanks to the new method:
      ExecPlugin(const char *name = 0, const char *fname = 0, 
                 const char *cmd = 0, Int_t pos = kRight, 
                 Int_t subpos = -1)
   allowing to select plugins (can be a macro or a command) 
   to be executed, and where to embed the frame created by 
   the plugin. Examples:

   // create a new browser:
   TBrowser b;

   // create a new TCanvas in a new top right tab element:
   b.ExecPlugin("Canvas", 0, "new TCanvas()");
   
   // creates a new top right tab element embedding the 
   // TGMainFrame created by the macro 'myMacro.C': 
   b.ExecPlugin("MyPlugin", "myMacro.C");
 
   // creates a new bottom tab element embedding the 
   // TGMainFrame created by the macro 'myMacro.C': 
   b.ExecPlugin("MyPlugin", "myMacro.C", 0, TRootBrowser::kBottom);
 
 - new class TGFileBrowser, a file browser plugin for the new TRootBrowser
 - new class TGCommandPlugin, a command I/O plugin for the new TRootBrowser
 - new class TGHtmlBrowser, a html browser plugin for the new TRootBrowser
 - new TBrowserImp plugin used to load the selected TBrowser implementation
 - the browser implementation can be selected via the env 'Browser.Name' in
   .rootrc, (can be TRootBrowser or TRootBrowserLite) the default being
   TRootBrowserLite
 - a list of options (plugins) for the new TRootBrowser is also specified
   via the env 'Browser.Options' in .rootrc, default being: FEHCI
   Here is the list of available options:
   F: File browser E: Text Editor H: HTML browser C: Canvas I: I/O
   redirection P: Proof G: GL viewer
 - modified TRootGuiFactory, used to create the real TBrowser
   implementation.

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/base/src/TGuiFactory.cxx
File length: 4633 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/base/src/TGuiFactory.cxx
File length: 4688 byte(s)
Diff to previous 16906
remove :$ from tag line

Revision 16906 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Fri Nov 24 10:05:56 2006 UTC (8 years, 2 months ago) by brun
Original Path: trunk/base/src/TGuiFactory.cxx
File length: 4698 byte(s)
Diff to previous 13258
Remove dependency on TVirtualUtilPad

Revision 13258 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Nov 16 20:11:59 2005 UTC (9 years, 2 months ago) by pcanal
Original Path: trunk/base/src/TGuiFactory.cxx
File length: 5174 byte(s)
Diff to previous 5302
White spaces and comments update

Revision 5302 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Sun Sep 15 19:48:00 2002 UTC (12 years, 4 months ago) by brun
Original Path: trunk/base/src/TGuiFactory.cxx
File length: 5177 byte(s)
Diff to previous 5243
Use the plugin manager and the new interface TVirtualUtilPad instead
of hardwired calls to the interpreter.

Revision 5243 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Sep 9 20:13:12 2002 UTC (12 years, 4 months ago) by brun
Original Path: trunk/base/src/TGuiFactory.cxx
File length: 4709 byte(s)
Diff to previous 2938
Move files TWin32Semaphore.h, TWin32Application.h fro wwin32/inc to winnt/inc
Move win32/src/TWin32Application.cxx to winnt/src.
These files are now in common for all Windows Root implementation (win32, win32gdk and Qt)
The special cases for Windows have been eliminated from TObject::Inspect.

The TGuiFactory::CreateInspectorImp hs been modified accordingly.

Revision 2938 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue Oct 2 09:07:43 2001 UTC (13 years, 3 months ago) by rdm
Original Path: trunk/base/src/TGuiFactory.cxx
File length: 4551 byte(s)
Diff to previous 3
remove references to unused arguments "options" and "numOptions". Left
over from a distant Motif time.

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/base/src/TGuiFactory.cxx
File length: 4546 byte(s)
Copied from: branches/rdm/base/src/TGuiFactory.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/base/src/TGuiFactory.cxx
File length: 4546 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