diff options
Diffstat (limited to 'app/fvwm/extras/FvwmConfig/WinButton.h')
-rw-r--r-- | app/fvwm/extras/FvwmConfig/WinButton.h | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/app/fvwm/extras/FvwmConfig/WinButton.h b/app/fvwm/extras/FvwmConfig/WinButton.h deleted file mode 100644 index 4bb67df7b..000000000 --- a/app/fvwm/extras/FvwmConfig/WinButton.h +++ /dev/null @@ -1,23 +0,0 @@ -#ifndef winbutton_h -#define winbutton_h - -#include <X11/Xlib.h> -#include "WinText.h" - -class WinButton: public WinText -{ - public: - char momentary; - char action; - void (*ToggleAction)(int newstate, WinButton *which); - - WinButton(WinBase *Parent, int w, int h, int x, int y, char *label); - ~WinButton(); - - void SetToggleAction(void (*ToggleAction)(int newstate, WinButton *which)); - void MakeMomentary(); - void BPressCallback(XEvent *event = NULL); - void BReleaseCallback(XEvent *event = NULL); -}; - -#endif |