/usr/include/root/TGShutter.h is in libroot-gui-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 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 | // @(#)root/gui:$Id$
// Author: Fons Rademakers 18/9/2000
/*************************************************************************
* 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_TGShutter
#define ROOT_TGShutter
//////////////////////////////////////////////////////////////////////////
// //
// TGShutter, TGShutterItem //
// //
// A shutter widget contains a set of shutter items that can be //
// open and closed like a shutter. //
// This widget is usefull to group a large number of options in //
// a number of categories. //
// //
//////////////////////////////////////////////////////////////////////////
#ifndef ROOT_TGFrame
#include "TGFrame.h"
#endif
#ifndef ROOT_TGCanvas
#include "TGCanvas.h"
#endif
#ifndef ROOT_TGWidget
#include "TGWidget.h"
#endif
class TGButton;
class TGCanvas;
class TTimer;
class TList;
class TGShutterItem : public TGVerticalFrame, public TGWidget {
friend class TGShutter;
protected:
TGButton *fButton; // shutter item button
TGCanvas *fCanvas; // canvas of shutter item
TGFrame *fContainer; // container in canvas containing shutter items
TGLayoutHints *fL1, *fL2; // positioning hints
private:
TGShutterItem(const TGShutterItem&); // not implemented
TGShutterItem& operator=(const TGShutterItem&); // not implemented
public:
TGShutterItem(const TGWindow *p = 0, TGHotString *s = 0, Int_t id = -1,
UInt_t options = 0);
virtual ~TGShutterItem();
TGButton *GetButton() const { return fButton; }
TGFrame *GetContainer() const { return fCanvas->GetContainer(); }
virtual void Selected() { Emit(" Selected()"); } //*SIGNAL*
virtual void SavePrimitive(ostream &out, Option_t *option = "");
ClassDef(TGShutterItem,0) // Shutter widget item
};
class TGShutter : public TGCompositeFrame {
protected:
TTimer *fTimer; // Timer for animation
TGShutterItem *fSelectedItem; // Item currently open
TGShutterItem *fClosingItem; // Item closing down
TList *fTrash; // Items that need to be cleaned up
Int_t fHeightIncrement; // Height delta
Int_t fClosingHeight; // Closing items current height
Int_t fClosingHadScrollbar; // Closing item had a scroll bar
UInt_t fDefWidth; // Default width
UInt_t fDefHeight; // Default height
private:
TGShutter(const TGShutter&); // not implemented
TGShutter& operator=(const TGShutter&); // not implemented
public:
TGShutter(const TGWindow *p = 0, UInt_t options = kSunkenFrame);
virtual ~TGShutter();
virtual void AddItem(TGShutterItem *item);
virtual void RemoveItem(const char *name);
virtual TGShutterItem *AddPage(const char *item = "Page"); //*MENU*
virtual void RemovePage(); //*MENU*
virtual void RenamePage(const char *name); //*MENU*
virtual Bool_t HandleTimer(TTimer *t);
virtual void Layout();
virtual void SetLayoutManager(TGLayoutManager*) { }
TGShutterItem *GetSelectedItem() const { return fSelectedItem; }
TGShutterItem *GetItem(const char *name);
virtual void SetSelectedItem(TGShutterItem *item);
virtual void SetSelectedItem(const char *name);
virtual void EnableItem(const char *name, Bool_t on = kTRUE);
virtual TGDimension GetDefaultSize() const;
virtual void SetDefaultSize(UInt_t w, UInt_t h);
virtual void SavePrimitive(ostream &out, Option_t *option = "");
virtual Bool_t ProcessMessage(Long_t cmd, Long_t parm1, Long_t parm2);
virtual void Selected(TGShutterItem *item) { Emit(" Selected(TGShutterItem*)", item); } //*SIGNAL*
ClassDef(TGShutter,0) // Shutter widget
};
#endif
|