2004-10-17 21:43:08 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2004-10-18 22:35:51 +00:00
|
|
|
// Name: wx/stdpaths.h
|
|
|
|
// Purpose: declaration of wxStandardPaths class
|
2004-10-17 21:43:08 +00:00
|
|
|
// Author: Vadim Zeitlin
|
|
|
|
// Modified by:
|
|
|
|
// Created: 2004-10-17
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) 2004 Vadim Zeitlin <vadim@wxwindows.org>
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2004-10-18 23:28:41 +00:00
|
|
|
#ifndef _WX_STDPATHS_H_
|
|
|
|
#define _WX_STDPATHS_H_
|
2004-10-17 21:43:08 +00:00
|
|
|
|
2005-03-07 22:37:58 +00:00
|
|
|
#include "wx/defs.h"
|
|
|
|
|
|
|
|
#if wxUSE_STDPATHS
|
|
|
|
|
2004-10-19 18:49:02 +00:00
|
|
|
#include "wx/string.h"
|
|
|
|
|
2004-10-17 21:43:08 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
2004-10-18 22:35:51 +00:00
|
|
|
// wxStandardPaths returns the standard locations in the file system
|
2004-10-17 21:43:08 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2004-10-19 18:49:02 +00:00
|
|
|
class WXDLLIMPEXP_BASE wxStandardPathsBase
|
2004-10-17 21:43:08 +00:00
|
|
|
{
|
|
|
|
public:
|
2004-10-19 18:49:02 +00:00
|
|
|
// return the global standard paths object
|
2004-11-12 21:21:00 +00:00
|
|
|
static wxStandardPathsBase& Get();
|
2004-10-18 23:27:37 +00:00
|
|
|
|
|
|
|
|
2004-10-17 21:43:08 +00:00
|
|
|
// return the directory with system config files:
|
2004-10-19 18:49:02 +00:00
|
|
|
// /etc under Unix, c:\Documents and Settings\All Users\Application Data
|
|
|
|
// under Windows, /Library/Preferences for Mac
|
|
|
|
virtual wxString GetConfigDir() const = 0;
|
2004-10-17 21:43:08 +00:00
|
|
|
|
|
|
|
// return the directory for the user config files:
|
|
|
|
// $HOME under Unix, c:\Documents and Settings\username under Windows,
|
|
|
|
// ~/Library/Preferences under Mac
|
|
|
|
//
|
|
|
|
// only use this if you have a single file to put there, otherwise
|
|
|
|
// GetUserDataDir() is more appropriate
|
2004-10-19 18:49:02 +00:00
|
|
|
virtual wxString GetUserConfigDir() const = 0;
|
2004-10-17 21:43:08 +00:00
|
|
|
|
|
|
|
// return the location of the applications global, i.e. not user-specific,
|
|
|
|
// data files
|
|
|
|
//
|
2004-10-18 23:27:37 +00:00
|
|
|
// prefix/share/appname under Unix, c:\Program Files\appname under Windows,
|
|
|
|
// appname.app/Contents/SharedSupport app bundle directory under Mac
|
2004-10-19 18:49:02 +00:00
|
|
|
virtual wxString GetDataDir() const = 0;
|
2004-10-17 21:43:08 +00:00
|
|
|
|
|
|
|
// return the location for application data files which are host-specific
|
|
|
|
//
|
|
|
|
// same as GetDataDir() except under Unix where it is /etc/appname
|
2004-10-19 18:49:02 +00:00
|
|
|
virtual wxString GetLocalDataDir() const;
|
2004-10-17 21:43:08 +00:00
|
|
|
|
|
|
|
// return the directory for the user-dependent application data files
|
|
|
|
//
|
|
|
|
// $HOME/.appname under Unix,
|
|
|
|
// c:\Documents and Settings\username\Application Data\appname under Windows
|
2004-10-18 23:27:37 +00:00
|
|
|
// and ~/Library/Application Support/appname under Mac
|
2004-10-19 18:49:02 +00:00
|
|
|
virtual wxString GetUserDataDir() const = 0;
|
2004-10-17 21:43:08 +00:00
|
|
|
|
|
|
|
// return the directory for user data files which shouldn't be shared with
|
|
|
|
// the other machines
|
|
|
|
//
|
|
|
|
// same as GetUserDataDir() for all platforms except Windows where it is
|
|
|
|
// the "Local Settings\Application Data\appname" directory
|
2004-10-19 18:49:02 +00:00
|
|
|
virtual wxString GetUserLocalDataDir() const;
|
2004-10-17 21:43:08 +00:00
|
|
|
|
|
|
|
// return the directory where the loadable modules (plugins) live
|
|
|
|
//
|
2004-10-18 23:27:37 +00:00
|
|
|
// prefix/lib/appname under Unix, program directory under Windows and
|
2004-10-17 21:43:08 +00:00
|
|
|
// Contents/Plugins app bundle subdirectory under Mac
|
2004-10-19 18:49:02 +00:00
|
|
|
virtual wxString GetPluginsDir() const = 0;
|
|
|
|
|
|
|
|
|
|
|
|
// virtual dtor for the base class
|
|
|
|
virtual ~wxStandardPathsBase();
|
2004-10-20 00:34:32 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
// append "/appname" suffix if the app name is set (doesn't append the
|
|
|
|
// slash if dir already ends with a slash or dot)
|
|
|
|
static wxString AppendAppName(const wxString& dir);
|
2004-10-17 21:43:08 +00:00
|
|
|
};
|
|
|
|
|
2004-10-19 18:49:02 +00:00
|
|
|
#if defined(__WXMSW__)
|
|
|
|
#include "wx/msw/stdpaths.h"
|
2004-11-12 21:21:00 +00:00
|
|
|
// We want CoreFoundation paths on both CarbonLib and Darwin (for all ports)
|
|
|
|
#elif defined(__WXMAC__) || defined(__DARWIN__)
|
2004-10-29 21:38:33 +00:00
|
|
|
#include "wx/mac/corefoundation/stdpaths.h"
|
2004-11-06 22:14:04 +00:00
|
|
|
#elif defined(__OS2__)
|
|
|
|
#include "wx/os2/stdpaths.h"
|
2004-10-19 18:49:02 +00:00
|
|
|
#elif defined(__UNIX__)
|
|
|
|
#include "wx/unix/stdpaths.h"
|
2005-02-25 09:44:49 +00:00
|
|
|
#elif defined(__PALMOS__)
|
|
|
|
#include "wx/palmos/stdpaths.h"
|
2004-10-19 18:49:02 +00:00
|
|
|
#endif
|
|
|
|
|
2005-03-07 22:37:58 +00:00
|
|
|
#endif // wxUSE_STDPATHS
|
|
|
|
|
2004-10-18 23:28:41 +00:00
|
|
|
#endif // _WX_STDPATHS_H_
|
2004-10-17 21:43:08 +00:00
|
|
|
|