+public: // overrides from wxGenericDirDialog
+
+ wxString GetPath() const;
+ void SetPath(const wxString& path);
+
+ virtual int ShowModal();
+ virtual bool Show( bool show = true );
+
+
+protected:
+ // override this from wxTLW since the native
+ // form doesn't have any m_wxwindow
+ virtual void DoSetSize(int x, int y,
+ int width, int height,
+ int sizeFlags = wxSIZE_AUTO);
+
+
+private:
+ DECLARE_DYNAMIC_CLASS(wxDirDialog)
+ DECLARE_EVENT_TABLE()
+ void OnFakeOk( wxCommandEvent &event );
+};
+
+#endif // __GTKDIRDLGH__