// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(__APPLE__)
#pragma interface "pe_adv.h"
#endif
+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