Implementation of the Main Routine.
More...
#include <QApplication>
#include <QLibraryInfo>
#include <QLocale>
#include <QTranslator>
#include <QDir>
#include <QFile>
#include <QDebug>
#include <QTextStream>
#include <QLoggingCategory>
#include <QSettings>
#include <cstdlib>
#include "main.hpp"
#include "ui/mainwindow.hpp"
#include <sys/time.h>
#include <sys/resource.h>
Implementation of the Main Routine.
- Author
- Robson Martins (https://www.robsonmartins.com)
◆ main()
int main |
( |
int |
argc, |
|
|
char * |
argv[] |
|
) |
| |
Main routine.
- Parameters
-
argc | Number of arguments. |
argv | Array of arguments. |
- Returns
- Error code (zero if success).
◆ createWindow()
QMainWindow * createWindow |
( |
const int & |
argc, |
|
|
char * |
argv[] |
|
) |
| |
Creates a QMainWindow object, according to the arguments passed on the command line.
- Parameters
-
argc | Number of arguments. |
argv | Array of arguments. |
- Returns
- Pointer to the QMainWindow object.
◆ loadSettings()
Loads application settings.
- Returns
- Application settings.
◆ initLogging()
void initLogging |
( |
int |
level | ) |
|
Initializes the logging feature.
- Parameters
-
level | The log level (<= 0 is disabled, 1 is FATAL, 2 is CRITICAL, etc). |
◆ loadLanguage()
void loadLanguage |
( |
const QString & |
language, |
|
|
QApplication * |
app |
|
) |
| |
Loads the language strings.
- Parameters
-
language | The language (en_US, or another). |
app | Pointer to the QApplication instance. |