-
Notifications
You must be signed in to change notification settings - Fork 3
/
main.cpp
90 lines (79 loc) · 3.19 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
/**********************************************************************
* main.cpp
**********************************************************************
* Copyright (C) 2024 MX Authors
*
* Authors: Dolphin Oracle
* MX Linux <http://mxlinux.org>
*
* This 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.
*
* 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 package. If not, see <http://www.gnu.org/licenses/>.
**********************************************************************/
#include <QApplication>
#include <QCommandLineParser>
#include <QDateTime>
#include <QDebug>
#include <QIcon>
#include <QLocale>
#include <QTranslator>
#include "mainwindow.h"
#include <unistd.h>
#include <version.h>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
if (a.arguments().contains("--version") || a.arguments().contains("-v")) {
qDebug() << "Version:" << VERSION;
return EXIT_SUCCESS;
}
QApplication::setWindowIcon(QIcon::fromTheme("preferences-desktop-locale"));
QApplication::setOrganizationName("MX-Linux");
QApplication::setApplicationVersion(VERSION);
QTranslator qtTran;
qtTran.load(QString("qt_") + QLocale::system().name());
a.installTranslator(&qtTran);
QTranslator appTran;
appTran.load(QString("mx-locale_") + QLocale::system().name(), "/usr/share/mx-locale/locale");
a.installTranslator(&appTran);
QCommandLineParser parser;
parser.setApplicationDescription(QObject::tr("MX Locale is a tool used for managing locale settings in MX Linux"));
parser.addHelpOption();
parser.addVersionOption();
parser.addOption({{"l", "only-lang"}, QObject::tr("Show only language selection tab.")});
parser.addOption({{"f", "full-categories"}, QObject::tr("Show all locale categories.")});
parser.process(a);
// Root guard
QFile loginUidFile {"/proc/self/loginuid"};
if (loginUidFile.open(QIODevice::ReadOnly)) {
QString loginUid = QString(loginUidFile.readAll()).trimmed();
loginUidFile.close();
if (loginUid == "0") {
QMessageBox::critical(
nullptr, QObject::tr("Error"),
QObject::tr(
"You seem to be logged in as root, please log out and log in as normal user to use this program."));
exit(EXIT_FAILURE);
}
}
if (getuid() != 0) {
if (!QFile::exists("/usr/bin/pkexec") && !QFile::exists("/usr/bin/gksu")) {
QMessageBox::critical(nullptr, QObject::tr("Error"),
QObject::tr("You must run this program with admin access."));
exit(EXIT_FAILURE);
}
}
qDebug() << "Program Version:" << VERSION;
MainWindow w(parser);
w.show();
return a.exec();
}