/* * Author: Harry van Haaren 2013 * harryhaaren@gmail.com * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #ifndef AVTK_LIGHT_BUTTON_H #define AVTK_LIGHT_BUTTON_H #include namespace Avtk { class LightButton : public Fl_Button { public: LightButton(int _x, int _y, int _w, int _h, const char *_label): Fl_Button(_x, _y, _w, _h, _label) { x = _x; y = _y; w = _w; h = _h; _r = 1.0; _g = 0.48; _b = 0.0; _bgr = 0.11; _bgg = 0.11; _bgb = 0.11; _outr = _r; _outg = _g; _outb = _b; label = _label; _highlight = false; mouseOver = false; } bool mouseOver; bool _highlight; int x, y, w, h; const char* label; float _r, _g, _b; // foreground colour float _bgr, _bgg, _bgb; // background colour float _outr, _outg, _outb; // outline colour void setColor(float r, float g, float b) { _r = r; _g = g; _b = b; } void setBgColor(float r, float g, float b) { _bgr = r; _bgg = g; _bgb = b; } void draw() { if (damage() & FL_DAMAGE_ALL) { if ( value() ) { _highlight = true; } else { _highlight = false; } cairo_t *cr = Fl::cairo_cc(); cairo_save( cr ); cairo_rectangle( cr, x+1, y+1, w-2, h-2 ); cairo_set_source_rgba( cr, _bgr, _bgg, _bgb, 0.4 ); cairo_fill_preserve(cr); cairo_set_line_width(cr, 1.5); cairo_rectangle( cr, x+1, y+1, w-2, h-2 ); if ( _highlight ) { cairo_set_source_rgba(cr, _r, _g, _b, 0.4); cairo_fill_preserve(cr); } float alpha = 0.7; if (mouseOver) alpha = 1; cairo_set_source_rgba(cr, _r, _g, _b, alpha); cairo_stroke(cr); cairo_restore( cr ); draw_label(); } } void resize(int X, int Y, int W, int H) { Fl_Widget::resize(X,Y,W,H); x = X; y = Y; w = W; h = H; redraw(); } int handle(int event) { switch(event) { case FL_ACTIVATE: { } case FL_DEACTIVATE: { } return 1; case FL_PUSH: do_callback(); return 1; case FL_DRAG: { int t = Fl::event_inside(this); if (t != _highlight) { _highlight = t; redraw(); } } return 1; case FL_ENTER: mouseOver = true; redraw(); return 1; case FL_LEAVE: mouseOver = false; redraw(); return 1; case FL_RELEASE: return 1; case FL_SHORTCUT: if ( test_shortcut() ) { do_callback(); return 1; } return 0; default: return Fl_Widget::handle(event); } } }; } // Avtk #endif // AVTK_LIGHT_BUTTON_H