/usr/include/root/TRootBrowserLite.h is in libroot-gui-dev 5.34.30-0ubuntu8.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 | // @(#)root/gui:$Id$
// Author: Fons Rademakers 27/02/98
/*************************************************************************
* Copyright (C) 1995-2000, Rene Brun and Fons Rademakers. *
* All rights reserved. *
* *
* For the licensing terms see $ROOTSYS/LICENSE. *
* For the list of contributors see $ROOTSYS/README/CREDITS. *
*************************************************************************/
#ifndef ROOT_TRootBrowserLite
#define ROOT_TRootBrowserLite
//////////////////////////////////////////////////////////////////////////
// //
// TRootBrowserLite //
// //
// This class creates a ROOT object browser (looking like Windows //
// Explorer). The widgets used are the new native ROOT GUI widgets. //
// //
//////////////////////////////////////////////////////////////////////////
#ifndef ROOT_TBrowserImp
#include "TBrowserImp.h"
#endif
#ifndef ROOT_TGFrame
#include "TGFrame.h"
#endif
class TGMenuBar;
class TGPopupMenu;
class TGLayoutHints;
class TGStatusBar;
class TGHorizontal3DLine;
class TGToolBar;
class TGButton;
class TGFSComboBox;
class TGLabel;
class TGListView;
class TRootIconBox;
class TGCanvas;
class TGListTree;
class TGListTreeItem;
class TGFileItem;
class TList;
class TGFileContainer;
class TGComboBox;
class TGTextEdit;
class TRootBrowserLite : public TGMainFrame, public TBrowserImp {
friend class TRootIconBox;
private:
TGMenuBar *fMenuBar;
TGToolBar *fToolBar;
TGHorizontal3DLine *fToolBarSep;
TGVerticalFrame *fV1;
TGVerticalFrame *fV2;
TGLabel *fLbl1;
TGLabel *fLbl2;
TGHorizontalFrame *fHf;
TGCompositeFrame *fTreeHdr;
TGCompositeFrame *fListHdr;
TGLayoutHints *fMenuBarLayout;
TGLayoutHints *fMenuBarItemLayout;
TGLayoutHints *fMenuBarHelpLayout;
TGLayoutHints *fComboLayout;
TGLayoutHints *fBarLayout;
TGComboBox *fDrawOption; // drawing option entry
TGLayoutHints *fExpandLayout; //
Bool_t fBrowseTextFile; //
TString fTextFileName;
TList *fWidgets;
TList *fHistory; // history of browsing
TObject *fHistoryCursor; // current hsitory position
const TGPicture *fIconPic; // icon picture
void CreateBrowser(const char *name);
void ListTreeHighlight(TGListTreeItem *item);
void DeleteListTreeItem(TGListTreeItem *item);
void HighlightListLevel();
void AddToHistory(TGListTreeItem *item);
void IconBoxAction(TObject *obj);
void Chdir(TGListTreeItem *item);
void DisplayDirectory();
void DisplayTotal(Int_t total, Int_t selected);
void SetViewMode(Int_t new_mode, Bool_t force = kFALSE);
void ToSystemDirectory(const char *dirname);
void UpdateDrawOption();
void Search();
void BrowseTextFile(const char *file);
void HideTextEdit();
void ShowMacroButtons(Bool_t show = kTRUE);
Bool_t HistoryBackward();
Bool_t HistoryForward();
void ClearHistory();
protected:
TGPopupMenu *fFileMenu;
TGPopupMenu *fViewMenu;
TGPopupMenu *fOptionMenu;
TGPopupMenu *fHelpMenu;
TGPopupMenu *fSortMenu;
TGListView *fListView;
TRootIconBox *fIconBox;
TGCanvas *fTreeView;
TGListTree *fLt;
TGButton *fToolBarButton[7]; // same size as gToolBarData[]
TGFSComboBox *fFSComboBox;
TGStatusBar *fStatusBar;
TGListTreeItem *fListLevel; // current TGListTree level
Bool_t fTreeLock; // true when we want to lock TGListTree
Int_t fViewMode; // current IconBox view mode
Int_t fSortMode; // current IconBox sort mode
TGTextEdit *fTextEdit; // contents of browsed text file
public:
TRootBrowserLite(TBrowser *b = 0, const char *title = "ROOT Browser", UInt_t width = 800, UInt_t height = 500);
TRootBrowserLite(TBrowser *b, const char *title, Int_t x, Int_t y, UInt_t width, UInt_t height);
virtual ~TRootBrowserLite();
virtual void Add(TObject *obj, const char *name = 0, Int_t check = -1);
virtual void AddToBox(TObject *obj, const char *name);
virtual void AddToTree(TObject *obj, const char *name, Int_t check = -1);
virtual void AddCheckBox(TObject *obj, Bool_t check = kFALSE);
virtual void CheckObjectItem(TObject *obj, Bool_t check = kFALSE);
virtual void RemoveCheckBox(TObject *obj);
virtual void BrowseObj(TObject *obj); //*SIGNAL*
virtual void ExecuteDefaultAction(TObject *obj); //*SIGNAL*
virtual void DoubleClicked(TObject *obj); //*SIGNAL*
virtual void Checked(TObject *obj, Bool_t check); //*SIGNAL*
virtual void CloseTabs() { }
virtual void Iconify() { }
virtual void RecursiveRemove(TObject *obj);
virtual void Refresh(Bool_t force = kFALSE);
virtual void ResizeBrowser() { }
virtual void ShowToolBar(Bool_t show = kTRUE);
virtual void ShowStatusBar(Bool_t show = kTRUE);
virtual void Show() { MapRaised(); }
virtual void SetDefaults(const char *iconStyle = 0, const char *sortBy = 0);
virtual Bool_t HandleKey(Event_t *event);
virtual void SetStatusText(const char *txt, Int_t col);
TGListTree *GetListTree() const { return fLt; }
TGFileContainer *GetIconBox() const;
TGStatusBar *GetStatusBar() const { return fStatusBar; }
TGMenuBar *GetMenuBar() const { return fMenuBar; }
TGToolBar *GetToolBar() const { return fToolBar; }
void SetDrawOption(Option_t *option="");
Option_t *GetDrawOption() const;
void SetSortMode(Int_t new_mode);
TGMainFrame *GetMainFrame() const { return (TGMainFrame *)this; }
// overridden from TGMainFrame
void CloseWindow();
Bool_t ProcessMessage(Long_t msg, Long_t parm1, Long_t parm2);
void ReallyDelete();
// auxilary (a la privae) methods
void ExecMacro();
void InterruptMacro();
static TBrowserImp *NewBrowser(TBrowser *b = 0, const char *title = "ROOT Browser", UInt_t width = 800, UInt_t height = 500, Option_t *opt="");
static TBrowserImp *NewBrowser(TBrowser *b, const char *title, Int_t x, Int_t y, UInt_t width, UInt_t height, Option_t *opt="");
ClassDef(TRootBrowserLite,0) //ROOT native GUI version of browser
};
#endif
|