]> Dogcows Code - chaz/openbox/blobdiff - otk/button.hh
move the focus_order lists into the kernel
[chaz/openbox] / otk / button.hh
index 5924e9b0ebe18783e9b10521c9f23acaccb25127..a3805aa069f459e1dc904075ce9a0feaeef8b0e4 100644 (file)
@@ -1,49 +1,32 @@
+// -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
 #ifndef __button_hh
 #define __button_hh
 
-#include "focuslabel.hh"
+#include "label.hh"
 
 namespace otk {
 
-class OtkButton : public OtkFocusLabel {
+class Button : public Label {
 
 public:
+  Button(Widget *parent);
+  virtual ~Button();
 
-  OtkButton(OtkWidget *parent);
-  ~OtkButton();
+  virtual inline bool isPressed() const { return _pressed; }
 
-  inline const BTexture *getPressedFocusTexture(void) const
-  { return _pressed_focus_tx; }
-  void setPressedFocusTexture(BTexture *texture)
-  { _pressed_focus_tx = texture; }
+  virtual void press(unsigned int mouse_button);
+  virtual void release(unsigned int mouse_button);
 
-  inline const BTexture *getPressedUnfocusTexture(void) const
-  { return _pressed_unfocus_tx; }
-  void setPressedUnfocusTexture(BTexture *texture)
-  { _pressed_unfocus_tx = texture; }
+  virtual void buttonPressHandler(const XButtonEvent &e);
+  virtual void buttonReleaseHandler(const XButtonEvent &e);
 
-  void setTexture(BTexture *texture);
-  void setUnfocusTexture(BTexture *texture);
+  virtual void clickHandler(unsigned int button) {(void)button;}
 
-  inline bool isPressed(void) const { return _pressed; }
-  void press(unsigned int mouse_button);
-  void release(unsigned int mouse_button);
-
-  void buttonPressHandler(const XButtonEvent &e);
-  void buttonReleaseHandler(const XButtonEvent &e);
-
-  virtual void setStyle(Style *style);
-  
+  virtual void styleChanged(const RenderStyle &style);
 private:
-
   bool _pressed;
   unsigned int _mouse_button;
-
-  BTexture *_pressed_focus_tx;
-  BTexture *_pressed_unfocus_tx;
-
-  BTexture *_unpr_focus_tx;
-  BTexture *_unpr_unfocus_tx;
 };
 
 }
This page took 0.02177 seconds and 4 git commands to generate.