]> git.saurik.com Git - wxWidgets.git/blame - include/wx/msw/stdpaths.h
added Get/SetItemToolTip() (and implemented them for MSW) to allow setting tooltips...
[wxWidgets.git] / include / wx / msw / stdpaths.h
CommitLineData
40e8ee37
VZ
1///////////////////////////////////////////////////////////////////////////////
2// Name: wx/msw/stdpaths.h
3// Purpose: wxStandardPaths for Win32
4// Author: Vadim Zeitlin
5// Modified by:
6// Created: 2004-10-19
7// RCS-ID: $Id$
8// Copyright: (c) 2004 Vadim Zeitlin <vadim@wxwindows.org>
9// Licence: wxWindows licence
10///////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_MSW_STDPATHS_H_
13#define _WX_MSW_STDPATHS_H_
14
15// ----------------------------------------------------------------------------
16// wxStandardPaths
17// ----------------------------------------------------------------------------
18
19class WXDLLIMPEXP_BASE wxStandardPaths : public wxStandardPathsBase
20{
21public:
22 // implement base class pure virtuals
23 virtual wxString GetConfigDir() const;
24 virtual wxString GetUserConfigDir() const;
25 virtual wxString GetDataDir() const;
26 virtual wxString GetUserDataDir() const;
27 virtual wxString GetUserLocalDataDir() const;
28 virtual wxString GetPluginsDir() const;
17af82fb 29 virtual wxString GetDocumentsDir() const;
40e8ee37
VZ
30
31protected:
40e8ee37
VZ
32 // get the path corresponding to the given standard CSIDL_XXX constant
33 static wxString DoGetDirectory(int csidl);
adaa49a8
VZ
34
35 // return the directory of the application itself
36 static wxString GetAppDir();
40e8ee37
VZ
37};
38
39// ----------------------------------------------------------------------------
40// wxStandardPathsWin16: this class is for internal use only
41// ----------------------------------------------------------------------------
42
43// override config file locations to be compatible with the values used by
44// wxFileConfig (dating from Win16 days which explains the class name)
45class WXDLLIMPEXP_BASE wxStandardPathsWin16 : public wxStandardPaths
46{
47public:
48 virtual wxString GetConfigDir() const;
49 virtual wxString GetUserConfigDir() const;
50};
51
52#endif // _WX_MSW_STDPATHS_H_