LogDoctor/craplog/mainwindow.h

78 lines
1.8 KiB
C
Raw Normal View History

2022-06-21 21:07:06 +02:00
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
2022-06-20 21:44:58 +02:00
2022-06-23 04:00:37 +02:00
#include "qmainwindow.h"
#include "qfontdatabase.h"
#include "qmessagebox.h"
2022-06-20 21:44:58 +02:00
2022-06-21 21:07:06 +02:00
#include "qtreewidget.h"
#include "utilities.h"
2022-06-27 21:55:14 +02:00
#include "modules.h"
2022-06-26 22:31:45 +02:00
#include "tools/craplog/craplog.h"
2022-06-23 04:00:37 +02:00
2022-06-20 21:44:58 +02:00
QT_BEGIN_NAMESPACE
2022-06-21 21:07:06 +02:00
namespace Ui { class MainWindow; }
2022-06-20 21:44:58 +02:00
QT_END_NAMESPACE
2022-06-21 21:07:06 +02:00
class MainWindow : public QMainWindow
2022-06-20 21:44:58 +02:00
{
Q_OBJECT
2022-06-20 21:44:58 +02:00
public:
2022-06-21 21:07:06 +02:00
MainWindow(QWidget *parent = nullptr);
~MainWindow();
2022-06-21 21:07:06 +02:00
private slots:
void on_buttonViewFile_clicked();
2022-06-25 21:17:40 +02:00
void on_checkBox_LogFiles_CheckAll_stateChanged(int arg1);
2022-06-21 21:07:06 +02:00
void on_buttonRefreshList_clicked();
2022-06-21 21:07:06 +02:00
void on_listLogFiles_itemDoubleClicked(QTreeWidgetItem *item, int column);
void on_listLogFiles_itemChanged(QTreeWidgetItem *item, int column);
2022-06-26 23:12:57 +02:00
void on_button_LogFiles_Apache_clicked();
void on_button_LogFiles_Nginx_clicked();
void on_button_LogFiles_Iis_clicked();
2022-06-20 21:44:58 +02:00
private:
2022-06-21 21:07:06 +02:00
Ui::MainWindow *ui;
Craplog craplog;
bool runCraplog();
// quantoty of informational dialogs to display
int dialogs_Level = 1; // 0: essential, 1: usefull, 2: explanatory
2022-06-27 21:55:14 +02:00
std::unordered_map<int, std::unordered_map<std::string, QString>> TB_COLOR_SCHEMES;
std::unordered_map<std::string, QColor> COLORS;
2022-06-25 18:48:08 +02:00
std::unordered_map<std::string, QFont> FONTS;
int font_size = 13,
font_size_big = 16,
font_size_small = 10;
2022-06-25 18:48:08 +02:00
// base font families, to build fonts from
QString main_font_family;
QString script_font_family;
//////////////
//// LOGS ////
// web servers related
bool loading_LogsList = false;
std::unordered_map<int, bool> allowed_web_servers;
void disableAllButtons_LogFiles_WS();
void enableAllButtons_LogFiles_WS();
// logs list related
bool display_used_files = true;
bool display_warnsize_files = true;
2022-06-25 18:48:08 +02:00
// text browser related
2022-06-27 21:55:14 +02:00
TextBrowser TB;
2022-06-20 21:44:58 +02:00
};
2022-06-21 21:07:06 +02:00
#endif // MAINWINDOW_H