X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Fgui%2Fbutton.cpp;h=6288665f3c916615e283ce5c1390f1d451fe3345;hb=ba5f95533903ed6190b0fddede258c86540afffa;hp=2e4a3360ec6d6050c8d8f135322993e4548c00f0;hpb=86181b0a14d89cf45daf97199c3556c4dd1ee7b7;p=supertux.git diff --git a/src/gui/button.cpp b/src/gui/button.cpp index 2e4a3360e..6288665f3 100644 --- a/src/gui/button.cpp +++ b/src/gui/button.cpp @@ -1,7 +1,7 @@ // $Id$ -// +// // SuperTux -// Copyright (C) 2005 Matthias Braun +// Copyright (C) 2006 Matthias Braun // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License @@ -12,21 +12,23 @@ // 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, write to the Free Software -// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA -// 02111-1307, USA. +// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + #include +#include "button.hpp" + #include #include #include "main.hpp" -#include "button.hpp" #include "mousecursor.hpp" #include "video/font.hpp" #include "video/surface.hpp" +#include "video/drawing_context.hpp" Font* Button::info_font = 0; extern SDL_Surface* screen; @@ -61,13 +63,13 @@ if(state == BT_SHOW_INFO) offset = Vector(size.x, - 10); else if(pos.x + tanslation.x < 100) offset = Vector(size.x, 0); - else + else offset = Vector(-30, -size.y/2); - context.draw_text(info_font, info, pos + offset, LEFT_ALLIGN, LAYER_GUI+2); + context.draw_text(info_font, info, pos + offset, ALIGN_LEFT, LAYER_GUI+2); if(binding != 0) context.draw_text(info_font, "(" + std::string(SDL_GetKeyName(binding)) + ")", pos + offset + Vector(0,12), - LEFT_ALLIGN, LAYER_GUI+2); + ALIGN_LEFT, LAYER_GUI+2); } context.draw_surface_part(image, Vector(0,0), size, pos, LAYER_GUI+1); @@ -94,7 +96,7 @@ switch(event.type) state = BT_SELECTED; } break; - case SDL_KEYDOWN: // key pressed + case SDL_KEYDOWN: // key pressed if(event.key.keysym.sym == binding) state = BT_SELECTED; break; @@ -162,7 +164,7 @@ for(Buttons::iterator i = buttons.begin(); i != buttons.end(); ++i) i->pos.y + i->size.y > (row + buttons_box.y) * buttons_size.y) continue; - i->draw(context, i->id == button_selected ? true : false); + i->draw(context, i->id == button_selected); } context.pop_transform(); } @@ -178,7 +180,7 @@ switch(event.type) if(mouse_left_button) { - pos.x += int(event.motion.xrel * float(SCREEN_WIDTH)/screen->w); + pos.x += int(event.motion.xrel * float(SCREEN_WIDTH)/screen->w); pos.y += int(event.motion.yrel * float(SCREEN_HEIGHT)/screen->h); caught_event = true; }