diff options
author | Jorge Arellano Cid <jcid@dillo.org> | 2012-11-14 09:56:47 -0300 |
---|---|---|
committer | Jorge Arellano Cid <jcid@dillo.org> | 2012-11-14 09:56:47 -0300 |
commit | f1ce785e5255816e0e532c0fc4fc2f9952ff4b76 (patch) | |
tree | 3da3c14c5eea1d5363d6eb237210841a6ecb179a /src/tipwin.hh | |
parent | 4a536e35e1cd1c14988f2ad3a61ae56d60ce9e2e (diff) |
Added class TipWinInput (an Input with custom tooltip window)
Diffstat (limited to 'src/tipwin.hh')
-rw-r--r-- | src/tipwin.hh | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/tipwin.hh b/src/tipwin.hh index 77ffa60e..d3aeeac5 100644 --- a/src/tipwin.hh +++ b/src/tipwin.hh @@ -3,6 +3,7 @@ #include <FL/Fl_Menu_Window.H> #include <FL/Fl_Button.H> +#include <FL/Fl_Input.H> /* @@ -54,5 +55,20 @@ public: }; +/* + * An Input with custom tooltip window + */ +class TipWinInput : public Fl_Input { + char *mytooltip; + TipWin *tipwin; +public: + TipWinInput (int x, int y, int w, int h, const char* l=0); + ~TipWinInput(void); + virtual int handle(int e); + + void set_tooltip(const char *s); +}; + + #endif // __TIPWIN_HH__ |