Add import/export attributes

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35056 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Michael Wetherell
2005-08-03 00:53:09 +00:00
parent 20123d4958
commit 94c7b08817
13 changed files with 16 additions and 16 deletions

View File

@@ -34,7 +34,7 @@ class WXDLLEXPORT wxTabView;
// wxNotebook
// ----------------------------------------------------------------------------
class wxNotebook : public wxNotebookBase
class WXDLLIMPEXP_CORE wxNotebook : public wxNotebookBase
{
public:
// ctors

View File

@@ -19,7 +19,7 @@
#include "wx/listbox.h"
class wxCheckListBox : public wxCheckListBoxBase
class WXDLLIMPEXP_CORE wxCheckListBox : public wxCheckListBoxBase
{
DECLARE_DYNAMIC_CLASS(wxCheckListBox)

View File

@@ -18,7 +18,7 @@
#if wxUSE_CLIPBOARD
class wxDataObject;
class WXDLLIMPEXP_CORE wxDataObject;
struct wxDataIdToDataObject;
#include "wx/list.h"
@@ -41,7 +41,7 @@ bool WXDLLEXPORT wxGetClipboardFormatName(wxDataFormat dataFormat, char *formatN
// wxClipboard
//-----------------------------------------------------------------------------
class wxClipboard : public wxClipboardBase
class WXDLLIMPEXP_CORE wxClipboard : public wxClipboardBase
{
public:
wxClipboard();

View File

@@ -12,7 +12,7 @@
#ifndef _WX_MOTIF_DATAFORM_H
#define _WX_MOTIF_DATAFORM_H
class wxDataFormat
class WXDLLIMPEXP_CORE wxDataFormat
{
public:
// the clipboard formats under Xt are Atoms

View File

@@ -18,7 +18,7 @@
// wxDataObject is the same as wxDataObjectBase under wxMotif
// ----------------------------------------------------------------------------
class wxDataObject : public wxDataObjectBase
class WXDLLIMPEXP_CORE wxDataObject : public wxDataObjectBase
{
public:
virtual ~wxDataObject();

View File

@@ -19,7 +19,7 @@
// wxBitmapDataObject is a specialization of wxDataObject for bitmaps
// ----------------------------------------------------------------------------
class wxBitmapDataObject : public wxBitmapDataObjectBase
class WXDLLIMPEXP_CORE wxBitmapDataObject : public wxBitmapDataObjectBase
{
public:
// ctors

View File

@@ -18,7 +18,7 @@
#include "wx/dcclient.h"
class wxMemoryDC : public wxWindowDC
class WXDLLIMPEXP_CORE wxMemoryDC : public wxWindowDC
{
DECLARE_DYNAMIC_CLASS(wxMemoryDC)

View File

@@ -23,7 +23,7 @@
class wxXFont;
// Font
class wxFont : public wxFontBase
class WXDLLIMPEXP_CORE wxFont : public wxFontBase
{
public:
// ctors and such

View File

@@ -20,13 +20,13 @@
#include "wx/font.h"
#include "wx/arrstr.h"
class wxFrame;
class WXDLLIMPEXP_CORE wxFrame;
// ----------------------------------------------------------------------------
// Menu
// ----------------------------------------------------------------------------
class wxMenu : public wxMenuBase
class WXDLLIMPEXP_CORE wxMenu : public wxMenuBase
{
public:
// ctors & dtor
@@ -112,7 +112,7 @@ private:
// Menu Bar
// ----------------------------------------------------------------------------
class wxMenuBar : public wxMenuBarBase
class WXDLLIMPEXP_CORE wxMenuBar : public wxMenuBarBase
{
public:
wxMenuBar() { Init(); }

View File

@@ -24,7 +24,7 @@ class WXDLLEXPORT wxMenuBar;
// wxMenuItem: an item in the menu, optionally implements owner-drawn behaviour
// ----------------------------------------------------------------------------
class wxMenuItem : public wxMenuItemBase
class WXDLLIMPEXP_CORE wxMenuItem : public wxMenuItemBase
{
public:
// ctor & dtor

View File

@@ -20,7 +20,7 @@
// wxPopupWindow
// ----------------------------------------------------------------------------
class wxPopupWindow : public wxPopupWindowBase
class WXDLLIMPEXP_CORE wxPopupWindow : public wxPopupWindowBase
{
public:
wxPopupWindow() { Init(); }

View File

@@ -16,7 +16,7 @@
#pragma interface "toplevel.h"
#endif
class wxTopLevelWindowMotif : public wxTopLevelWindowBase
class WXDLLIMPEXP_CORE wxTopLevelWindowMotif : public wxTopLevelWindowBase
{
public:
wxTopLevelWindowMotif() { Init(); }

View File

@@ -22,7 +22,7 @@
// wxWindow class for Motif - see also wxWindowBase
// ----------------------------------------------------------------------------
class wxWindow : public wxWindowBase
class WXDLLIMPEXP_CORE wxWindow : public wxWindowBase
{
friend class WXDLLEXPORT wxDC;
friend class WXDLLEXPORT wxWindowDC;