LogDoctor_Installer/installer/mainwindow.h

120 lines
3.0 KiB
C++

#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include <QTranslator>
#include <QStandardPaths>
#include <QString>
#include <QTimer>
#include <filesystem>
#include <string>
QT_BEGIN_NAMESPACE
namespace Ui { class MainWindow; }
QT_END_NAMESPACE
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
MainWindow(QWidget *parent = nullptr);
~MainWindow();
private slots:
// language
void menu_actionEnglish_triggered();
void menu_actionEspanol_triggered();
void menu_actionFrancais_triggered();
void menu_actionItaliano_triggered();
// installation
void Install();
void checkInstallProgress();
// actions
void on_button_Next_clicked();
void on_button_Back_clicked();
void on_checkBox_MenuEntry_toggled(bool checked);
void on_button_Close_clicked();
private:
Ui::MainWindow *ui;
// operating system
const std::string cleanPath( const QString& path );
// 1: linux, 2:windows, 3:mac
const std::string home_path = this->cleanPath( QStandardPaths::locate( QStandardPaths::HomeLocation, "", QStandardPaths::LocateDirectory ) );
#if defined( Q_OS_DARWIN )
// Darwin-based systems: macOS, macOS, iOS, watchOS and tvOS.
const unsigned int OS = 3;
const std::filesystem::path exec_path = "/Applications";
const std::filesystem::path conf_path = home_path + "/Lybrary/Preferences/LogDoctor";
const std::filesystem::path data_path = home_path + "/Lybrary/Application Support/LogDoctor";
#elif defined( Q_OS_WIN )
// Microsoft Windows systems
const unsigned int OS = 2;
const std::filesystem::path exec_path = home_path.substr(0,2) + "/Program Files/LogDoctor";
const std::filesystem::path conf_path = home_path + "/AppData/Local/LogDoctor";
const std::filesystem::path data_path = home_path + "/AppData/Local/LogDoctor";
#elif defined( Q_OS_UNIX )
// Unix-like systems: Linux, BSD and SysV
const unsigned int OS = 1;
const std::filesystem::path exec_path = "/usr/bin";
const std::filesystem::path conf_path = home_path + "/.config/LogDoctor";
const std::filesystem::path data_path = "/usr/share/LogDoctor";
#else
#error "System not supported"
#endif
// language
QTranslator translator;
std::string language = "en";
void updateUiLanguage();
// fonts
QFont FONT_main;
QFont FONT_bigger;
QFont FONT_paths;
// palettes
QPalette PALETTE_norm;
QPalette PALETTE_step;
// work related
int step;
bool make_menu_entry = true;
// install
QTimer* waiter_timer = new QTimer();
QTimer* installer_timer = new QTimer();
bool installing;
bool overwrite_conf_file = false;
void startInstalling();
bool checkExecutablePath();
bool checkConfigsPath();
bool checkAppdataPath();
bool copyExecutable();
bool copyConfigfile();
bool copyResources();
bool copyUninstaller();
bool copyIcon();
bool makeMenuEntry();
};
#endif // MAINWINDOW_H