]> git.saurik.com Git - wxWidgets.git/blob - include/wx/palmos/stdpaths.h
Fix wxStandardDialogLayoutAdapter compilation with wxUSE_BUTTON==0.
[wxWidgets.git] / include / wx / palmos / stdpaths.h
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/palmos/stdpaths.h
3 // Purpose: wxStandardPaths for PalmOS systems
4 // Author: Wlodzimierz ABX Skiba
5 // Modified by:
6 // Created: 2005-02-25
7 // RCS-ID: $Id$
8 // Copyright: (c) 2005 Wlodzimierz Skiba
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_PALMOS_STDPATHS_H_
13 #define _WX_PALMOS_STDPATHS_H_
14
15 // ----------------------------------------------------------------------------
16 // wxStandardPaths
17 // ----------------------------------------------------------------------------
18
19 class WXDLLIMPEXP_BASE wxStandardPaths : public wxStandardPathsBase
20 {
21 public:
22 void SetInstallPrefix(const wxString& prefix) { m_prefix = prefix; }
23 wxString GetInstallPrefix() const { return m_prefix; }
24 virtual wxString GetExecutablePath() const { return m_prefix; }
25 virtual wxString GetConfigDir() const { return m_prefix; }
26 virtual wxString GetUserConfigDir() const { return m_prefix; }
27 virtual wxString GetDataDir() const { return m_prefix; }
28 virtual wxString GetLocalDataDir() const { return m_prefix; }
29 virtual wxString GetUserDataDir() const { return m_prefix; }
30 virtual wxString GetPluginsDir() const { return m_prefix; }
31
32 private:
33 wxString m_prefix;
34 };
35
36 #endif // _WX_PALMOS_STDPATHS_H_