mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2026-01-06 06:07:49 -05:00
29 lines
583 B
C++
29 lines
583 B
C++
#ifndef OPENRGBE131SETTINGSENTRY_H
|
|
#define OPENRGBE131SETTINGSENTRY_H
|
|
|
|
#include "ui_OpenRGBE131SettingsEntry.h"
|
|
#include <QWidget>
|
|
|
|
namespace Ui {
|
|
class OpenRGBE131SettingsEntry;
|
|
}
|
|
|
|
class Ui::OpenRGBE131SettingsEntry : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit OpenRGBE131SettingsEntry(QWidget *parent = nullptr);
|
|
~OpenRGBE131SettingsEntry();
|
|
Ui::OpenRGBE131SettingsEntryUi *ui;
|
|
|
|
private:
|
|
void HideMatrixSettings();
|
|
void ShowMatrixSettings();
|
|
|
|
private slots:
|
|
void on_TypeComboBox_currentIndexChanged(int index);
|
|
};
|
|
|
|
#endif // OPENRGBE131SETTINGSENTRY_H
|