]> Dogcows Code - chaz/openbox/blobdiff - otk/button.hh
remove the old blackbox bullshit
[chaz/openbox] / otk / button.hh
index 2fa8e7da20b960776122c041688e95918124377a..1483677ea348a93ce548a00e9c159514ebe9ec9e 100644 (file)
@@ -1,34 +1,52 @@
-#include "widget.hh"
-#include "style.hh"
-#include "texture.hh"
-//#include "pixmap.hh"
+// -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
+#ifndef __button_hh
+#define __button_hh
+
+#include "focuslabel.hh"
 
 namespace otk {
 
-class OtkButton : public OtkWidget {
+class Button : public FocusLabel {
 
 public:
 
-  OtkButton(OtkWidget *parent);
-  ~OtkButton();
+  Button(Widget *parent);
+  ~Button();
+
+  inline const RenderTexture *getPressedFocusTexture(void) const
+  { return _pressed_focus_tx; }
+  void setPressedFocusTexture(RenderTexture *texture)
+  { _pressed_focus_tx = texture; }
 
-  inline const std::string &getText(void) const { return _text; }
-  void setText(const std::string &text);
+  inline const RenderTexture *getPressedUnfocusTexture(void) const
+  { return _pressed_unfocus_tx; }
+  void setPressedUnfocusTexture(RenderTexture *texture)
+  { _pressed_unfocus_tx = texture; }
 
-  //inline const OtkPixmap &getPixmap(void) const { return _pixmap; }
-  //void setPixmap(const OtkPixmap &pixmap);
+  void setTexture(RenderTexture *texture);
+  void setUnfocusTexture(RenderTexture *texture);
 
   inline bool isPressed(void) const { return _pressed; }
-  void press(void);
-  void release(void);
+  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(RenderStyle *style);
+  
 private:
 
-  std::string _text;
-  //OtkPixmap _pixmap;
   bool _pressed;
-  BTexture *_unfocus_tx;
+  unsigned int _mouse_button;
 
+  RenderTexture *_pressed_focus_tx;
+  RenderTexture *_pressed_unfocus_tx;
+
+  RenderTexture *_unpr_focus_tx;
+  RenderTexture *_unpr_unfocus_tx;
 };
 
 }
+
+#endif
This page took 0.026702 seconds and 4 git commands to generate.