00001 /* ScummVM - Graphic Adventure Engine00002 *00003 * ScummVM is the legal property of its developers, whose names00004 * are too numerous to list here. Please refer to the COPYRIGHT00005 * file distributed with this source distribution.00006 *00007 * This program is free software; you can redistribute it and/or00008 * modify it under the terms of the GNU General Public License00009 * as published by the Free Software Foundation; either version 200010 * of the License, or (at your option) any later version.00011 *00012 * This program is distributed in the hope that it will be useful,00013 * but WITHOUT ANY WARRANTY; without even the implied warranty of00014 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the00015 * GNU General Public License for more details.00016 *00017 * You should have received a copy of the GNU General Public License00018 * along with this program; if not, write to the Free Software00019 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.00020 *00021 */00022
00023 #ifndef PLATFORM_SDL_POSIX_H00024 #define PLATFORM_SDL_POSIX_H00025
00026 #include "backends/platform/sdl/sdl.h"00027
00028class OSystem_POSIX : publicOSystem_SDL {
00029 public:
00030 // Let the subclasses be able to change _baseConfigName in the constructor00031 OSystem_POSIX(Common::String baseConfigName = "residualvm.ini");
00032virtual~OSystem_POSIX() {}
00033
00034 virtualboolhasFeature(Feature f);
00035
00036 virtualbooldisplayLogFile();
00037
00038 virtualboolopenUrl(constCommon::String &url);
00039
00040 virtualvoidinit();
00041 virtualvoidinitBackend();
00042
00043 virtualvoidaddSysArchivesToSearchSet(Common::SearchSet &s, int priority = 0);
00044
00045 Common::StringgetScreenshotsPath() override;
00046
00047 protected:
00053Common::String_baseConfigName;
00054
00063Common::String_logFilePath;
00064
00065 virtualCommon::StringgetDefaultConfigFileName();
00066
00067 virtualCommon::WriteStream *createLogFile();
00068
00069 Common::StringgetXdgUserDir(constchar *name);
00070
00071 virtualAudioCDManager *createAudioCDManager();
00072
00073 boollaunchBrowser(constCommon::String& client, constCommon::String &url);
00074 };
00075
00076 #endif
Generated on Sat Feb 23 2019 05:01:14 for ResidualVM by 1.7.1