no message

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1332 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Unknown (UG)
1999-01-08 10:24:35 +00:00
parent 702ca7c070
commit 4040a396cb
5 changed files with 30 additions and 30 deletions

View File

@@ -83,7 +83,7 @@ extern void wxSplitPath(wxArrayString& aParts, const char *sz);
// Keys are pairs "key_name = value" where value may be of string or integer // Keys are pairs "key_name = value" where value may be of string or integer
// (long) type (@@@ doubles and other types such as wxDate coming soon). // (long) type (@@@ doubles and other types such as wxDate coming soon).
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
class wxConfigBase class WXDLLEXPORT wxConfigBase
{ {
public: public:
// static functions // static functions

View File

@@ -95,7 +95,7 @@
IsExpandingEnvVars function). IsExpandingEnvVars function).
*/ */
class wxFileConfig : public wxConfigBase class WXDLLEXPORT wxFileConfig : public wxConfigBase
{ {
public: public:
// construct the "standard" full name for global (system-wide) and // construct the "standard" full name for global (system-wide) and

View File

@@ -38,7 +38,7 @@ class wxPropertyValidatorRegistry;
#define wxPROPERTY_VERSION 2.0 #define wxPROPERTY_VERSION 2.0
// A storable sheet of values // A storable sheet of values
class wxPropertySheet: public wxObject class WXDLLEXPORT wxPropertySheet: public wxObject
{ {
DECLARE_DYNAMIC_CLASS(wxPropertySheet) DECLARE_DYNAMIC_CLASS(wxPropertySheet)
public: public:
@@ -73,7 +73,7 @@ class wxPropertySheet: public wxObject
// Base class for property sheet views. There are currently two directly derived // Base class for property sheet views. There are currently two directly derived
// classes: wxPropertyListView, and wxPropertyFormView. // classes: wxPropertyListView, and wxPropertyFormView.
class wxPropertyView: public wxEvtHandler class WXDLLEXPORT wxPropertyView: public wxEvtHandler
{ {
DECLARE_DYNAMIC_CLASS(wxPropertyView) DECLARE_DYNAMIC_CLASS(wxPropertyView)
public: public:
@@ -115,7 +115,7 @@ class wxPropertyView: public wxEvtHandler
}; };
class wxPropertyValidator: public wxEvtHandler class WXDLLEXPORT wxPropertyValidator: public wxEvtHandler
{ {
DECLARE_DYNAMIC_CLASS(wxPropertyValidator) DECLARE_DYNAMIC_CLASS(wxPropertyValidator)
public: public:
@@ -143,7 +143,7 @@ class wxPropertyValidator: public wxEvtHandler
// extern wxPropertyValidator *wxDefaultPropertyValidator; // extern wxPropertyValidator *wxDefaultPropertyValidator;
class wxPropertyValidatorRegistry: public wxHashTable class WXDLLEXPORT wxPropertyValidatorRegistry: public wxHashTable
{ {
DECLARE_DYNAMIC_CLASS(wxPropertyValidatorRegistry) DECLARE_DYNAMIC_CLASS(wxPropertyValidatorRegistry)
public: public:
@@ -172,7 +172,7 @@ typedef enum {
wxPropertyValueStringPtr wxPropertyValueStringPtr
} wxPropertyValueType; } wxPropertyValueType;
class wxPropertyValue: public wxObject class WXDLLEXPORT wxPropertyValue: public wxObject
{ {
DECLARE_DYNAMIC_CLASS(wxPropertyValue) DECLARE_DYNAMIC_CLASS(wxPropertyValue)
@@ -287,7 +287,7 @@ class wxPropertyValue: public wxObject
* Property class: contains a name and a value. * Property class: contains a name and a value.
*/ */
class wxProperty: public wxObject class WXDLLEXPORT wxProperty: public wxObject
{ {
DECLARE_DYNAMIC_CLASS(wxProperty) DECLARE_DYNAMIC_CLASS(wxProperty)
protected: protected:

View File

@@ -26,7 +26,7 @@
#define wxID_PROP_UPDATE 3101 #define wxID_PROP_UPDATE 3101
// Mediates between a physical panel and the property sheet // Mediates between a physical panel and the property sheet
class wxPropertyFormView: public wxPropertyView class WXDLLEXPORT wxPropertyFormView: public wxPropertyView
{ {
DECLARE_DYNAMIC_CLASS(wxPropertyFormView) DECLARE_DYNAMIC_CLASS(wxPropertyFormView)
public: public:
@@ -109,7 +109,7 @@ DECLARE_EVENT_TABLE()
* assocated with a window. It's that kinda thing. * assocated with a window. It's that kinda thing.
*/ */
class wxPropertyFormValidator: public wxPropertyValidator class WXDLLEXPORT wxPropertyFormValidator: public wxPropertyValidator
{ {
DECLARE_DYNAMIC_CLASS(wxPropertyFormValidator) DECLARE_DYNAMIC_CLASS(wxPropertyFormValidator)
protected: protected:
@@ -143,7 +143,7 @@ class wxPropertyFormValidator: public wxPropertyValidator
* Some default validators * Some default validators
*/ */
class wxRealFormValidator: public wxPropertyFormValidator class WXDLLEXPORT wxRealFormValidator: public wxPropertyFormValidator
{ {
DECLARE_DYNAMIC_CLASS(wxRealFormValidator) DECLARE_DYNAMIC_CLASS(wxRealFormValidator)
public: public:
@@ -164,7 +164,7 @@ class wxRealFormValidator: public wxPropertyFormValidator
float m_realMax; float m_realMax;
}; };
class wxIntegerFormValidator: public wxPropertyFormValidator class WXDLLEXPORT wxIntegerFormValidator: public wxPropertyFormValidator
{ {
DECLARE_DYNAMIC_CLASS(wxIntegerFormValidator) DECLARE_DYNAMIC_CLASS(wxIntegerFormValidator)
public: public:
@@ -184,7 +184,7 @@ class wxIntegerFormValidator: public wxPropertyFormValidator
long m_integerMax; long m_integerMax;
}; };
class wxBoolFormValidator: public wxPropertyFormValidator class WXDLLEXPORT wxBoolFormValidator: public wxPropertyFormValidator
{ {
DECLARE_DYNAMIC_CLASS(wxBoolFormValidator) DECLARE_DYNAMIC_CLASS(wxBoolFormValidator)
protected: protected:
@@ -199,7 +199,7 @@ class wxBoolFormValidator: public wxPropertyFormValidator
bool OnDisplayValue(wxProperty *property, wxPropertyFormView *view, wxWindow *parentWindow); bool OnDisplayValue(wxProperty *property, wxPropertyFormView *view, wxWindow *parentWindow);
}; };
class wxStringFormValidator: public wxPropertyFormValidator class WXDLLEXPORT wxStringFormValidator: public wxPropertyFormValidator
{ {
DECLARE_DYNAMIC_CLASS(wxStringFormValidator) DECLARE_DYNAMIC_CLASS(wxStringFormValidator)
public: public:
@@ -223,7 +223,7 @@ class wxStringFormValidator: public wxPropertyFormValidator
* A default dialog box class to use. * A default dialog box class to use.
*/ */
class wxPropertyFormDialog: public wxDialog class WXDLLEXPORT wxPropertyFormDialog: public wxDialog
{ {
DECLARE_CLASS(wxPropertyFormDialog) DECLARE_CLASS(wxPropertyFormDialog)
public: public:
@@ -245,7 +245,7 @@ class wxPropertyFormDialog: public wxDialog
* A default panel class to use. * A default panel class to use.
*/ */
class wxPropertyFormPanel: public wxPanel class WXDLLEXPORT wxPropertyFormPanel: public wxPanel
{ {
DECLARE_CLASS(wxPropertyFormPanel) DECLARE_CLASS(wxPropertyFormPanel)
public: public:
@@ -269,7 +269,7 @@ class wxPropertyFormPanel: public wxPanel
* A default frame class to use. * A default frame class to use.
*/ */
class wxPropertyFormFrame: public wxFrame class WXDLLEXPORT wxPropertyFormFrame: public wxFrame
{ {
DECLARE_CLASS(wxPropertyFormFrame) DECLARE_CLASS(wxPropertyFormFrame)
public: public:

View File

@@ -73,7 +73,7 @@
#define wxID_PROP_VALUE_SELECT 3005 #define wxID_PROP_VALUE_SELECT 3005
// Mediates between a physical panel and the property sheet // Mediates between a physical panel and the property sheet
class wxPropertyListView: public wxPropertyView class WXDLLEXPORT wxPropertyListView: public wxPropertyView
{ {
DECLARE_DYNAMIC_CLASS(wxPropertyListView) DECLARE_DYNAMIC_CLASS(wxPropertyListView)
public: public:
@@ -188,7 +188,7 @@ public:
DECLARE_EVENT_TABLE() DECLARE_EVENT_TABLE()
}; };
class wxPropertyTextEdit: public wxTextCtrl class WXDLLEXPORT wxPropertyTextEdit: public wxTextCtrl
{ {
DECLARE_CLASS(wxPropertyTextEdit) DECLARE_CLASS(wxPropertyTextEdit)
public: public:
@@ -207,7 +207,7 @@ class wxPropertyTextEdit: public wxTextCtrl
* The type of validator used for property lists (Visual Basic style) * The type of validator used for property lists (Visual Basic style)
*/ */
class wxPropertyListValidator: public wxPropertyValidator class WXDLLEXPORT wxPropertyListValidator: public wxPropertyValidator
{ {
DECLARE_DYNAMIC_CLASS(wxPropertyListValidator) DECLARE_DYNAMIC_CLASS(wxPropertyListValidator)
protected: protected:
@@ -269,7 +269,7 @@ class wxPropertyListValidator: public wxPropertyValidator
* A default dialog box class to use. * A default dialog box class to use.
*/ */
class wxPropertyListDialog: public wxDialog class WXDLLEXPORT wxPropertyListDialog: public wxDialog
{ {
DECLARE_CLASS(wxPropertyListDialog) DECLARE_CLASS(wxPropertyListDialog)
public: public:
@@ -293,7 +293,7 @@ DECLARE_EVENT_TABLE()
* A default panel class to use. * A default panel class to use.
*/ */
class wxPropertyListPanel: public wxPanel class WXDLLEXPORT wxPropertyListPanel: public wxPanel
{ {
DECLARE_CLASS(wxPropertyListPanel) DECLARE_CLASS(wxPropertyListPanel)
public: public:
@@ -326,7 +326,7 @@ DECLARE_EVENT_TABLE()
* A default frame class to use. * A default frame class to use.
*/ */
class wxPropertyListFrame: public wxFrame class WXDLLEXPORT wxPropertyListFrame: public wxFrame
{ {
DECLARE_CLASS(wxPropertyListFrame) DECLARE_CLASS(wxPropertyListFrame)
public: public:
@@ -354,7 +354,7 @@ class wxPropertyListFrame: public wxFrame
* Some default validators * Some default validators
*/ */
class wxRealListValidator: public wxPropertyListValidator class WXDLLEXPORT wxRealListValidator: public wxPropertyListValidator
{ {
DECLARE_DYNAMIC_CLASS(wxRealListValidator) DECLARE_DYNAMIC_CLASS(wxRealListValidator)
public: public:
@@ -381,7 +381,7 @@ class wxRealListValidator: public wxPropertyListValidator
float m_realMax; float m_realMax;
}; };
class wxIntegerListValidator: public wxPropertyListValidator class WXDLLEXPORT wxIntegerListValidator: public wxPropertyListValidator
{ {
DECLARE_DYNAMIC_CLASS(wxIntegerListValidator) DECLARE_DYNAMIC_CLASS(wxIntegerListValidator)
public: public:
@@ -408,7 +408,7 @@ class wxIntegerListValidator: public wxPropertyListValidator
long m_integerMax; long m_integerMax;
}; };
class wxBoolListValidator: public wxPropertyListValidator class WXDLLEXPORT wxBoolListValidator: public wxPropertyListValidator
{ {
DECLARE_DYNAMIC_CLASS(wxBoolListValidator) DECLARE_DYNAMIC_CLASS(wxBoolListValidator)
protected: protected:
@@ -437,7 +437,7 @@ class wxBoolListValidator: public wxPropertyListValidator
virtual bool OnDoubleClick(wxProperty *property, wxPropertyListView *view, wxWindow *parentWindow); virtual bool OnDoubleClick(wxProperty *property, wxPropertyListView *view, wxWindow *parentWindow);
}; };
class wxStringListValidator: public wxPropertyListValidator class WXDLLEXPORT wxStringListValidator: public wxPropertyListValidator
{ {
DECLARE_DYNAMIC_CLASS(wxStringListValidator) DECLARE_DYNAMIC_CLASS(wxStringListValidator)
public: public:
@@ -471,7 +471,7 @@ class wxStringListValidator: public wxPropertyListValidator
wxStringList* m_strings; wxStringList* m_strings;
}; };
class wxFilenameListValidator: public wxPropertyListValidator class WXDLLEXPORT wxFilenameListValidator: public wxPropertyListValidator
{ {
DECLARE_DYNAMIC_CLASS(wxFilenameListValidator) DECLARE_DYNAMIC_CLASS(wxFilenameListValidator)
public: public:
@@ -502,7 +502,7 @@ class wxFilenameListValidator: public wxPropertyListValidator
}; };
class wxColourListValidator: public wxPropertyListValidator class WXDLLEXPORT wxColourListValidator: public wxPropertyListValidator
{ {
DECLARE_DYNAMIC_CLASS(wxColourListValidator) DECLARE_DYNAMIC_CLASS(wxColourListValidator)
protected: protected:
@@ -523,7 +523,7 @@ class wxColourListValidator: public wxPropertyListValidator
void OnEdit(wxProperty *property, wxPropertyListView *view, wxWindow *parentWindow); void OnEdit(wxProperty *property, wxPropertyListView *view, wxWindow *parentWindow);
}; };
class wxListOfStringsListValidator: public wxPropertyListValidator class WXDLLEXPORT wxListOfStringsListValidator: public wxPropertyListValidator
{ {
DECLARE_DYNAMIC_CLASS(wxListOfStringsListValidator) DECLARE_DYNAMIC_CLASS(wxListOfStringsListValidator)
protected: protected: