git-svn-id: svn://10.65.10.50/branches/R_10_00@23289 c028cbd2-c16b-5b4b-a496-9718f37d4682
		
			
				
	
	
		
			54 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			54 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| ///////////////////////////////////////////////////////////////////////////////
 | |
| // Name:        wx/msw/stdpaths.h
 | |
| // Purpose:     wxStandardPaths for Win32
 | |
| // Author:      Vadim Zeitlin
 | |
| // Modified by:
 | |
| // Created:     2004-10-19
 | |
| // RCS-ID:      $Id: stdpaths.h 43340 2006-11-12 12:58:10Z RR $
 | |
| // Copyright:   (c) 2004 Vadim Zeitlin <vadim@wxwindows.org>
 | |
| // Licence:     wxWindows licence
 | |
| ///////////////////////////////////////////////////////////////////////////////
 | |
| 
 | |
| #ifndef _WX_MSW_STDPATHS_H_
 | |
| #define _WX_MSW_STDPATHS_H_
 | |
| 
 | |
| // ----------------------------------------------------------------------------
 | |
| // wxStandardPaths
 | |
| // ----------------------------------------------------------------------------
 | |
| 
 | |
| class WXDLLIMPEXP_BASE wxStandardPaths : public wxStandardPathsBase
 | |
| {
 | |
| public:
 | |
|     // implement base class pure virtuals
 | |
|     virtual wxString GetExecutablePath() const;
 | |
|     virtual wxString GetConfigDir() const;
 | |
|     virtual wxString GetUserConfigDir() const;
 | |
|     virtual wxString GetDataDir() const;
 | |
|     virtual wxString GetUserDataDir() const;
 | |
|     virtual wxString GetUserLocalDataDir() const;
 | |
|     virtual wxString GetPluginsDir() const;
 | |
|     virtual wxString GetDocumentsDir() const;
 | |
| 
 | |
| protected:
 | |
|     // get the path corresponding to the given standard CSIDL_XXX constant
 | |
|     static wxString DoGetDirectory(int csidl);
 | |
| 
 | |
|     // return the directory of the application itself
 | |
|     static wxString GetAppDir();
 | |
| };
 | |
| 
 | |
| // ----------------------------------------------------------------------------
 | |
| // wxStandardPathsWin16: this class is for internal use only
 | |
| // ----------------------------------------------------------------------------
 | |
| 
 | |
| // override config file locations to be compatible with the values used by
 | |
| // wxFileConfig (dating from Win16 days which explains the class name)
 | |
| class WXDLLIMPEXP_BASE wxStandardPathsWin16 : public wxStandardPaths
 | |
| {
 | |
| public:
 | |
|     virtual wxString GetConfigDir() const;
 | |
|     virtual wxString GetUserConfigDir() const;
 | |
| };
 | |
| 
 | |
| #endif // _WX_MSW_STDPATHS_H_
 |