Logo ROOT   6.16/01
Reference Guide
TRootBrowserLite.h
Go to the documentation of this file.
1// @(#)root/gui:$Id$
2// Author: Fons Rademakers 27/02/98
3
4/*************************************************************************
5 * Copyright (C) 1995-2000, Rene Brun and Fons Rademakers. *
6 * All rights reserved. *
7 * *
8 * For the licensing terms see $ROOTSYS/LICENSE. *
9 * For the list of contributors see $ROOTSYS/README/CREDITS. *
10 *************************************************************************/
11
12
13#ifndef ROOT_TRootBrowserLite
14#define ROOT_TRootBrowserLite
15
16//////////////////////////////////////////////////////////////////////////
17// //
18// TRootBrowserLite //
19// //
20// This class creates a ROOT object browser (looking like Windows //
21// Explorer). The widgets used are the new native ROOT GUI widgets. //
22// //
23//////////////////////////////////////////////////////////////////////////
24
25#include "TBrowserImp.h"
26#include "TGFrame.h"
27
28class TGMenuBar;
29class TGPopupMenu;
30class TGLayoutHints;
31class TGStatusBar;
33class TGToolBar;
34class TGButton;
35class TGFSComboBox;
36class TGLabel;
37class TGListView;
38class TRootIconBox;
39class TGCanvas;
40class TGListTree;
41class TGListTreeItem;
42class TGFileItem;
43class TList;
44class TGFileContainer;
45class TGComboBox;
46class TGTextEdit;
47
49
50friend class TRootIconBox;
51
52private:
63
69 TGComboBox *fDrawOption; // drawing option entry
73
75 TList *fHistory; // history of browsing
76 TObject *fHistoryCursor; // current hsitory position
77 const TGPicture *fIconPic; // icon picture
78
79 void CreateBrowser(const char *name);
82 void HighlightListLevel();
83 void AddToHistory(TGListTreeItem *item);
84 void IconBoxAction(TObject *obj);
85 void Chdir(TGListTreeItem *item);
86 void DisplayDirectory();
87 void DisplayTotal(Int_t total, Int_t selected);
88 void SetViewMode(Int_t new_mode, Bool_t force = kFALSE);
89 void ToSystemDirectory(const char *dirname);
90 void UpdateDrawOption();
91 void Search();
92 void BrowseTextFile(const char *file);
93 void HideTextEdit();
94 void ShowMacroButtons(Bool_t show = kTRUE);
95
98 void ClearHistory();
99
100protected:
110 TGButton *fToolBarButton[7]; // same size as gToolBarData[]
113 TGListTreeItem *fListLevel; // current TGListTree level
114 Bool_t fTreeLock; // true when we want to lock TGListTree
115 Int_t fViewMode; // current IconBox view mode
116 Int_t fSortMode; // current IconBox sort mode
117 TGTextEdit *fTextEdit; // contents of browsed text file
118
119public:
120 TRootBrowserLite(TBrowser *b = 0, const char *title = "ROOT Browser", UInt_t width = 800, UInt_t height = 500);
121 TRootBrowserLite(TBrowser *b, const char *title, Int_t x, Int_t y, UInt_t width, UInt_t height);
122 virtual ~TRootBrowserLite();
123
124 virtual void Add(TObject *obj, const char *name = 0, Int_t check = -1);
125 virtual void AddToBox(TObject *obj, const char *name);
126 virtual void AddToTree(TObject *obj, const char *name, Int_t check = -1);
127
128 virtual void AddCheckBox(TObject *obj, Bool_t check = kFALSE);
129 virtual void CheckObjectItem(TObject *obj, Bool_t check = kFALSE);
130 virtual void RemoveCheckBox(TObject *obj);
131
132 virtual void BrowseObj(TObject *obj); //*SIGNAL*
133 virtual void ExecuteDefaultAction(TObject *obj); //*SIGNAL*
134 virtual void DoubleClicked(TObject *obj); //*SIGNAL*
135 virtual void Checked(TObject *obj, Bool_t check); //*SIGNAL*
136 virtual void CloseTabs() { }
137 virtual void Iconify() { }
138 virtual void RecursiveRemove(TObject *obj);
139 virtual void Refresh(Bool_t force = kFALSE);
140 virtual void ResizeBrowser() { }
141 virtual void ShowToolBar(Bool_t show = kTRUE);
142 virtual void ShowStatusBar(Bool_t show = kTRUE);
143 virtual void Show() { MapRaised(); }
144 virtual void SetDefaults(const char *iconStyle = 0, const char *sortBy = 0);
145 virtual Bool_t HandleKey(Event_t *event);
146 virtual void SetStatusText(const char *txt, Int_t col);
147
148 TGListTree *GetListTree() const { return fLt; }
151 TGMenuBar *GetMenuBar() const { return fMenuBar; }
152 TGToolBar *GetToolBar() const { return fToolBar; }
153 void SetDrawOption(Option_t *option="");
154 Option_t *GetDrawOption() const;
155 void SetSortMode(Int_t new_mode);
156 TGMainFrame *GetMainFrame() const { return (TGMainFrame *)this; }
157
158 // overridden from TGMainFrame
159 void CloseWindow();
160 Bool_t ProcessMessage(Long_t msg, Long_t parm1, Long_t parm2);
161 void ReallyDelete();
162
163 // auxilary (a la privae) methods
164 void ExecMacro();
165 void InterruptMacro();
166
167 static TBrowserImp *NewBrowser(TBrowser *b = 0, const char *title = "ROOT Browser", UInt_t width = 800, UInt_t height = 500, Option_t *opt="");
168 static TBrowserImp *NewBrowser(TBrowser *b, const char *title, Int_t x, Int_t y, UInt_t width, UInt_t height, Option_t *opt="");
169
170 ClassDef(TRootBrowserLite,0) //ROOT native GUI version of browser
171};
172
173#endif
#define b(i)
Definition: RSha256.hxx:100
int Int_t
Definition: RtypesCore.h:41
unsigned int UInt_t
Definition: RtypesCore.h:42
const Bool_t kFALSE
Definition: RtypesCore.h:88
long Long_t
Definition: RtypesCore.h:50
bool Bool_t
Definition: RtypesCore.h:59
const Bool_t kTRUE
Definition: RtypesCore.h:87
const char Option_t
Definition: RtypesCore.h:62
#define ClassDef(name, id)
Definition: Rtypes.h:324
include TDocParser_001 C image html pict1_TDocParser_001 png width
Definition: TDocParser.cxx:121
static unsigned int total
ABC describing GUI independent browser implementation protocol.
Definition: TBrowserImp.h:29
Using a TBrowser one can browse all ROOT objects.
Definition: TBrowser.h:37
virtual void MapRaised()
Definition: TGFrame.h:252
A doubly linked list.
Definition: TList.h:44
Mother of all ROOT objects.
Definition: TObject.h:37
TGMenuBar * GetMenuBar() const
TGCompositeFrame * fTreeHdr
virtual void Add(TObject *obj, const char *name=0, Int_t check=-1)
Add items to the browser.
TGPopupMenu * fOptionMenu
TGToolBar * fToolBar
friend class TRootIconBox
Bool_t HistoryBackward()
go to the past
void SetViewMode(Int_t new_mode, Bool_t force=kFALSE)
Set iconbox's view mode and update menu and toolbar buttons accordingly.
virtual void CloseTabs()
TGLayoutHints * fMenuBarHelpLayout
void ListTreeHighlight(TGListTreeItem *item)
Open tree item and list in iconbox its contents.
virtual void ExecuteDefaultAction(TObject *obj)
Execute default action for selected object (action is specified in the $HOME/.root....
virtual void ResizeBrowser()
TGFileContainer * GetIconBox() const
returns pointer to fIconBox object
virtual void Iconify()
virtual void Show()
void SetSortMode(Int_t new_mode)
Set iconbox's sort mode and update menu radio buttons accordingly.
TGButton * fToolBarButton[7]
void ClearHistory()
clear navigation history
TGListTreeItem * fListLevel
TGLayoutHints * fExpandLayout
TGPopupMenu * fFileMenu
void SetDrawOption(Option_t *option="")
sets drawing option
TGPopupMenu * fSortMenu
void BrowseTextFile(const char *file)
browse text file
virtual void DoubleClicked(TObject *obj)
Emits signal when double clicking on icon.
TGLayoutHints * fComboLayout
void Chdir(TGListTreeItem *item)
Make object associated with item the current directory.
void CloseWindow()
In case window is closed via WM we get here.
void ExecMacro()
executed browsed text macro
TGComboBox * fDrawOption
Bool_t ProcessMessage(Long_t msg, Long_t parm1, Long_t parm2)
Handle menu and other command generated by the user.
virtual void ShowToolBar(Bool_t show=kTRUE)
Show or hide toolbar.
Option_t * GetDrawOption() const
returns drawing option
void HighlightListLevel()
helper method to track history
Bool_t HistoryForward()
go to the future
TGLayoutHints * fMenuBarLayout
virtual void Refresh(Bool_t force=kFALSE)
Refresh the browser contents.
static TBrowserImp * NewBrowser(TBrowser *b=0, const char *title="ROOT Browser", UInt_t width=800, UInt_t height=500, Option_t *opt="")
Interface method to the old browser.
virtual void AddToTree(TObject *obj, const char *name, Int_t check=-1)
Add items to the current TGListTree of the browser.
TRootIconBox * fIconBox
const TGPicture * fIconPic
void AddToHistory(TGListTreeItem *item)
helper method to track history
virtual void AddCheckBox(TObject *obj, Bool_t check=kFALSE)
Add a checkbox in the TGListTreeItem corresponding to obj and a checkmark on TGLVEntry if check = kTR...
TGLayoutHints * fBarLayout
TGListTree * GetListTree() const
TGHorizontalFrame * fHf
TGMenuBar * fMenuBar
virtual void Checked(TObject *obj, Bool_t check)
Emits signal when double clicking on icon.
TGMainFrame * GetMainFrame() const
TRootBrowserLite(TBrowser *b=0, const char *title="ROOT Browser", UInt_t width=800, UInt_t height=500)
Create browser with a specified width and height.
void DisplayTotal(Int_t total, Int_t selected)
Display in statusbar total number of objects and number of selected objects in IconBox.
TGVerticalFrame * fV1
void IconBoxAction(TObject *obj)
Default action when double clicking on icon.
TGLayoutHints * fMenuBarItemLayout
void HideTextEdit()
hide text edit
TGStatusBar * GetStatusBar() const
TGVerticalFrame * fV2
void DisplayDirectory()
Display current directory in second label, fLbl2.
virtual void RecursiveRemove(TObject *obj)
Recursively remove object from browser.
void ShowMacroButtons(Bool_t show=kTRUE)
show/hide macro buttons
virtual void AddToBox(TObject *obj, const char *name)
Add items to the iconbox of the browser.
virtual void ShowStatusBar(Bool_t show=kTRUE)
Show or hide statusbar.
TGToolBar * GetToolBar() const
void Search()
starts serach dialog
void ReallyDelete()
Really delete the browser and the this GUI.
TGPopupMenu * fHelpMenu
virtual void CheckObjectItem(TObject *obj, Bool_t check=kFALSE)
Check / uncheck the TGListTreeItem corresponding to this object and add a checkmark on TGLVEntry if c...
virtual void BrowseObj(TObject *obj)
Browse object.
TGListView * fListView
TObject * fHistoryCursor
TGFSComboBox * fFSComboBox
virtual void SetStatusText(const char *txt, Int_t col)
Set text in column col in status bar.
virtual Bool_t HandleKey(Event_t *event)
handle keys
void InterruptMacro()
interrupt browsed macro execution
virtual void RemoveCheckBox(TObject *obj)
Remove checkbox from TGListTree and checkmark from TGListView.
virtual ~TRootBrowserLite()
Browser destructor.
virtual void SetDefaults(const char *iconStyle=0, const char *sortBy=0)
Set defaults depending on settings in the user's .rootrc.
TGCompositeFrame * fListHdr
void UpdateDrawOption()
add new draw option to the "history"
TGTextEdit * fTextEdit
TGStatusBar * fStatusBar
void CreateBrowser(const char *name)
Create the actual browser.
void ToSystemDirectory(const char *dirname)
display directory
TGPopupMenu * fViewMenu
void DeleteListTreeItem(TGListTreeItem *item)
delete list tree item, remove it from history
TGHorizontal3DLine * fToolBarSep
Basic string class.
Definition: TString.h:131
Double_t y[n]
Definition: legend1.C:17
Double_t x[n]
Definition: legend1.C:17
Definition: file.py:1