00001 // @(#)root/guibuilder:$Id: TGuiBldHintsButton.h 30063 2009-09-08 12:15:59Z bellenot $ 00002 // Author: Valeriy Onuchin 12/09/04 00003 00004 /************************************************************************* 00005 * Copyright (C) 1995-2004, Rene Brun and Fons Rademakers. * 00006 * All rights reserved. * 00007 * * 00008 * For the licensing terms see $ROOTSYS/LICENSE. * 00009 * For the list of contributors see $ROOTSYS/README/CREDITS. * 00010 *************************************************************************/ 00011 00012 #ifndef ROOT_TGuiBldHintsButton 00013 #define ROOT_TGuiBldHintsButton 00014 00015 00016 ////////////////////////////////////////////////////////////////////////// 00017 // // 00018 // TGuiBldHintsButton // 00019 // // 00020 ////////////////////////////////////////////////////////////////////////// 00021 00022 00023 #ifndef ROOT_TGButton 00024 #include "TGButton.h" 00025 #endif 00026 00027 00028 ////////////////////////////////////////////////////////////////////////// 00029 class TGuiBldHintsButton : public TGButton { 00030 00031 protected: 00032 virtual void DrawExpandX(); 00033 virtual void DrawExpandY(); 00034 virtual void DrawCenterX(); 00035 virtual void DrawCenterY(); 00036 virtual void DrawTopLeft(); 00037 virtual void DrawTopRight(); 00038 virtual void DrawBottomLeft(); 00039 virtual void DrawBottomRight(); 00040 00041 virtual void DoRedraw(); 00042 00043 public: 00044 TGuiBldHintsButton(const TGWindow *p, Int_t id); 00045 virtual ~TGuiBldHintsButton() {} 00046 00047 ClassDef(TGuiBldHintsButton,0) //Button for editing layout hints in GUI Builder 00048 }; 00049 00050 #endif