1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131
|
/* smplayer, GUI front-end for mplayer.
Copyright (C) 2006-2018 Ricardo Villalba <rvm@users.sourceforge.net>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "myapplication.h"
#include "smplayer.h"
#include <QDir>
#ifdef HDPI_SUPPORT
#include "paths.h"
#include "hdpisupport.h"
#if defined(PORTABLE_APP) && defined(Q_OS_WIN)
QString windowsApplicationPath() {
wchar_t my_path[_MAX_PATH+1];
GetModuleFileName(NULL, my_path,_MAX_PATH);
QString app_path = QString::fromWCharArray(my_path);
if (app_path.isEmpty()) return "";
QFileInfo fi(app_path);
return fi.absolutePath();
}
#endif
QString hdpiConfig() {
#ifdef PORTABLE_APP
return windowsApplicationPath();
#else
return Paths::configPath();
#endif
}
#endif // HDPI_SUPPORT
int main( int argc, char ** argv )
{
#ifdef HDPI_SUPPORT
QString hdpi_config_path = hdpiConfig();
HDPISupport * hdpi = 0;
if (!hdpi_config_path.isEmpty()) {
hdpi = new HDPISupport(hdpi_config_path);
}
#endif
MyApplication a( "smplayer", argc, argv );
/*
if (a.isRunning()) {
qDebug("Another instance is running. Exiting.");
return 0;
}
*/
a.setQuitOnLastWindowClosed(false);
#ifdef Q_OS_WIN
// Change the working directory to the application path
QDir::setCurrent(a.applicationDirPath());
#endif
#if QT_VERSION >= 0x040400
// Enable icons in menus
QCoreApplication::setAttribute(Qt::AA_DontShowIconsInMenus, false);
#endif
// Sets the config path
QString config_path;
#ifdef PORTABLE_APP
config_path = a.applicationDirPath();
#else
// If a smplayer.ini exists in the app path, will use that path
// for the config file by default
if (QFile::exists( a.applicationDirPath() + "/smplayer.ini" ) ) {
config_path = a.applicationDirPath();
qDebug("main: using existing %s", QString(config_path + "/smplayer.ini").toUtf8().data());
}
#endif
#ifdef Q_OS_WIN
QStringList args = a.winArguments();
#else
QStringList args = a.arguments();
#endif
int pos = args.indexOf("-config-path");
if ( pos != -1) {
if (pos+1 < args.count()) {
pos++;
config_path = args[pos];
// Delete from list
args.removeAt(pos);
args.removeAt(pos-1);
} else {
printf("Error: expected parameter for -config-path\r\n");
return SMPlayer::ErrorArgument;
}
}
SMPlayer * smplayer = new SMPlayer(config_path);
#ifdef HDPI_SUPPORT
qDebug() << "main: hdpi_config_path:" << hdpi_config_path;
#endif
SMPlayer::ExitCode c = smplayer->processArgs( args );
if (c != SMPlayer::NoExit) {
return c;
}
smplayer->start();
int r = a.exec();
delete smplayer;
#ifdef HDPI_SUPPORT
if (hdpi != 0) delete hdpi;
#endif
return r;
}
|