]> git.saurik.com Git - wxWidgets.git/blobdiff - contrib/include/wx/gizmos/editlbox.h
Doesn't conform to license conditions, so removing
[wxWidgets.git] / contrib / include / wx / gizmos / editlbox.h
index b73e17f94ae94880405557da1f64d2c68c5174a2..cbe61488bc6633dfba2fa43bdd08929b46835d47 100644 (file)
 #ifndef __WX_EDITLBOX_H__
 #define __WX_EDITLBOX_H__
 
 #ifndef __WX_EDITLBOX_H__
 #define __WX_EDITLBOX_H__
 
-#ifdef __GNUG__
-       #pragma interface "editlbox.h"
+#if defined(__GNUG__) && !defined(__APPLE__)
+    #pragma interface "editlbox.h"
 #endif
 
 #include "wx/panel.h"
 #endif
 
 #include "wx/panel.h"
-
-#ifdef GIZMOISDLL
-#define GIZMODLLEXPORT WXDLLEXPORT
-#else
-#define GIZMODLLEXPORT
-#endif
-
+#include "wx/gizmos/gizmos.h"
 
 class WXDLLEXPORT wxBitmapButton;
 class WXDLLEXPORT wxListCtrl;
 
 class WXDLLEXPORT wxBitmapButton;
 class WXDLLEXPORT wxListCtrl;
@@ -35,9 +29,9 @@ class WXDLLEXPORT wxListEvent;
 // This class provides a composite control that lets the
 // user easily enter list of strings
 
 // This class provides a composite control that lets the
 // user easily enter list of strings
 
-class GIZMODLLEXPORT wxEditableListBox : public wxPanel
+class WXDLLIMPEXP_GIZMOS wxEditableListBox : public wxPanel
 {
 {
-       DECLARE_CLASS(wxEditableListBox);
+    DECLARE_CLASS(wxEditableListBox);
 
 public:
     wxEditableListBox(wxWindow *parent, wxWindowID id,
 
 public:
     wxEditableListBox(wxWindow *parent, wxWindowID id,
@@ -50,6 +44,13 @@ public:
     void SetStrings(const wxArrayString& strings);
     void GetStrings(wxArrayString& strings);
 
     void SetStrings(const wxArrayString& strings);
     void GetStrings(wxArrayString& strings);
 
+    wxListCtrl* GetListCtrl()       { return m_listCtrl; }
+    wxBitmapButton* GetDelButton()  { return m_bDel; }
+    wxBitmapButton* GetNewButton()  { return m_bNew; }
+    wxBitmapButton* GetUpButton()   { return m_bUp; }
+    wxBitmapButton* GetDownButton() { return m_bDown; }
+    wxBitmapButton* GetEditButton() { return m_bEdit; }
+
 protected:
     wxBitmapButton *m_bDel, *m_bNew, *m_bUp, *m_bDown, *m_bEdit;
     wxListCtrl *m_listCtrl;
 protected:
     wxBitmapButton *m_bDel, *m_bNew, *m_bUp, *m_bDown, *m_bEdit;
     wxListCtrl *m_listCtrl;