]> git.saurik.com Git - wxWidgets.git/blobdiff - contrib/utils/wxrcedit/pe_adv.h
Applied patch [ 919791 ] [widgets sample] Update wxListbox selection handling
[wxWidgets.git] / contrib / utils / wxrcedit / pe_adv.h
index f99c1b726ede97a1c3e4b57973e1d854ecbbd26d..802dbd52ecdbf7d18177547002282cdb0ac8012e 100644 (file)
@@ -7,7 +7,7 @@
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(__APPLE__)
     #pragma interface "pe_adv.h"
 #endif
 
@@ -76,6 +76,26 @@ class PropEditCtrlFlags : public PropEditCtrlTxt
 
 
 
+class PropEditCtrlFile : public PropEditCtrlTxt
+{
+    public:
+        PropEditCtrlFile(PropertiesFrame *propFrame)
+            : PropEditCtrlTxt(propFrame) {}
 
+        virtual bool HasDetails() { return TRUE; }
+        virtual void OnDetails();
+        
+        virtual wxString GetFileTypes();
+};
+
+
+class PropEditCtrlImageFile : public PropEditCtrlFile
+{
+    public:
+        PropEditCtrlImageFile(PropertiesFrame *propFrame)
+            : PropEditCtrlFile(propFrame) {}
+
+        virtual wxString GetFileTypes();
+};
 
 #endif