summaryrefslogtreecommitdiff
path: root/otk/button.hh
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-02-08 08:13:02 +0000
committerDana Jansens <danakj@orodu.net>2003-02-08 08:13:02 +0000
commitf51f1c775f3f09cf184ead323d111985c888d52e (patch)
tree22bfcdb158b450c2f7e971b206f37e5c873d79e3 /otk/button.hh
parente72d9d90f9f29809dead53968395c2c8ae5470f0 (diff)
stacked cycling menu works now. add a highlighted flag to otk widgets
Diffstat (limited to 'otk/button.hh')
-rw-r--r--otk/button.hh4
1 files changed, 0 insertions, 4 deletions
diff --git a/otk/button.hh b/otk/button.hh
index 53d08a86..09fc0d6b 100644
--- a/otk/button.hh
+++ b/otk/button.hh
@@ -12,9 +12,6 @@ public:
Button(Widget *parent);
virtual ~Button();
- virtual inline bool isDefault() const { return _default; }
- virtual void setDefault(bool d);
-
virtual inline bool isPressed() const { return _pressed; }
virtual void press(unsigned int mouse_button);
@@ -26,7 +23,6 @@ public:
virtual void styleChanged(const RenderStyle &style);
private:
- bool _default;
bool _pressed;
unsigned int _mouse_button;
};