summaryrefslogtreecommitdiff
path: root/plugingui/checkbox.cc
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2012-01-23 20:08:12 +0100
committerBent Bisballe Nyeng <deva@aasimon.org>2012-01-23 20:08:12 +0100
commitaf9c9091ed69394171485aa4c4814504f86f2004 (patch)
tree070b911dc8faed486c8e8829f0f41aec7d5b4350 /plugingui/checkbox.cc
parent5e4cb10f72ef69d73fbd2c1bc42465c9111a4c41 (diff)
Simple image blit. New slider class. New filenamelineedit. New pixelbuffer used for drawing everything but the root window - with alpha blending...
Diffstat (limited to 'plugingui/checkbox.cc')
-rw-r--r--plugingui/checkbox.cc64
1 files changed, 63 insertions, 1 deletions
diff --git a/plugingui/checkbox.cc b/plugingui/checkbox.cc
index 72b7d3f..e51f213 100644
--- a/plugingui/checkbox.cc
+++ b/plugingui/checkbox.cc
@@ -2,7 +2,7 @@
/***************************************************************************
* checkbox.cc
*
- * Sun Oct 9 13:02:01 CEST 2011
+ * Sat Nov 26 15:07:44 CET 2011
* Copyright 2011 Bent Bisballe Nyeng
* deva@aasimon.org
****************************************************************************/
@@ -26,6 +26,68 @@
*/
#include "checkbox.h"
+#include "painter.h"
+
+#include <stdio.h>
+
+GUI::CheckBox::CheckBox(Widget *parent)
+ : GUI::Widget(parent)
+{
+ state = false;
+ handler = NULL;
+}
+
+void GUI::CheckBox::buttonEvent(ButtonEvent *e)
+{
+ if(e->direction == -1) {
+ state = !state;
+ repaintEvent(NULL);
+ if(handler) handler(ptr);
+ }
+}
+
+void GUI::CheckBox::registerClickHandler(void (*handler)(void *), void *ptr)
+{
+ this->handler = handler;
+ this->ptr = ptr;
+}
+
+void GUI::CheckBox::repaintEvent(GUI::RepaintEvent *e)
+{
+ // printf("CheckBox::repaintEvent\n");
+
+ Painter p(this);
+
+ float alpha = 0.8;
+
+ p.setColour(Colour(0.5, alpha));
+ p.drawFilledRectangle(0,0,width()-1,height()-1);
+
+ p.setColour(Colour(0.1, alpha));
+ p.drawRectangle(0,0,width()-1,height()-1);
+
+ if(state) {
+ p.setColour(Colour(0.8, alpha));
+ p.drawLine(0,0,width()-1,height()-1);
+ p.drawLine(0,width()-1,height()-1,0);
+ }
+
+ p.setColour(Colour(0.3, alpha));
+ p.drawPoint(0,height()-1);
+ p.drawPoint(width()-1,0);
+}
+
+bool GUI::CheckBox::checked()
+{
+ return state;
+}
+
+void GUI::CheckBox::setChecked(bool c)
+{
+ state = c;
+ repaintEvent(NULL);
+}
+
#ifdef TEST_CHECKBOX
//Additional dependency files
//deps: