/usr/include/root/TRootDialog.h is in libroot-gui-dev 5.34.14-1build1.
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 | // @(#)root/gui:$Id$
// Author: Fons Rademakers 20/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_TRootDialog
#define ROOT_TRootDialog
//////////////////////////////////////////////////////////////////////////
// //
// TRootDialog //
// //
// A TRootDialog is used to prompt for the arguments of an object's //
// member function. A TRootDialog is created via the context menu's //
// when selecting a member function taking arguments. //
// //
//////////////////////////////////////////////////////////////////////////
#ifndef ROOT_TGFrame
#include "TGFrame.h"
#endif
class TRootContextMenu;
class TRootDialog : public TGTransientFrame {
private:
TRootContextMenu *fMenu; // associated context menu
TGLayoutHints *fL1; // label layout
TGLayoutHints *fL2; // text entry layout
TList *fWidgets; // label and text field widgets created in dialog
Bool_t fOk; // if true show OK button
Bool_t fCancel; // if true show Cancel button
Bool_t fApply; // if true show Apply button
Bool_t fHelp; // if true show Online Help button
public:
TRootDialog(TRootContextMenu *cmenu = 0, const TGWindow *main = 0,
const char *title = "ROOT Dialog", Bool_t okB = kTRUE,
Bool_t cancelB = kTRUE, Bool_t applyB = kFALSE,
Bool_t helpB = kTRUE);
virtual ~TRootDialog();
virtual void Add(const char *argname, const char *value, const char *type);
//virtual void Add(TGComboBox *optionSel);
virtual const char *GetParameters();
virtual void CloseWindow();
virtual void Popup();
virtual Bool_t HandleKey(Event_t *event);
void TabPressed();
ClassDef(TRootDialog,0) //Native GUI method argument prompt dialog box
};
#endif
|