00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034 #include "framework/button.hpp"
00035 #include "platform/lowlevel.hpp"
00036
00037 namespace gsgl
00038 {
00039
00040 using namespace platform;
00041
00042 namespace framework
00043 {
00044
00045
00046 button::button(widget *parent,
00047 int x, int y, int w, int h,
00048 const color & fg, const color & bg,
00049 const string & font_face, int font_size,
00050 const string & text)
00051 : textbox(parent,
00052 x, y, w, h, fg, bg,
00053 font_face, font_size,
00054 textbox::ALIGN_CENTER,
00055 textbox::NO_FLAGS),
00056 down_tick(0),
00057 on_click_handler(0)
00058 {
00059 get_text() = text;
00060
00061 }
00062
00063
00064 button::~button()
00065 {
00066
00067 }
00068
00069
00070 void button::set_on_click_handler(void (*handler)(button *))
00071 {
00072 on_click_handler = handler;
00073 }
00074
00075
00076 void button::draw()
00077 {
00078 color old_fg = get_foreground();
00079 color old_bg = get_background();
00080
00081 if (down_tick)
00082 {
00083 if ((SDL_GetTicks() - down_tick) < 100)
00084 {
00085 get_foreground() = old_bg;
00086 get_background() = old_fg;
00087 }
00088 else
00089 {
00090 down_tick = 0;
00091 }
00092 }
00093
00094 textbox::draw();
00095
00096 get_foreground().set();
00097 glLineWidth(1.0f);
00098
00099 glBegin(GL_LINE_STRIP);
00100 glVertex2i(0, 0);
00101 glVertex2i(get_w(), 0);
00102 glVertex2i(get_w(), get_h());
00103 glVertex2i(0, get_h());
00104 glVertex2i(0, 0);
00105 glEnd();
00106
00107 if (down_tick)
00108 {
00109 get_foreground() = old_fg;
00110 get_background() = old_bg;
00111 }
00112 }
00113
00114
00115 bool button::handle_event(const SDL_Event & e)
00116 {
00117 switch (e.type)
00118 {
00119 case SDL_MOUSEBUTTONDOWN:
00120 down_tick = SDL_GetTicks();
00121 return true;
00122 case SDL_MOUSEBUTTONUP:
00123 {
00124 if (button_down_here(e.button.button))
00125 {
00126 if (on_click_handler)
00127 {
00128 on_click_handler(this);
00129 return true;
00130 }
00131 }
00132 }
00133 break;
00134 default:
00135 break;
00136 }
00137
00138 return false;
00139 }
00140
00141
00142 }
00143
00144 }