Main Page | Namespace List | Class Hierarchy | Alphabetical List | Class List | File List | Namespace Members | Class Members | File Members | Related Pages

pgcheckbutton.cpp

Go to the documentation of this file.
00001 /*
00002     ParaGUI - crossplatform widgetset
00003     Copyright (C) 2000,2001,2002  Alexander Pipelka
00004  
00005     This library is free software; you can redistribute it and/or
00006     modify it under the terms of the GNU Library General Public
00007     License as published by the Free Software Foundation; either
00008     version 2 of the License, or (at your option) any later version.
00009  
00010     This library is distributed in the hope that it will be useful,
00011     but WITHOUT ANY WARRANTY; without even the implied warranty of
00012     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00013     Library General Public License for more details.
00014  
00015     You should have received a copy of the GNU Library General Public
00016     License along with this library; if not, write to the Free
00017     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
00018  
00019     Alexander Pipelka
00020     pipelka@teleweb.at
00021  
00022     Last Update:      $Author: mbickel $
00023     Update Date:      $Date: 2007-10-21 11:14:48 $
00024     Source File:      $Source: /home/cvspsrv/cvsroot/games/asc/source/libs/paragui/src/widgets/pgcheckbutton.cpp,v $
00025     CVS/RCS Revision: $Revision: 1.3 $
00026     Status:           $State: Exp $
00027 */
00028 
00029 #include "pgcheckbutton.h"
00030 #include "pgbutton.h"
00031 
00032 PG_CheckButton::PG_CheckButton(PG_Widget* parent, const PG_Rect& r, const std::string& text, int id, const std::string& style)
00033                 : PG_RadioButton(parent, r, text, NULL, id) {
00034         LoadThemeStyle(style);
00035    my_widgetButton->LoadThemeStyle(style, "CheckButton");
00036 
00037         SetUnpressed();
00038 }
00039 
00040 PG_CheckButton::~PG_CheckButton() {}
00041 
00042 bool PG_CheckButton::eventMouseButtonUp(const SDL_MouseButtonEvent* my_widgetButton) {
00043    if ( my_widgetButton->button == SDL_BUTTON_LEFT ) {
00044            if(my_isPressed) {
00045                    SetUnpressed();
00046            } else {
00047                    SetPressed();
00048            }
00049 
00050            return true;
00051    } else
00052       return false;
00053 }
00054 
00055 void PG_CheckButton::SetUnpressed() {
00056         my_widgetButton->SetPressed(false);
00057         my_isPressed = false;
00058 
00059         Update();
00060 
00061         // Notify parent
00062         sigClick(this, false);
00063 }

Generated on Tue Jun 24 01:27:47 2008 for Advanced Strategic Command by  doxygen 1.4.2