forked from v-kiniv/pulsar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
executable file
·67 lines (51 loc) · 1.94 KB
/
main.cpp
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
/* This file is part of Pulsar.
Copyright 2011, Vasily Kiniv <[email protected]>
Pulsar 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 3 of the License, or
(at your option) any later version.
Pulsar 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 Pulsar. If not, see <http://www.gnu.org/licenses/>.
*/
#include <QtGui/QApplication>
#include <QLocalSocket>
#include <QGst/Init>
#include "settings/settings.h"
#include "ui/pulsar.h"
int main(int argc, char *argv[])
{
// QApplication::setStyle(new QWindowsStyle);
QApplication a(argc, argv);
a.setApplicationName("Pulsar");
a.setApplicationVersion("0.9.2.4 beta");
// Check if instance of app is exists
QLocalSocket socket;
socket.connectToServer("945479168ffc177a8e968dd26eff61ce");
// if (socket.waitForConnected(500)) {
// qDebug() << "Already running instance of Pulsar. Exit." ;
// return 0; // Exit already a process running
// }
////
QGst::init(&argc, &argv);
Settings settings;
settings.load();
QTranslator translator;
QString language;
if(settings.getValue("general/language").toString() == "auto")
language = QLocale::system().name();
else
language = settings.getValue("general/language").toString();
QString lang_path = "/usr/share/pulsar/translations";
#ifdef Q_OS_WIN
lang_path = QApplication::applicationDirPath() + "/translations";
#endif
translator.load(lang_path+"/pulsar_" + language);
a.installTranslator(&translator);
Pulsar pulsar;
pulsar.show();
return a.exec();
}