00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #ifndef _GUI_SELECT_VALUE_HH_
00022 #define _GUI_SELECT_VALUE_HH_
00023
00024 #if defined(_WIN32) && defined(_MSC_VER)
00025 # ifdef VOSGUI_EXPORTS
00026 # define VOSGUI_API __declspec(dllexport)
00027 # else
00028 # define VOSGUI_API __declspec(dllimport)
00029 # endif
00030 #else
00031 # define VOSGUI_API
00032 #endif
00033
00034 #include <vos/corelibs/vos/vos.hh>
00035 #include <vos/metaobjects/property/property.hh>
00036 #include <vos/gui/gui/select.hh>
00037
00038 namespace VOSGUI {
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051 class VOSGUI_API SelectValue : public virtual Select
00052 {
00053
00054 protected:
00055 vRef<Vobject> choices;
00056 vRef<Property> selected;
00057
00058
00059 public:
00060
00061
00062 SelectValue(MetaObject* superobject);
00063
00064
00065 virtual ~SelectValue();
00066
00067
00068 virtual const std::string getType();
00069
00070
00071 static void registerExtenders();
00072
00073
00074
00075 Property* getSelectedObj();
00076 inline Property* getTargetObj() {
00077 return getSelectedObj();
00078 }
00079
00080
00081
00082
00083 void setSelectedObj(Property* p);
00084 inline void setTargetObj(Property* p) {
00085 setSelectedObj(p);
00086 }
00087
00088
00089
00090
00091
00092 std::string getValue();
00093
00094
00095 void getValue(std::string& v);
00096
00097
00098 void setValue(const std::string& v);
00099
00100
00101 void add(const std::string& label, Property* property);
00102
00103
00104 void add(Property* property);
00105
00106
00107 void add(const std::string& label, const std::string& value,
00108 PropertyAccessControl* defaultValueAC = &NoPropertyAccessControl::static_);
00109
00110
00111
00112 void add(const std::string& value,
00113 PropertyAccessControl* defaultValueAC = &NoPropertyAccessControl::static_);
00114
00115
00116 void remove(const std::string& value) throw (NoSuchObjectError);
00117
00118
00119
00120 void setStyle(const std::string& style, PropertyAccessControl* pac = 0);
00121 void setPopup(PropertyAccessControl* pac = 0);
00122 void setRadio(PropertyAccessControl* pac = 0);
00123 std::string getStyle();
00124 Property* getStyleObj();
00125
00126
00127
00128
00129
00130 void setRadioOrientation(const std::string& ori, PropertyAccessControl* pac = 0);
00131 std::string getRadioOrientation();
00132 void setRadioSize(int n, PropertyAccessControl* pac = 0);
00133 int getRadioSize();
00134
00135
00136
00137 Vobject* getChoicesObj();
00138
00139
00140
00141 void setChoicesObj(Vobject* obj);
00142
00143
00144
00145 virtual void initialize();
00146
00147 };
00148
00149
00150
00151
00152
00153 class VOSGUI_API LocalSelectValue : public virtual SelectValue, public virtual LocalSelect
00154 {
00155
00156 public:
00157
00158
00159 LocalSelectValue(MetaObject* superobject);
00160
00161
00162 ~LocalSelectValue();
00163
00164
00165 static MetaObject* new_LocalSelectValue(MetaObject* superobject, const std::string& type);
00166
00167
00168
00169
00170
00171
00172
00173
00174 virtual void initialize();
00175
00176
00177 };
00178
00179
00180
00181 class VOSGUI_API RemoteSelectValue : public virtual SelectValue, public virtual RemoteSelect
00182 {
00183 public:
00184
00185
00186 RemoteSelectValue(MetaObject* superobject);
00187
00188
00189 virtual ~RemoteSelectValue();
00190
00191
00192 static MetaObject* new_RemoteSelectValue(MetaObject* superobject, const std::string& type);
00193
00194
00195 };
00196
00197 }
00198
00199 #endif // #ifdef _GUI_SELECT_VALUE_HH_
00200