From: Vadim Zeitlin Date: Sat, 4 Nov 2006 20:03:48 +0000 (+0000) Subject: moved wxCollapsiblePane to core from adv X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/3c6fa82663b728ef9771caad39cff1c6b3da170c moved wxCollapsiblePane to core from adv git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43054 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/build/bakefiles/files.bkl b/build/bakefiles/files.bkl index 15a5fe9307..7333fdbeb6 100644 --- a/build/bakefiles/files.bkl +++ b/build/bakefiles/files.bkl @@ -655,6 +655,7 @@ IMPORTANT: please read docs/tech/tn0016.txt before modifying this file! src/generic/choicdgg.cpp src/generic/choicbkg.cpp src/generic/clrpickerg.cpp + src/generic/collpaneg.cpp src/generic/combog.cpp src/generic/dcpsg.cpp src/generic/dirctrlg.cpp @@ -689,6 +690,7 @@ IMPORTANT: please read docs/tech/tn0016.txt before modifying this file! wx/choicdlg.h wx/choice.h wx/cmndata.h + wx/collpane.h wx/combo.h wx/combobox.h wx/control.h @@ -984,6 +986,7 @@ IMPORTANT: please read docs/tech/tn0016.txt before modifying this file! src/gtk/checkbox.cpp src/gtk/checklst.cpp src/gtk/choice.cpp + src/gtk/collpane.cpp src/gtk/colordlg.cpp src/gtk/combobox.cpp src/gtk/control.cpp @@ -1032,6 +1035,7 @@ IMPORTANT: please read docs/tech/tn0016.txt before modifying this file! wx/gtk/button.h wx/gtk/checkbox.h wx/gtk/checklst.h + wx/gtk/collpane.h wx/gtk/colordlg.h wx/gtk/choice.h wx/gtk/combobox.h @@ -2635,7 +2639,6 @@ IMPORTANT: please read docs/tech/tn0016.txt before modifying this file! src/generic/aboutdlgg.cpp src/generic/bmpcboxg.cpp src/generic/calctrl.cpp - src/generic/collpaneg.cpp src/generic/datavgen.cpp src/generic/datectlg.cpp src/generic/grid.cpp @@ -2657,7 +2660,6 @@ IMPORTANT: please read docs/tech/tn0016.txt before modifying this file! wx/animdecod.h wx/bmpcbox.h wx/calctrl.h - wx/collpane.h wx/dataview.h wx/dateevt.h wx/dcbuffer.h @@ -2665,7 +2667,6 @@ IMPORTANT: please read docs/tech/tn0016.txt before modifying this file! wx/generic/aboutdlgg.h wx/generic/bmpcbox.h wx/generic/calctrl.h - wx/generic/collpaneg.h wx/generic/datectrl.h wx/generic/dataview.h wx/generic/grid.h @@ -2782,7 +2783,6 @@ IMPORTANT: please read docs/tech/tn0016.txt before modifying this file! src/generic/animateg.cpp src/gtk/aboutdlg.cpp src/gtk/animate.cpp - src/gtk/collpane.cpp src/gtk/dataview.cpp src/gtk/taskbar.cpp src/gtk/eggtrayicon.c @@ -2790,7 +2790,6 @@ IMPORTANT: please read docs/tech/tn0016.txt before modifying this file! wx/generic/animate.h wx/gtk/animate.h - wx/gtk/collpane.h diff --git a/include/wx/collpane.h b/include/wx/collpane.h index 3148f8ba7e..ba26a422bb 100644 --- a/include/wx/collpane.h +++ b/include/wx/collpane.h @@ -27,7 +27,7 @@ #define wxCP_DEFAULT_STYLE (wxNO_BORDER) #define wxCP_NO_TLW_RESIZE (0x0002) -class WXDLLIMPEXP_ADV wxCollapsiblePaneBase : public wxControl +class WXDLLIMPEXP_CORE wxCollapsiblePaneBase : public wxControl { public: wxCollapsiblePaneBase() {} @@ -50,10 +50,10 @@ public: // ---------------------------------------------------------------------------- BEGIN_DECLARE_EVENT_TYPES() - DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_ADV, wxEVT_COMMAND_COLLPANE_CHANGED, 1102) + DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_CORE, wxEVT_COMMAND_COLLPANE_CHANGED, 1102) END_DECLARE_EVENT_TYPES() -class WXDLLIMPEXP_ADV wxCollapsiblePaneEvent : public wxCommandEvent +class WXDLLIMPEXP_CORE wxCollapsiblePaneEvent : public wxCommandEvent { public: wxCollapsiblePaneEvent() {} diff --git a/include/wx/generic/collpaneg.h b/include/wx/generic/collpaneg.h index 0e2b0f4915..daaea636fe 100644 --- a/include/wx/generic/collpaneg.h +++ b/include/wx/generic/collpaneg.h @@ -19,14 +19,14 @@ class WXDLLEXPORT wxButton; class WXDLLEXPORT wxStaticLine; // class name -extern WXDLLIMPEXP_DATA_ADV(const wxChar) wxGenericCollapsiblePaneNameStr[]; +extern WXDLLIMPEXP_DATA_CORE(const wxChar) wxGenericCollapsiblePaneNameStr[]; // ---------------------------------------------------------------------------- // wxGenericCollapsiblePane // ---------------------------------------------------------------------------- -class WXDLLIMPEXP_ADV wxGenericCollapsiblePane : public wxCollapsiblePaneBase +class WXDLLIMPEXP_CORE wxGenericCollapsiblePane : public wxCollapsiblePaneBase { public: wxGenericCollapsiblePane() { Init(); } diff --git a/include/wx/gtk/collpane.h b/include/wx/gtk/collpane.h index b5455c37d9..72ece131ed 100644 --- a/include/wx/gtk/collpane.h +++ b/include/wx/gtk/collpane.h @@ -14,13 +14,13 @@ #include "wx/generic/collpaneg.h" -extern WXDLLIMPEXP_DATA_ADV(const wxChar) wxCollapsiblePaneNameStr[]; +extern WXDLLIMPEXP_DATA_CORE(const wxChar) wxCollapsiblePaneNameStr[]; // ---------------------------------------------------------------------------- // wxCollapsiblePane // ---------------------------------------------------------------------------- -class WXDLLIMPEXP_ADV wxCollapsiblePane : public wxGenericCollapsiblePane +class WXDLLIMPEXP_CORE wxCollapsiblePane : public wxGenericCollapsiblePane { public: wxCollapsiblePane() { Init(); }