mirror of
https://gitgud.io/wackyideas/aerothemeplasma.git
synced 2024-08-15 00:43:43 +00:00
77 lines
1.7 KiB
C++
77 lines
1.7 KiB
C++
#ifndef MAINWINDOW_H
|
|
#define MAINWINDOW_H
|
|
|
|
#include <QMainWindow>
|
|
#include <QColor>
|
|
#include <QDir>
|
|
#include <QFile>
|
|
#include <QTextStream>
|
|
#include <QRegExp>
|
|
#include <QRegularExpression>
|
|
#include <QRegularExpressionMatch>
|
|
#include <QRegularExpressionMatchIterator>
|
|
#include <QProcess>
|
|
#include <QThread>
|
|
#include <QMessageBox>
|
|
#include <vector>
|
|
|
|
#include "flowlayout.h"
|
|
#include "colorwindow.h"
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
namespace Ui { class MainWindow; }
|
|
QT_END_NAMESPACE
|
|
|
|
class MainWindow : public QMainWindow
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
MainWindow(QWidget *parent = nullptr);
|
|
~MainWindow();
|
|
void changeCustomColor();
|
|
void changeColor(int index);
|
|
void applyChanges();
|
|
bool loadConfig();
|
|
bool saveConfig();
|
|
|
|
private slots:
|
|
void on_colorMixerLabel_linkActivated(const QString &link);
|
|
|
|
void on_hue_Slider_valueChanged(int value);
|
|
|
|
void on_pushButton_3_clicked();
|
|
|
|
void on_saturation_Slider_valueChanged(int value);
|
|
|
|
void on_Lightness_Slider_valueChanged(int value);
|
|
|
|
void on_horizontalSlider_valueChanged(int value);
|
|
|
|
void on_colorWindow_Clicked();
|
|
|
|
void on_apply_Button_clicked();
|
|
|
|
void on_cancel_Button_clicked();
|
|
|
|
void on_alpha_slider_valueChanged(int value);
|
|
|
|
void on_saveChanges_Button_clicked();
|
|
|
|
private:
|
|
Ui::MainWindow *ui;
|
|
bool plasmaThemeExists;
|
|
bool emeraldThemeExists;
|
|
FlowLayout* colorLayout;
|
|
std::vector<ColorWindow> predefined_colors;
|
|
std::map<QString, int> settings;
|
|
QStringList paths;
|
|
const QString configPath = QDir::homePath() + "/.aerorc";
|
|
short selected_color;
|
|
QColor color;
|
|
QString hue_gradient;
|
|
QString saturation_gradient;
|
|
QString brightness_gradient;
|
|
QString style;
|
|
};
|
|
#endif // MAINWINDOW_H
|