]> git.sesse.net Git - vlc/blob - modules/gui/skins2/utils/var_string.hpp
skins2: implement art display in image controls
[vlc] / modules / gui / skins2 / utils / var_string.hpp
1 /*****************************************************************************
2  * var_string.hpp
3  *****************************************************************************
4  * Copyright (C) 2010 the VideoLAN team
5  * $Id$
6  *
7  * Author: Erwan Tulou      <erwan10 aT videolan DoT org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License along
20  * with this program; if not, write to the Free Software Foundation, Inc.,
21  * 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 #ifndef VAR_STRING
25 #define VAR_STRING
26
27 #include "variable.hpp"
28 #include "observer.hpp"
29
30 class VarString;
31
32
33 /// String variable
34 class VarString: public Variable, public Subject<VarString>
35 {
36 public:
37     VarString( intf_thread_t *pIntf ): Variable( pIntf ), m_value( string("tit") ) { }
38     virtual ~VarString() { }
39
40     /// Get the variable type
41     virtual const string &getType() const { return m_type; }
42
43     /// Set the internal value
44     virtual void set( string str );
45     virtual string get() const { return m_value; }
46
47 private:
48     /// Variable type
49     static const string m_type;
50     /// string value
51     string m_value;
52 };
53
54 #endif