00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #ifndef _HYPERCARD_HH_
00018 #define _HYPERCARD_HH_
00019
00020 #include <vos/corelibs/vos/vos.hh>
00021 #include <vos/metaobjects/property/property.hh>
00022
00023 #if defined(_WIN32) && defined(_MSC_VER)
00024 # ifdef MISC_EXPORTS
00025 # define MISC_API __declspec(dllexport)
00026 # else
00027 # define MISC_API __declspec(dllimport)
00028 # endif
00029 #else
00030 # define MISC_API
00031 #endif
00032
00033
00034
00035
00036
00037
00038
00039
00040 class MISC_API Hypercard : public virtual MetaObject
00041 {
00042
00043 public:
00044
00045
00046 Hypercard(MetaObject* superobject);
00047
00048
00049
00050 const string getType();
00051
00052
00053 static void registerExtenders();
00054
00055
00056
00057
00058
00059
00060
00061
00062
00063 Vobject& getLink();
00064
00065
00066 Vobject& get_link() { return getLink(); }
00067
00068
00069
00070 void setLink(Vobject* newobj);
00071
00072
00073 void set_link(Vobject* newobj) { setLink(newobj); }
00074
00075
00076 string getDescription();
00077
00078
00079 string get_description() { return getDescription(); }
00080
00081
00082
00083
00084
00085
00086
00087 void setDescription(const string& description, const string& type = "text/plain", PropertyAccessControl* accesscontrol = NULL);
00088
00089
00090 void set_description(const string& description, const string& type = "text/plain", PropertyAccessControl* accesscontrol = NULL) {
00091 setDescription(description, type, accesscontrol);
00092 }
00093
00094
00095 string getTitle();
00096
00097
00098 string get_title() { return getTitle(); }
00099
00100
00101
00102
00103
00104
00105
00106
00107 void setTitle(const string& title, const string& type = "text/plain", PropertyAccessControl* ac = NULL);
00108
00109
00110 void set_title(const string& title, const string& type = "text/plain", PropertyAccessControl* ac = NULL) {
00111 setTitle(title, type, ac);
00112 }
00113
00114
00115
00116
00117
00118
00119 virtual void initialize();
00120
00121
00122
00123 virtual void initialize(PropertyAccessControl* ac);
00124
00125 private:
00126
00127 PropertyAccessControl* defaultPropertyAC;
00128
00129
00130 };
00131
00132
00133
00134
00135
00136 class MISC_API LocalHypercard : public virtual Hypercard
00137 {
00138 public:
00139
00140
00141 LocalHypercard(MetaObject* superobject);
00142
00143
00144 virtual void initialize();
00145
00146
00147 static MetaObject* new_LocalHypercard(MetaObject* superobject, const string& type);
00148
00149
00150 virtual void sendMessage(Message* m);
00151
00152
00153
00154
00155 virtual void initialize(PropertyAccessControl* ac);
00156
00157 };
00158
00159
00160
00161
00162 class MISC_API RemoteHypercard : public virtual Hypercard
00163 {
00164
00165 public:
00166
00167
00168 RemoteHypercard(MetaObject* superobject);
00169
00170
00171 static MetaObject* new_RemoteHypercard(MetaObject* superobject, const string& type);
00172
00173
00174 void sendUpdateMessage(Message *m);
00175
00176 };
00177
00178
00179 #endif // #ifdef _HYPERCARD_HH_
00180