summaryrefslogtreecommitdiff
path: root/shared/toggleButton.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'shared/toggleButton.cpp')
-rw-r--r--shared/toggleButton.cpp44
1 files changed, 44 insertions, 0 deletions
diff --git a/shared/toggleButton.cpp b/shared/toggleButton.cpp
new file mode 100644
index 00000000..b83143ea
--- /dev/null
+++ b/shared/toggleButton.cpp
@@ -0,0 +1,44 @@
+#include "toggleButton.h"
+
+void ToggleButton::init(const wxBitmap& activeBmp,
+ const wxString& activeTooltip,
+ const wxBitmap& inactiveBmp,
+ const wxString& inactiveTooltip)
+{
+ m_activeBmp = activeBmp;
+ m_activeTooltip = activeTooltip;
+ m_inactiveBmp = inactiveBmp;
+ m_inactiveTooltip = inactiveTooltip;
+
+ //load resources
+ setActive(active);
+}
+
+
+bool ToggleButton::isActive() const
+{
+ return active;
+}
+
+
+void ToggleButton::toggle()
+{
+ setActive(!active);
+}
+
+
+void ToggleButton::setActive(bool value)
+{
+ active = value;
+
+ if (active)
+ {
+ SetBitmapLabel(m_activeBmp);
+ SetToolTip(m_activeTooltip);
+ }
+ else
+ {
+ SetBitmapLabel(m_inactiveBmp);
+ SetToolTip(m_inactiveTooltip);
+ }
+}
bgstack15