00001 /***************************************************************************** 00002 * var_text.hpp 00003 ***************************************************************************** 00004 * Copyright (C) 2003 the VideoLAN team 00005 * $Id$ 00006 * 00007 * Authors: Cyril Deguet <asmax@via.ecp.fr> 00008 * Olivier Teulière <ipkiss@via.ecp.fr> 00009 * 00010 * This program is free software; you can redistribute it and/or modify 00011 * it under the terms of the GNU General Public License as published by 00012 * the Free Software Foundation; either version 2 of the License, or 00013 * (at your option) any later version. 00014 * 00015 * This program is distributed in the hope that it will be useful, 00016 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00017 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00018 * GNU General Public License for more details. 00019 * 00020 * You should have received a copy of the GNU General Public License 00021 * along with this program; if not, write to the Free Software 00022 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. 00023 *****************************************************************************/ 00024 00025 #ifndef VAR_TEXT_HPP 00026 #define VAR_TEXT_HPP 00027 00028 #include "variable.hpp" 00029 #include "var_percent.hpp" 00030 #include "observer.hpp" 00031 #include "ustring.hpp" 00032 00033 00034 /// String variable 00035 class VarText: public Variable, public Subject<VarText>, 00036 public Observer<VarPercent>, 00037 public Observer<VarText> 00038 { 00039 public: 00040 // Set substVars to true to replace "$X" variables in the text 00041 VarText( intf_thread_t *pIntf, bool substVars = true ); 00042 virtual ~VarText(); 00043 00044 /// Get the variable type 00045 virtual const string &getType() const { return m_type; } 00046 00047 /// Set the internal value 00048 virtual void set( const UString &rText ); 00049 virtual const UString get() const; 00050 00051 /// Methods called when an observed variable is modified 00052 virtual void onUpdate( Subject<VarPercent> &rVariable, void* ); 00053 virtual void onUpdate( Subject<VarText> &rVariable, void* ); 00054 00055 private: 00056 /// Stop observing other variables 00057 void delObservers(); 00058 00059 /// Variable type 00060 static const string m_type; 00061 /// The text of the variable 00062 UString m_text; 00063 /// Actual text after having replaced the variables 00064 UString m_lastText; 00065 /// Flag to activate or not "$X" variables substitution 00066 bool m_substVars; 00067 }; 00068 00069 #endif
1.5.1