* Removing .qm files from Windows build as they are inbuilt as of a7adfe251
* Moving translation change code to the OpenRGBSettingsPage
* Adding a changeEvent() to applicable Widgets to facilitate language updates
* Workaround added to TabLabel to accomodate translation context origin
* Added zh_TW locale to OpenRGB.pro
* Updated all translations to include the latest untranslated strings
35 lines
866 B
C++
35 lines
866 B
C++
#ifndef OPENRGBELGATOKEYLIGHTSETTINGSPAGE_H
|
|
#define OPENRGBELGATOKEYLIGHTSETTINGSPAGE_H
|
|
|
|
#include "ui_OpenRGBElgatoKeyLightSettingsPage.h"
|
|
#include <QWidget>
|
|
|
|
#include "OpenRGBElgatoKeyLightSettingsEntry.h"
|
|
|
|
namespace Ui {
|
|
class OpenRGBElgatoKeyLightSettingsPage;
|
|
}
|
|
|
|
class Ui::OpenRGBElgatoKeyLightSettingsPage : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit OpenRGBElgatoKeyLightSettingsPage(QWidget *parent = nullptr);
|
|
~OpenRGBElgatoKeyLightSettingsPage();
|
|
|
|
private slots:
|
|
void changeEvent(QEvent *event);
|
|
void on_AddElgatoKeyLightDeviceButton_clicked();
|
|
|
|
void on_RemoveElgatoKeyLightDeviceButton_clicked();
|
|
|
|
void on_SaveElgatoKeyLightConfigurationButton_clicked();
|
|
|
|
private:
|
|
Ui::OpenRGBElgatoKeyLightSettingsPageUi *ui;
|
|
std::vector<OpenRGBElgatoKeyLightSettingsEntry*> entries;
|
|
|
|
};
|
|
|
|
#endif // OPENRGBELGATOKEYLIGHTSETTINGSPAGE_H
|