mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2026-01-02 12:17:51 -05:00
81 lines
2.2 KiB
C++
81 lines
2.2 KiB
C++
#ifndef OPENRGBDEVICEPAGE_H
|
|
#define OPENRGBDEVICEPAGE_H
|
|
|
|
#include "ui_OpenRGBDevicePage.h"
|
|
#include "RGBController.h"
|
|
|
|
#include <QFrame>
|
|
|
|
namespace Ui {
|
|
class OpenRGBDevicePage;
|
|
}
|
|
|
|
class Ui::OpenRGBDevicePage : public QFrame
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit OpenRGBDevicePage(RGBController *dev, QWidget *parent = nullptr);
|
|
~OpenRGBDevicePage();
|
|
|
|
void SetDevice(unsigned char red, unsigned char green, unsigned char blue); // Could be moved to private
|
|
void SetCustomMode(unsigned char red, unsigned char green, unsigned char blue);
|
|
void UpdateDevice();
|
|
void UpdateMode();
|
|
void UpdateModeUi();
|
|
void ShowDeviceView();
|
|
void HideDeviceView();
|
|
|
|
private slots:
|
|
void UpdateInterface();
|
|
|
|
void on_ColorWheelBox_colorChanged(const QColor color);
|
|
void on_DirectionBox_currentIndexChanged(int index);
|
|
void on_ZoneBox_currentIndexChanged(int index);
|
|
void on_LEDBox_currentIndexChanged(int index);
|
|
void on_ModeBox_currentIndexChanged(int index);
|
|
void on_SpeedSlider_valueChanged(int value);
|
|
void on_RedSpinBox_valueChanged(int arg1);
|
|
void on_HueSpinBox_valueChanged(int arg1);
|
|
void on_GreenSpinBox_valueChanged(int arg1);
|
|
void on_SatSpinBox_valueChanged(int arg1);
|
|
void on_BlueSpinBox_valueChanged(int arg1);
|
|
void on_ValSpinBox_valueChanged(int arg1);
|
|
void on_DeviceViewBox_selectionChanged(QVector<int>);
|
|
|
|
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_SetAllButton_clicked();
|
|
void on_RandomCheck_clicked();
|
|
void on_PerLEDCheck_clicked();
|
|
void on_ModeSpecificCheck_clicked();
|
|
void on_ResizeButton_clicked();
|
|
|
|
void on_ApplyColorsButton_clicked();
|
|
|
|
void on_SelectAllLEDsButton_clicked();
|
|
|
|
private:
|
|
Ui::OpenRGBDevicePageUi *ui;
|
|
RGBController *device;
|
|
|
|
bool UpdatingColor = false;
|
|
bool InvertedSpeed = false;
|
|
bool MultipleSelected = false;
|
|
|
|
void updateRGB();
|
|
void updateHSV();
|
|
void updateWheel();
|
|
void updateDeviceView();
|
|
|
|
signals:
|
|
void SetAllDevices(unsigned char red, unsigned char green, unsigned char blue);
|
|
void SaveSizeProfile();
|
|
};
|
|
|
|
#endif // OPENRGBDEVICEPAGE_H
|