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

pgpropertyfield_string.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_string.h,v $
00025     CVS/RCS Revision: $Revision: 1.2 $
00026     Status:           $State: Exp $
00027 */
00028 
00029 #ifndef PG_PROPERTYFIELD_STRING_H
00030 #define PG_PROPERTYFIELD_STRING_H
00031 
00032 #include "pgpropertyeditor_linefield.h"
00033 
00034 
00040 template<class StringType=std::string>
00041 class PG_PropertyField_String : public PG_PropertyEditor_LineField {
00042    StringType* myProperty;
00043 
00044    protected:
00045 
00046       bool EditEnd() {
00047          sigValueChanged(this,lineEdit->GetText());
00048          return true;
00049       }
00050 
00051    public:
00052       typedef PG_Signal2<PG_PropertyField_String*, StringType> StringPropertySignal;
00053       StringPropertySignal sigValueChanged;
00054       StringPropertySignal sigValueApplied;
00055 
00061       PG_PropertyField_String( PG_PropertyEditor* propertyEditor, const std::string& name, StringType* string ) : PG_PropertyEditor_LineField( propertyEditor, name ), myProperty( string ) {
00062          Reload();
00063       };
00064 
00070       PG_PropertyField_String( PG_PropertyEditor* propertyEditor, const std::string& name, const StringType& string ) : PG_PropertyEditor_LineField( propertyEditor, name ), myProperty( NULL ) {
00071          lineEdit->SetText( string );
00072       };
00073 
00074       bool Valid() {
00075          return true;
00076       };
00077       bool Apply() {
00078          if ( myProperty )
00079             *myProperty = lineEdit->GetText();
00080 
00081          sigValueApplied( this, lineEdit->GetText() );
00082 
00083          return true;
00084       };
00085       void Reload() {
00086          if ( myProperty )
00087             lineEdit->SetText( *myProperty );
00088       };
00089 
00090       void SetPassHidden (const PG_Char &passchar) {
00091          lineEdit->SetPassHidden( passchar );
00092       };
00093 };
00094 
00095 #endif

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