]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/ctrlsub.h
added IMPLEMENT_APP_CONSOLE
[wxWidgets.git] / include / wx / ctrlsub.h
index 20c3e5b5a409fc078ff3eb4aae4c894b1497ea3b..fbe39dc4b9de316f79e6e32beac40825eec1afcd 100644 (file)
@@ -12,7 +12,7 @@
 #ifndef _WX_CTRLSUB_H_BASE_
 #define _WX_CTRLSUB_H_BASE_
 
-#if defined(__GNUG__) && !defined(__APPLE__)
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
     #pragma interface "controlwithitems.h"
 #endif
 
@@ -44,6 +44,10 @@ public:
     int Append(const wxString& item, wxClientData *clientData)
         { int n = DoAppend(item); SetClientObject(n, clientData); return n; }
 
+    // only for rtti needs (separate name)
+    void AppendString( const wxString& item)
+    { Append( item ) ; }
+
     // append several items at once to the control
     void Append(const wxArrayString& strings);
 
@@ -65,6 +69,7 @@ public:
     bool IsEmpty() const { return GetCount() == 0; }
 
     virtual wxString GetString(int n) const = 0;
+    wxArrayString GetStrings() const;
     virtual void SetString(int n, const wxString& s) = 0;
     virtual int FindString(const wxString& s) const = 0;
 
@@ -161,6 +166,9 @@ public:
     {
         return wxItemContainer::GetClientObject(n);
     }
+
+private:
+    DECLARE_NO_COPY_CLASS(wxControlWithItems)
 };
 
 #endif // wxUSE_CONTROLS