diff options
author | Luis Ibanez <luis.ibanez@kitware.com> | 2001-06-21 11:36:21 (GMT) |
---|---|---|
committer | Luis Ibanez <luis.ibanez@kitware.com> | 2001-06-21 11:36:21 (GMT) |
commit | d21fca47a968202aec241b60d0c44d367171c221 (patch) | |
tree | 95c6ba27a3b04d86ae16ef0d0c5ef457d84ceef7 /Source/FLTKDialog/FLTKPropertyNameButtonWithHelp.h | |
parent | 924e58aac3dcf69916daad41e38c5625d142e9be (diff) | |
download | CMake-d21fca47a968202aec241b60d0c44d367171c221.zip CMake-d21fca47a968202aec241b60d0c44d367171c221.tar.gz CMake-d21fca47a968202aec241b60d0c44d367171c221.tar.bz2 |
Removed: now the help string is managed by the PropertyRow class
Diffstat (limited to 'Source/FLTKDialog/FLTKPropertyNameButtonWithHelp.h')
-rw-r--r-- | Source/FLTKDialog/FLTKPropertyNameButtonWithHelp.h | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/Source/FLTKDialog/FLTKPropertyNameButtonWithHelp.h b/Source/FLTKDialog/FLTKPropertyNameButtonWithHelp.h deleted file mode 100644 index 09d6e60..0000000 --- a/Source/FLTKDialog/FLTKPropertyNameButtonWithHelp.h +++ /dev/null @@ -1,53 +0,0 @@ -#ifndef FLTKPropertyNameButtonWithHelp_h -#define FLTKPropertyNameButtonWithHelp_h - -#include <FL/Fl_Tile.H> -#include <FL/Fl_Input.H> -#include <FL/Fl_Box.H> -#include <FL/Fl_Button.H> -#include <FL/Fl_Window.H> -#include <string> - -namespace fltk { - - -/** - - Helper class for managing help blobs over the property name - - */ -class PropertyNameButtonWithHelp : public Fl_Button -{ - public: - PropertyNameButtonWithHelp(int x,int y,int w, int h,const char *l); - virtual ~PropertyNameButtonWithHelp(); - int handle(int event); - void SetHelpText( const char * helpText); - void ShowHelp(void); - void HideHelp(void); - - static void ShowHelpBlobCallback( void * ); - - void PopupMenu( void ); - - private: - - std::string m_HelpText; - - // Class variables - static Fl_Window * helpBlob; - static Fl_Box * helpText; - static unsigned int counter; - static int lastMousePositionX; - static int lastMousePositionY; - -}; - - - - -} // end namespace fltk - -#endif - - |