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

pgpropertyfield_button.h

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-04-13 16:15:57 $
00024     Source File:      $Source: /home/cvspsrv/cvsroot/games/asc/source/libs/paragui/include/pgpropertyfield_button.h,v $
00025     CVS/RCS Revision: $Revision: 1.2 $
00026     Status:           $State: Exp $
00027 */
00028 
00029 
00030 #ifndef PG_PROPERTYFIELD_BUTTON_H
00031 #define PG_PROPERTYFIELD_BUTTON_H
00032 
00033 #include "pgpropertyeditor.h"
00034 #include "pgbutton.h"
00035 
00042 class PG_PropertyField_Button : public PG_PropertyEditor::PG_PropertyEditorField, public SigC::Object  {
00043         PG_Button* button;
00044         bool switchInverted;
00045 
00046         bool click( ) {
00047                 sigClick(this);
00048                 return true;
00049         }
00050 
00051 public:
00052         typedef PG_Signal1<PG_PropertyField_Button*> ButtonPropertySignal;
00053    ButtonPropertySignal sigClick;
00054 
00061    PG_PropertyField_Button( PG_PropertyEditor* propertyEditor, const std::string& name, const std::string& buttonname, int height = -1 ) {
00062                 PG_Rect r = propertyEditor->RegisterProperty( name, this, height );
00063       button = new PG_Button( propertyEditor, PG_Rect( r.x + 2, r.y + 2, r.w - 4, r.h -4 ), PG_NULLSTR, -1, propertyEditor->GetStyleName("ButtonProperty") );
00064       button->SetText( buttonname );
00065                 button->sigClick.connect( SigC::slot(*this, &PG_PropertyField_Button::click));
00066         };
00067 
00068         bool Valid() {
00069                 return true;
00070         };
00071         bool Apply() {
00072                 return true;
00073         };
00074         void Reload() {
00075         };
00076 
00077    PG_Button* GetButton()
00078    {
00079       return button;
00080    };
00081 };
00082 
00083 #endif

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