summaryrefslogtreecommitdiff
path: root/shared/toggleButton.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:00:50 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:00:50 +0200
commit4ecfd41e36533d858c98d051ef70cab80e69e972 (patch)
treeca07d8745967d2c6a7123a5d32269cfbfaa7bd6c /shared/toggleButton.h
parent2.2 (diff)
downloadFreeFileSync-4ecfd41e36533d858c98d051ef70cab80e69e972.tar.gz
FreeFileSync-4ecfd41e36533d858c98d051ef70cab80e69e972.tar.bz2
FreeFileSync-4ecfd41e36533d858c98d051ef70cab80e69e972.zip
2.3
Diffstat (limited to 'shared/toggleButton.h')
-rw-r--r--shared/toggleButton.h40
1 files changed, 40 insertions, 0 deletions
diff --git a/shared/toggleButton.h b/shared/toggleButton.h
new file mode 100644
index 00000000..b7475e0c
--- /dev/null
+++ b/shared/toggleButton.h
@@ -0,0 +1,40 @@
+#ifndef TOGGLEBUTTON_H_INCLUDED
+#define TOGGLEBUTTON_H_INCLUDED
+
+#include <wx/bmpbuttn.h>
+
+class ToggleButton : public wxBitmapButton
+{
+public:
+ ToggleButton(wxWindow* parent,
+ wxWindowID id,
+ const wxBitmap& bitmap,
+ const wxPoint& pos = wxDefaultPosition,
+ const wxSize& size = wxDefaultSize,
+ long style = 0,
+ const wxValidator& validator = wxDefaultValidator,
+ const wxString& name = wxButtonNameStr) :
+ wxBitmapButton(parent, id, bitmap, pos, size, style, validator, name),
+ active(false) {}
+
+ void init(const wxBitmap& activeBmp,
+ const wxString& activeTooltip,
+ const wxBitmap& inactiveBmp,
+ const wxString& inactiveTooltip);
+
+ void setActive(bool value);
+ bool isActive() const;
+ void toggle();
+
+private:
+ bool active;
+
+ wxBitmap m_activeBmp;
+ wxString m_activeTooltip;
+
+ wxBitmap m_inactiveBmp;
+ wxString m_inactiveTooltip;
+};
+
+
+#endif // TOGGLEBUTTON_H_INCLUDED
bgstack15