Back to home page

EIC code displayed by LXR

 
 

    


Warning, file /include/root/TGuiBldHintsButton.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 // @(#)root/guibuilder:$Id$
0002 // Author: Valeriy Onuchin   12/09/04
0003 
0004 /*************************************************************************
0005  * Copyright (C) 1995-2004, Rene Brun and Fons Rademakers.               *
0006  * All rights reserved.                                                  *
0007  *                                                                       *
0008  * For the licensing terms see $ROOTSYS/LICENSE.                         *
0009  * For the list of contributors see $ROOTSYS/README/CREDITS.             *
0010  *************************************************************************/
0011 
0012 #ifndef ROOT_TGuiBldHintsButton
0013 #define ROOT_TGuiBldHintsButton
0014 
0015 
0016 #include "TGButton.h"
0017 
0018 
0019 //////////////////////////////////////////////////////////////////////////
0020 class TGuiBldHintsButton : public TGButton {
0021 
0022 protected:
0023    virtual void DrawExpandX();
0024    virtual void DrawExpandY();
0025    virtual void DrawCenterX();
0026    virtual void DrawCenterY();
0027    virtual void DrawTopLeft();
0028    virtual void DrawTopRight();
0029    virtual void DrawBottomLeft();
0030    virtual void DrawBottomRight();
0031 
0032    void DoRedraw() override;
0033 
0034 public:
0035    TGuiBldHintsButton(const TGWindow *p, Int_t id);
0036    ~TGuiBldHintsButton() override {}
0037 
0038    ClassDefOverride(TGuiBldHintsButton,0) //Button for editing layout hints in GUI Builder
0039 };
0040 
0041 #endif