-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
41 lines (33 loc) · 989 Bytes
/
Copy pathmain.cpp
File metadata and controls
41 lines (33 loc) · 989 Bytes
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
#include "login.h"
#include "database.h"
#include <QApplication>
#include <QScreen>
#include <QLocale>
#include <QTranslator>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
QTranslator translator;
const QStringList uiLanguages = QLocale::system().uiLanguages();
for (const QString &locale : uiLanguages) {
const QString baseName = "CN_Proj_" + QLocale(locale).name();
if (translator.load(":/i18n/" + baseName)) {
a.installTranslator(&translator);
break;
}
}
Login w;
/* // Get the primary screen
QScreen *screen = QGuiApplication::primaryScreen();
if (screen) {
QRect screenGeometry = screen->availableGeometry();
int width = screenGeometry.width();
int height = screenGeometry.height();
// Set the window size to fit the screen
w.resize(width, height);
}*/
w.show();
Database db;
db.createUserTable();
return a.exec();
}