]> git.saurik.com Git - wxWidgets.git/blobdiff - contrib/include/wx/gizmos/editlbox.h
Moved line-drawing to splittree implementation.
[wxWidgets.git] / contrib / include / wx / gizmos / editlbox.h
index 256c50511fd35aaf62b4e00288020b04707f51df..43e339d8d7a817945c3145c6edfa8ef4b12b8c3b 100644 (file)
 
 #include "wx/panel.h"
 
+#ifdef GIZMOISDLL
+#define GIZMODLLEXPORT WXDLLEXPORT
+#else
+#define GIZMODLLEXPORT
+#endif
+
 
 class WXDLLEXPORT wxBitmapButton;
 class WXDLLEXPORT wxListCtrl;
 class WXDLLEXPORT wxListEvent;
-               
+
 // This class provides a composite control that lets the
 // user easily enter list of strings
 
-class WXDLLEXPORT wxEditableListBox : public wxPanel
+class GIZMODLLEXPORT wxEditableListBox : public wxPanel
 {
        DECLARE_CLASS(wxEditableListBox);
 
@@ -33,7 +39,8 @@ public:
     wxEditableListBox(wxWindow *parent, wxWindowID id,
                       const wxString& label,
                       const wxPoint& pos = wxDefaultPosition,
-                      const wxSize& size = wxDefaultSize);
+                      const wxSize& size = wxDefaultSize,
+                      const wxString& name = wxT("editableListBox"));
 
     void SetStrings(const wxArrayString& strings);
     void GetStrings(wxArrayString& strings);