USB EPROM/Flash Programmer
Functions
main.cpp File Reference

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>
Include dependency graph for main.cpp:

Functions

int main (int argc, char *argv[])
 Main routine. More...
 
QMainWindow * createWindow (const int &argc, char *argv[])
 Creates a QMainWindow object, according to the arguments passed on the command line. More...
 
TApplicationSettings loadSettings ()
 Loads application settings. More...
 
void initLogging (int level)
 Initializes the logging feature. More...
 
void loadLanguage (const QString &language, QApplication *app)
 Loads the language strings. More...
 

Detailed Description

Implementation of the Main Routine.

Author
Robson Martins (https://www.robsonmartins.com)

Function Documentation

◆ main()

int main ( int  argc,
char *  argv[] 
)

Main routine.

Parameters
argcNumber of arguments.
argvArray 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
argcNumber of arguments.
argvArray of arguments.
Returns
Pointer to the QMainWindow object.

◆ loadSettings()

TApplicationSettings loadSettings ( )

Loads application settings.

Returns
Application settings.

◆ initLogging()

void initLogging ( int  level)

Initializes the logging feature.

Parameters
levelThe 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
languageThe language (en_US, or another).
appPointer to the QApplication instance.