2004-10-19 18:51:17 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: wx/unix/stdpaths.h
|
|
|
|
// Purpose: wxStandardPaths for Unix systems
|
|
|
|
// Author: Vadim Zeitlin
|
|
|
|
// Modified by:
|
|
|
|
// Created: 2004-10-19
|
|
|
|
// Copyright: (c) 2004 Vadim Zeitlin <vadim@wxwindows.org>
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_UNIX_STDPATHS_H_
|
|
|
|
#define _WX_UNIX_STDPATHS_H_
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxStandardPaths
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class WXDLLIMPEXP_BASE wxStandardPaths : public wxStandardPathsBase
|
|
|
|
{
|
|
|
|
public:
|
2006-10-22 14:19:50 +00:00
|
|
|
// tries to determine the installation prefix automatically (Linux only right
|
|
|
|
// now) and returns /usr/local if it failed
|
|
|
|
void DetectPrefix();
|
|
|
|
|
2004-10-19 18:51:17 +00:00
|
|
|
// set the program installation directory which is /usr/local by default
|
|
|
|
//
|
|
|
|
// under some systems (currently only Linux) the program directory can be
|
|
|
|
// determined automatically but for portable programs you should always set
|
2005-05-31 09:20:43 +00:00
|
|
|
// it explicitly
|
2004-10-19 18:51:17 +00:00
|
|
|
void SetInstallPrefix(const wxString& prefix);
|
|
|
|
|
|
|
|
// get the program installation prefix
|
|
|
|
//
|
|
|
|
// if the prefix had been previously by SetInstallPrefix, returns that
|
2006-10-22 14:19:50 +00:00
|
|
|
// value, otherwise calls DetectPrefix()
|
2004-10-19 18:51:17 +00:00
|
|
|
wxString GetInstallPrefix() const;
|
|
|
|
|
|
|
|
|
|
|
|
// implement base class pure virtuals
|
2014-03-30 00:02:23 +00:00
|
|
|
virtual wxString GetExecutablePath() const wxOVERRIDE;
|
|
|
|
virtual wxString GetConfigDir() const wxOVERRIDE;
|
|
|
|
virtual wxString GetUserConfigDir() const wxOVERRIDE;
|
|
|
|
virtual wxString GetDataDir() const wxOVERRIDE;
|
|
|
|
virtual wxString GetLocalDataDir() const wxOVERRIDE;
|
|
|
|
virtual wxString GetUserDataDir() const wxOVERRIDE;
|
|
|
|
virtual wxString GetPluginsDir() const wxOVERRIDE;
|
2007-05-23 19:10:36 +00:00
|
|
|
virtual wxString GetLocalizedResourcesDir(const wxString& lang,
|
2014-03-30 00:02:23 +00:00
|
|
|
ResourceCat category) const wxOVERRIDE;
|
2008-04-08 13:52:39 +00:00
|
|
|
#ifndef __VMS
|
2015-09-07 20:06:48 +00:00
|
|
|
virtual wxString GetUserDir(Dir userDir) const wxOVERRIDE;
|
2008-04-08 13:52:39 +00:00
|
|
|
#endif
|
2017-03-09 16:48:42 +00:00
|
|
|
virtual wxString MakeConfigFileName(const wxString& basename,
|
2018-03-17 16:17:05 +00:00
|
|
|
ConfigFileConv conv = ConfigFileConv_Ext
|
|
|
|
) const wxOVERRIDE;
|
2004-10-20 00:35:26 +00:00
|
|
|
|
2013-07-06 23:14:21 +00:00
|
|
|
protected:
|
|
|
|
// Ctor is protected, use wxStandardPaths::Get() instead of instantiating
|
|
|
|
// objects of this class directly.
|
|
|
|
wxStandardPaths() { }
|
|
|
|
|
2004-10-20 00:35:26 +00:00
|
|
|
private:
|
|
|
|
wxString m_prefix;
|
2004-10-19 18:51:17 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _WX_UNIX_STDPATHS_H_
|
|
|
|
|