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
0002
0003
0004
0005
0006
0007
0008
0009
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)
0039 };
0040
0041 #endif