/usr/include/root/TControlBarButton.h is in libroot-graf2d-gpad-dev 5.34.19+dfsg-1.2.
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 | // @(#)root/gpad:$Id$
// Author: Nenad Buncic 20/02/96
/*************************************************************************
* 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_TControlBarButton
#define ROOT_TControlBarButton
////////////////////////////////////////////////////////////////////////////////
// //
// TControlBarButton //
// //
// This class defines the control bar buttons. //
// //
// //
// //
////////////////////////////////////////////////////////////////////////////////
#ifndef ROOT_Rtypes
#include "Rtypes.h"
#endif
#ifndef ROOT_TNamed
#include "TNamed.h"
#endif
class TControlBarButton : public TNamed {
protected:
Int_t fType; //button type
TString fAction; //action to be executed
public:
enum { kButton = 1, kDrawnButton, kSeparator };
TControlBarButton();
TControlBarButton(const char *label, const char *action="", const char *hint="", const char *type="button");
virtual ~TControlBarButton() { }
virtual void Create() { }
virtual void Action();
virtual const char *GetAction() const { return fAction.Data(); }
virtual Int_t GetType() const { return fType; }
virtual void SetAction(const char *action);
virtual void SetType(const char *type);
virtual void SetType(Int_t type);
ClassDef(TControlBarButton,0) //The Control bar button
};
#endif
|