mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2025-12-30 10:47:50 -05:00
60 lines
1.2 KiB
C++
60 lines
1.2 KiB
C++
#ifndef OPENRGBDIALOG_H
|
|
#define OPENRGBDIALOG_H
|
|
|
|
#include "ui_OpenRGBDialog.h"
|
|
|
|
#include <vector>
|
|
#include "i2c_smbus.h"
|
|
#include "RGBController.h"
|
|
|
|
#include <QMainWindow>
|
|
#include <QTimer>
|
|
#include <QSystemTrayIcon>
|
|
#include <QMenu>
|
|
|
|
namespace Ui
|
|
{
|
|
class OpenRGBDialog;
|
|
}
|
|
|
|
class Ui::OpenRGBDialog : public QMainWindow
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit OpenRGBDialog(std::vector<i2c_smbus_interface *>& bus, std::vector<RGBController *>& control, QWidget *parent = 0);
|
|
~OpenRGBDialog();
|
|
|
|
void show();
|
|
void setMode(unsigned char mode_val);
|
|
|
|
protected:
|
|
std::vector<i2c_smbus_interface *>& busses;
|
|
std::vector<RGBController *>& controllers;
|
|
|
|
private slots:
|
|
void on_ButtonRed_clicked();
|
|
void on_ButtonYellow_clicked();
|
|
void on_ButtonGreen_clicked();
|
|
void on_ButtonCyan_clicked();
|
|
void on_ButtonBlue_clicked();
|
|
void on_ButtonMagenta_clicked();
|
|
|
|
void on_ButtonSetAll_clicked();
|
|
|
|
void on_ButtonSetDevice_clicked();
|
|
|
|
void on_ButtonSetZone_clicked();
|
|
|
|
void on_ButtonSetLED_clicked();
|
|
|
|
void on_ComboDevices_currentIndexChanged();
|
|
|
|
void on_ComboModes_currentIndexChanged();
|
|
|
|
private:
|
|
Ui::OpenRGBDialogUi *ui;
|
|
};
|
|
|
|
#endif // OPENRGBDIALOG_H
|