/usr/include/root/TGInputDialog.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 | // @(#)root/gui:$Id$
// Author: David Gonzalez Maline 19/07/2006
/*************************************************************************
* 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_TGInputDialog
#define ROOT_TGInputDialog
///////////////////////////////////////////////////////////////////////////
// //
// Input Dialog Widget //
// //
// An Input dialog box //
// //
///////////////////////////////////////////////////////////////////////////
#ifndef ROOT_TGFrame
#include "TGFrame.h"
#endif
class TGLabel;
class TGTextEntry;
class TGTextButton;
class TGInputDialog : public TGTransientFrame {
private:
TGLabel *fLabel; // text entry label
TGTextEntry *fTE; // text entry widget
TGTextButton *fOk; // ok button
TGTextButton *fCancel; // cancel button
char *fRetStr; // address to store return string
TGInputDialog(const TGInputDialog&); // Not implemented
TGInputDialog &operator= (const TGInputDialog&); // Not implemented
public:
TGInputDialog(const TGWindow *p = 0, const TGWindow *main = 0,
const char *prompt =0, const char *defval = 0,
char *retstr = 0, UInt_t options = kVerticalFrame);
~TGInputDialog();
virtual Bool_t ProcessMessage(Long_t msg, Long_t parm1, Long_t);
ClassDef(TGInputDialog, 0) // Simple input dialog
};
#endif
|