Convert all UI files to match Qt standards

This commit is contained in:
Dmitry Kychanov 2025-06-17 22:50:57 +04:00 committed by Adam Honse
parent 924f5af2ed
commit 5f8b044577
156 changed files with 9676 additions and 8918 deletions

View file

@ -273,7 +273,7 @@ int main(int argc, char* argv[])
/*---------------------------------------------------------*\ /*---------------------------------------------------------*\
| Main UI widget | | Main UI widget |
\*---------------------------------------------------------*/ \*---------------------------------------------------------*/
Ui::OpenRGBDialog dlg; OpenRGBDialog dlg;
LOG_TRACE("[main] Dialog created"); LOG_TRACE("[main] Dialog created");
if(ret_flags & RET_FLAG_I2C_TOOLS) if(ret_flags & RET_FLAG_I2C_TOOLS)

View file

@ -13,8 +13,7 @@
#include "OpenRGBClientInfoPage.h" #include "OpenRGBClientInfoPage.h"
#include "ResourceManager.h" #include "ResourceManager.h"
#include "SettingsManager.h" #include "SettingsManager.h"
#include "ui_OpenRGBClientInfoPage.h"
using namespace Ui;
static void UpdateInfoCallback(void * this_ptr) static void UpdateInfoCallback(void * this_ptr)
{ {
@ -32,7 +31,7 @@ public:
OpenRGBClientInfoPage::OpenRGBClientInfoPage(QWidget *parent) : OpenRGBClientInfoPage::OpenRGBClientInfoPage(QWidget *parent) :
QFrame(parent), QFrame(parent),
ui(new Ui::OpenRGBClientInfoPageUi) ui(new Ui::OpenRGBClientInfoPage)
{ {
/*-----------------------------------------------------*\ /*-----------------------------------------------------*\
| Set initial values for GUI fields | | Set initial values for GUI fields |
@ -235,7 +234,7 @@ void OpenRGBClientInfoPage::UpdateInfo()
} }
} }
void Ui::OpenRGBClientInfoPage::on_ClientConnectButton_clicked() void OpenRGBClientInfoPage::on_ClientConnectButton_clicked()
{ {
/*-----------------------------------------------------*\ /*-----------------------------------------------------*\
| Read the new client IP and Port values from the UI | | Read the new client IP and Port values from the UI |
@ -265,7 +264,7 @@ void Ui::OpenRGBClientInfoPage::on_ClientConnectButton_clicked()
rgb_client->RegisterClientInfoChangeCallback(UpdateInfoCallback, this); rgb_client->RegisterClientInfoChangeCallback(UpdateInfoCallback, this);
} }
void Ui::OpenRGBClientInfoPage::onClientDisconnectButton_clicked(QObject * arg) void OpenRGBClientInfoPage::onClientDisconnectButton_clicked(QObject * arg)
{ {
/*-----------------------------------------------------*\ /*-----------------------------------------------------*\
| Get the pointer to the disconnecting client from args | | Get the pointer to the disconnecting client from args |
@ -279,7 +278,7 @@ void Ui::OpenRGBClientInfoPage::onClientDisconnectButton_clicked(QObject * arg)
ResourceManager::get()->UnregisterNetworkClient(disconnect_client); ResourceManager::get()->UnregisterNetworkClient(disconnect_client);
} }
void Ui::OpenRGBClientInfoPage::onClientSaveCheckBox_clicked(QObject * arg) void OpenRGBClientInfoPage::onClientSaveCheckBox_clicked(QObject * arg)
{ {
/*-----------------------------------------------------*\ /*-----------------------------------------------------*\
| Get the pointer to the client from args | | Get the pointer to the client from args |

View file

@ -11,7 +11,6 @@
#include <QFrame> #include <QFrame>
#include "RGBController.h" #include "RGBController.h"
#include "ui_OpenRGBClientInfoPage.h"
#include "NetworkClient.h" #include "NetworkClient.h"
namespace Ui namespace Ui
@ -19,7 +18,7 @@ namespace Ui
class OpenRGBClientInfoPage; class OpenRGBClientInfoPage;
} }
class Ui::OpenRGBClientInfoPage : public QFrame class OpenRGBClientInfoPage : public QFrame
{ {
Q_OBJECT Q_OBJECT
@ -39,5 +38,5 @@ private slots:
void onClientSaveCheckBox_clicked(QObject * arg); void onClientSaveCheckBox_clicked(QObject * arg);
private: private:
Ui::OpenRGBClientInfoPageUi *ui; Ui::OpenRGBClientInfoPage *ui;
}; };

View file

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0"> <ui version="4.0">
<class>OpenRGBClientInfoPageUi</class> <class>OpenRGBClientInfoPage</class>
<widget class="QFrame" name="OpenRGBClientInfoPageUi"> <widget class="QFrame" name="OpenRGBClientInfoPage">
<property name="geometry"> <property name="geometry">
<rect> <rect>
<x>0</x> <x>0</x>

View file

@ -7,15 +7,13 @@
| SPDX-License-Identifier: GPL-2.0-only | | SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/ \*---------------------------------------------------------*/
#include <stdio.h>
#include "OpenRGBConsolePage.h" #include "OpenRGBConsolePage.h"
#include "ui_OpenRGBConsolePage.h"
#include "LogManager.h" #include "LogManager.h"
using namespace Ui;
OpenRGBConsolePage::OpenRGBConsolePage(QWidget *parent) : OpenRGBConsolePage::OpenRGBConsolePage(QWidget *parent) :
QFrame(parent), QFrame(parent),
ui(new Ui::OpenRGBConsolePageUi) ui(new Ui::OpenRGBConsolePage)
{ {
ui->setupUi(this); ui->setupUi(this);

View file

@ -10,14 +10,13 @@
#pragma once #pragma once
#include <QFrame> #include <QFrame>
#include "ui_OpenRGBConsolePage.h"
namespace Ui namespace Ui
{ {
class OpenRGBConsolePage; class OpenRGBConsolePage;
} }
class Ui::OpenRGBConsolePage : public QFrame class OpenRGBConsolePage : public QFrame
{ {
Q_OBJECT Q_OBJECT
@ -32,7 +31,7 @@ private slots:
void on_refresh_clicked(); void on_refresh_clicked();
private: private:
Ui::OpenRGBConsolePageUi *ui; Ui::OpenRGBConsolePage *ui;
void Refresh(); void Refresh();
}; };

View file

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0"> <ui version="4.0">
<class>OpenRGBConsolePageUi</class> <class>OpenRGBConsolePage</class>
<widget class="QFrame" name="OpenRGBConsolePageUi"> <widget class="QFrame" name="OpenRGBConsolePage">
<property name="geometry"> <property name="geometry">
<rect> <rect>
<x>0</x> <x>0</x>

View file

@ -10,11 +10,9 @@
#include "OpenRGBDMXSettingsEntry.h" #include "OpenRGBDMXSettingsEntry.h"
#include "ui_OpenRGBDMXSettingsEntry.h" #include "ui_OpenRGBDMXSettingsEntry.h"
using namespace Ui;
OpenRGBDMXSettingsEntry::OpenRGBDMXSettingsEntry(QWidget *parent) : OpenRGBDMXSettingsEntry::OpenRGBDMXSettingsEntry(QWidget *parent) :
BaseManualDeviceEntry(parent), BaseManualDeviceEntry(parent),
ui(new Ui::OpenRGBDMXSettingsEntryUi) ui(new Ui::OpenRGBDMXSettingsEntry)
{ {
ui->setupUi(this); ui->setupUi(this);
} }

View file

@ -14,10 +14,9 @@
namespace Ui namespace Ui
{ {
class OpenRGBDMXSettingsEntry; class OpenRGBDMXSettingsEntry;
class OpenRGBDMXSettingsEntryUi;
} }
class Ui::OpenRGBDMXSettingsEntry : public BaseManualDeviceEntry class OpenRGBDMXSettingsEntry : public BaseManualDeviceEntry
{ {
Q_OBJECT Q_OBJECT
@ -29,7 +28,7 @@ public:
const char* settingsSection(); const char* settingsSection();
private: private:
Ui::OpenRGBDMXSettingsEntryUi *ui; Ui::OpenRGBDMXSettingsEntry *ui;
private slots: private slots:
void changeEvent(QEvent *event); void changeEvent(QEvent *event);

View file

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0"> <ui version="4.0">
<class>OpenRGBDMXSettingsEntryUi</class> <class>OpenRGBDMXSettingsEntry</class>
<widget class="QWidget" name="OpenRGBDMXSettingsEntryUi"> <widget class="QWidget" name="OpenRGBDMXSettingsEntry">
<property name="geometry"> <property name="geometry">
<rect> <rect>
<x>0</x> <x>0</x>

View file

@ -12,11 +12,9 @@
#include "ResourceManager.h" #include "ResourceManager.h"
#include "SettingsManager.h" #include "SettingsManager.h"
using namespace Ui;
OpenRGBDMXSettingsPage::OpenRGBDMXSettingsPage(QWidget *parent) : OpenRGBDMXSettingsPage::OpenRGBDMXSettingsPage(QWidget *parent) :
QWidget(parent), QWidget(parent),
ui(new Ui::OpenRGBDMXSettingsPageUi) ui(new Ui::OpenRGBDMXSettingsPage)
{ {
ui->setupUi(this); ui->setupUi(this);
@ -64,7 +62,7 @@ void OpenRGBDMXSettingsPage::changeEvent(QEvent *event)
} }
} }
void Ui::OpenRGBDMXSettingsPage::on_AddDMXDeviceButton_clicked() void OpenRGBDMXSettingsPage::on_AddDMXDeviceButton_clicked()
{ {
OpenRGBDMXSettingsEntry* entry = new OpenRGBDMXSettingsEntry; OpenRGBDMXSettingsEntry* entry = new OpenRGBDMXSettingsEntry;
entries.push_back(entry); entries.push_back(entry);
@ -78,7 +76,7 @@ void Ui::OpenRGBDMXSettingsPage::on_AddDMXDeviceButton_clicked()
ui->DMXDeviceList->show(); ui->DMXDeviceList->show();
} }
void Ui::OpenRGBDMXSettingsPage::on_RemoveDMXDeviceButton_clicked() void OpenRGBDMXSettingsPage::on_RemoveDMXDeviceButton_clicked()
{ {
int cur_row = ui->DMXDeviceList->currentRow(); int cur_row = ui->DMXDeviceList->currentRow();
@ -96,7 +94,7 @@ void Ui::OpenRGBDMXSettingsPage::on_RemoveDMXDeviceButton_clicked()
entries.erase(entries.begin() + cur_row); entries.erase(entries.begin() + cur_row);
} }
void Ui::OpenRGBDMXSettingsPage::on_SaveDMXConfigurationButton_clicked() void OpenRGBDMXSettingsPage::on_SaveDMXConfigurationButton_clicked()
{ {
json dmx_settings; json dmx_settings;

View file

@ -10,7 +10,6 @@
#pragma once #pragma once
#include <QWidget> #include <QWidget>
#include "ui_OpenRGBDMXSettingsPage.h"
#include "OpenRGBDMXSettingsEntry.h" #include "OpenRGBDMXSettingsEntry.h"
namespace Ui namespace Ui
@ -18,7 +17,7 @@ namespace Ui
class OpenRGBDMXSettingsPage; class OpenRGBDMXSettingsPage;
} }
class Ui::OpenRGBDMXSettingsPage : public QWidget class OpenRGBDMXSettingsPage : public QWidget
{ {
Q_OBJECT Q_OBJECT
@ -35,7 +34,7 @@ private slots:
void on_SaveDMXConfigurationButton_clicked(); void on_SaveDMXConfigurationButton_clicked();
private: private:
Ui::OpenRGBDMXSettingsPageUi* ui; Ui::OpenRGBDMXSettingsPage* ui;
std::vector<OpenRGBDMXSettingsEntry*> entries; std::vector<OpenRGBDMXSettingsEntry*> entries;
}; };

View file

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0"> <ui version="4.0">
<class>OpenRGBDMXSettingsPageUi</class> <class>OpenRGBDMXSettingsPage</class>
<widget class="QWidget" name="OpenRGBDMXSettingsPageUi"> <widget class="QWidget" name="OpenRGBDMXSettingsPage">
<property name="geometry"> <property name="geometry">
<rect> <rect>
<x>0</x> <x>0</x>

View file

@ -8,12 +8,11 @@
\*---------------------------------------------------------*/ \*---------------------------------------------------------*/
#include "OpenRGBDeviceInfoPage.h" #include "OpenRGBDeviceInfoPage.h"
#include "ui_OpenRGBDeviceInfoPage.h"
using namespace Ui;
OpenRGBDeviceInfoPage::OpenRGBDeviceInfoPage(RGBController *dev, QWidget *parent) : OpenRGBDeviceInfoPage::OpenRGBDeviceInfoPage(RGBController *dev, QWidget *parent) :
QFrame(parent), QFrame(parent),
ui(new Ui::OpenRGBDeviceInfoPageUi) ui(new Ui::OpenRGBDeviceInfoPage)
{ {
controller = dev; controller = dev;

View file

@ -11,14 +11,13 @@
#include <QFrame> #include <QFrame>
#include "RGBController.h" #include "RGBController.h"
#include "ui_OpenRGBDeviceInfoPage.h"
namespace Ui namespace Ui
{ {
class OpenRGBDeviceInfoPage; class OpenRGBDeviceInfoPage;
} }
class Ui::OpenRGBDeviceInfoPage : public QFrame class OpenRGBDeviceInfoPage : public QFrame
{ {
Q_OBJECT Q_OBJECT
@ -29,8 +28,8 @@ public:
RGBController* GetController(); RGBController* GetController();
private: private:
RGBController* controller; RGBController* controller;
Ui::OpenRGBDeviceInfoPageUi* ui; Ui::OpenRGBDeviceInfoPage* ui;
private slots: private slots:
void changeEvent(QEvent *event); void changeEvent(QEvent *event);

View file

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0"> <ui version="4.0">
<class>OpenRGBDeviceInfoPageUi</class> <class>OpenRGBDeviceInfoPage</class>
<widget class="QFrame" name="OpenRGBDeviceInfoPageUi"> <widget class="QFrame" name="OpenRGBDeviceInfoPage">
<property name="geometry"> <property name="geometry">
<rect> <rect>
<x>0</x> <x>0</x>

View file

@ -13,8 +13,7 @@
#include "ResourceManager.h" #include "ResourceManager.h"
#include "SettingsManager.h" #include "SettingsManager.h"
#include "hsv.h" #include "hsv.h"
#include "ui_OpenRGBDevicePage.h"
using namespace Ui;
static void UpdateCallback(void * this_ptr) static void UpdateCallback(void * this_ptr)
{ {
@ -57,7 +56,7 @@ QString OpenRGBDevicePage::ModeDescription(const mode& m)
OpenRGBDevicePage::OpenRGBDevicePage(RGBController *dev, QWidget *parent) : OpenRGBDevicePage::OpenRGBDevicePage(RGBController *dev, QWidget *parent) :
QFrame(parent), QFrame(parent),
ui(new Ui::OpenRGBDevicePageUi) ui(new Ui::OpenRGBDevicePage)
{ {
ui->setupUi(this); ui->setupUi(this);
@ -167,12 +166,12 @@ void OpenRGBDevicePage::changeEvent(QEvent *event)
} }
} }
RGBController* Ui::OpenRGBDevicePage::GetController() RGBController* OpenRGBDevicePage::GetController()
{ {
return device; return device;
} }
void Ui::OpenRGBDevicePage::on_ZoneBox_currentIndexChanged(int index) void OpenRGBDevicePage::on_ZoneBox_currentIndexChanged(int index)
{ {
/*-----------------------------------------------------*\ /*-----------------------------------------------------*\
| Read selected mode | | Read selected mode |
@ -415,7 +414,7 @@ void Ui::OpenRGBDevicePage::on_ZoneBox_currentIndexChanged(int index)
} }
} }
void Ui::OpenRGBDevicePage::on_LEDBox_currentIndexChanged(int index) void OpenRGBDevicePage::on_LEDBox_currentIndexChanged(int index)
{ {
/*-----------------------------------------------------*\ /*-----------------------------------------------------*\
| Read selected mode | | Read selected mode |
@ -707,7 +706,7 @@ void Ui::OpenRGBDevicePage::on_LEDBox_currentIndexChanged(int index)
} }
void Ui::OpenRGBDevicePage::on_ModeBox_currentIndexChanged(int index) void OpenRGBDevicePage::on_ModeBox_currentIndexChanged(int index)
{ {
/*-----------------------------------------------------*\ /*-----------------------------------------------------*\
| Update mode user interface elements | | Update mode user interface elements |
@ -727,7 +726,7 @@ void Ui::OpenRGBDevicePage::on_ModeBox_currentIndexChanged(int index)
} }
void Ui::OpenRGBDevicePage::on_PerLEDCheck_clicked() void OpenRGBDevicePage::on_PerLEDCheck_clicked()
{ {
/*-----------------------------------------------------*\ /*-----------------------------------------------------*\
| Change device mode | | Change device mode |
@ -740,7 +739,7 @@ void Ui::OpenRGBDevicePage::on_PerLEDCheck_clicked()
UpdateModeUi(); UpdateModeUi();
} }
void Ui::OpenRGBDevicePage::on_ModeSpecificCheck_clicked() void OpenRGBDevicePage::on_ModeSpecificCheck_clicked()
{ {
/*-----------------------------------------------------*\ /*-----------------------------------------------------*\
| Change device mode | | Change device mode |
@ -753,7 +752,7 @@ void Ui::OpenRGBDevicePage::on_ModeSpecificCheck_clicked()
UpdateModeUi(); UpdateModeUi();
} }
void Ui::OpenRGBDevicePage::on_RandomCheck_clicked() void OpenRGBDevicePage::on_RandomCheck_clicked()
{ {
/*-----------------------------------------------------*\ /*-----------------------------------------------------*\
| Change device mode | | Change device mode |
@ -766,7 +765,7 @@ void Ui::OpenRGBDevicePage::on_RandomCheck_clicked()
UpdateModeUi(); UpdateModeUi();
} }
void Ui::OpenRGBDevicePage::on_BrightnessSlider_valueChanged(int /*value*/) void OpenRGBDevicePage::on_BrightnessSlider_valueChanged(int /*value*/)
{ {
/*-----------------------------------------------------*\ /*-----------------------------------------------------*\
| Change device mode | | Change device mode |
@ -774,7 +773,7 @@ void Ui::OpenRGBDevicePage::on_BrightnessSlider_valueChanged(int /*value*/)
UpdateMode(); UpdateMode();
} }
void Ui::OpenRGBDevicePage::on_SpeedSlider_valueChanged(int /*value*/) void OpenRGBDevicePage::on_SpeedSlider_valueChanged(int /*value*/)
{ {
/*-----------------------------------------------------*\ /*-----------------------------------------------------*\
| Change device mode | | Change device mode |
@ -782,7 +781,7 @@ void Ui::OpenRGBDevicePage::on_SpeedSlider_valueChanged(int /*value*/)
UpdateMode(); UpdateMode();
} }
void Ui::OpenRGBDevicePage::on_DirectionBox_currentIndexChanged(int /*index*/) void OpenRGBDevicePage::on_DirectionBox_currentIndexChanged(int /*index*/)
{ {
/*-----------------------------------------------------*\ /*-----------------------------------------------------*\
| Change device mode | | Change device mode |
@ -790,13 +789,13 @@ void Ui::OpenRGBDevicePage::on_DirectionBox_currentIndexChanged(int /*index*/)
UpdateMode(); UpdateMode();
} }
void Ui::OpenRGBDevicePage::UpdateInterface() void OpenRGBDevicePage::UpdateInterface()
{ {
//UpdateModeUi(); //UpdateModeUi();
ui->DeviceViewBox->repaint(); ui->DeviceViewBox->repaint();
} }
void Ui::OpenRGBDevicePage::UpdateModeUi() void OpenRGBDevicePage::UpdateModeUi()
{ {
/*-----------------------------------------------------*\ /*-----------------------------------------------------*\
| Read selected mode | | Read selected mode |
@ -1123,7 +1122,7 @@ void Ui::OpenRGBDevicePage::UpdateModeUi()
} }
} }
void Ui::OpenRGBDevicePage::UpdateMode() void OpenRGBDevicePage::UpdateMode()
{ {
/*-----------------------------------------------------*\ /*-----------------------------------------------------*\
| Read selected mode | | Read selected mode |
@ -1262,7 +1261,7 @@ void Ui::OpenRGBDevicePage::UpdateMode()
} }
} }
void Ui::OpenRGBDevicePage::SetDevice(unsigned char red, unsigned char green, unsigned char blue) void OpenRGBDevicePage::SetDevice(unsigned char red, unsigned char green, unsigned char blue)
{ {
current_color.setRgb(red, green, blue); current_color.setRgb(red, green, blue);
@ -1272,7 +1271,7 @@ void Ui::OpenRGBDevicePage::SetDevice(unsigned char red, unsigned char green, un
colorChanged(); colorChanged();
} }
void Ui::OpenRGBDevicePage::UpdateDevice() void OpenRGBDevicePage::UpdateDevice()
{ {
ui->ModeBox->blockSignals(true); ui->ModeBox->blockSignals(true);
ui->ModeBox->setCurrentIndex(device->active_mode); ui->ModeBox->setCurrentIndex(device->active_mode);
@ -1281,7 +1280,7 @@ void Ui::OpenRGBDevicePage::UpdateDevice()
UpdateMode(); UpdateMode();
} }
void Ui::OpenRGBDevicePage::SetCustomMode(unsigned char red, unsigned char green, unsigned char blue) void OpenRGBDevicePage::SetCustomMode(unsigned char red, unsigned char green, unsigned char blue)
{ {
RGBColor color = ToRGBColor(red, green, blue); RGBColor color = ToRGBColor(red, green, blue);
/*-----------------------------------------------------*\ /*-----------------------------------------------------*\
@ -1328,7 +1327,7 @@ void Ui::OpenRGBDevicePage::SetCustomMode(unsigned char red, unsigned char green
UpdateMode(); UpdateMode();
} }
void Ui::OpenRGBDevicePage::on_SwatchBox_swatchChanged(const QColor color) void OpenRGBDevicePage::on_SwatchBox_swatchChanged(const QColor color)
{ {
/*-----------------------------------------------------*\ /*-----------------------------------------------------*\
| Store the swatch color to the current color QColor | | Store the swatch color to the current color QColor |
@ -1341,7 +1340,7 @@ void Ui::OpenRGBDevicePage::on_SwatchBox_swatchChanged(const QColor color)
colorChanged(); colorChanged();
} }
void Ui::OpenRGBDevicePage::on_ColorWheelBox_colorChanged(const QColor color) void OpenRGBDevicePage::on_ColorWheelBox_colorChanged(const QColor color)
{ {
/*-----------------------------------------------------*\ /*-----------------------------------------------------*\
| Store the wheel color to the current color QColor | | Store the wheel color to the current color QColor |
@ -1354,12 +1353,12 @@ void Ui::OpenRGBDevicePage::on_ColorWheelBox_colorChanged(const QColor color)
colorChanged(); colorChanged();
} }
bool Ui::OpenRGBDevicePage::autoUpdateEnabled() bool OpenRGBDevicePage::autoUpdateEnabled()
{ {
return !(device->modes[device->active_mode].flags & MODE_FLAG_AUTOMATIC_SAVE); return !(device->modes[device->active_mode].flags & MODE_FLAG_AUTOMATIC_SAVE);
} }
void Ui::OpenRGBDevicePage::on_RedSpinBox_valueChanged(int red) void OpenRGBDevicePage::on_RedSpinBox_valueChanged(int red)
{ {
/*-----------------------------------------------------*\ /*-----------------------------------------------------*\
| Update the current color QColor red channel | | Update the current color QColor red channel |
@ -1372,7 +1371,7 @@ void Ui::OpenRGBDevicePage::on_RedSpinBox_valueChanged(int red)
colorChanged(); colorChanged();
} }
void Ui::OpenRGBDevicePage::on_HueSpinBox_valueChanged(int hue) void OpenRGBDevicePage::on_HueSpinBox_valueChanged(int hue)
{ {
/*-----------------------------------------------------*\ /*-----------------------------------------------------*\
| Read the saturation and value box values | | Read the saturation and value box values |
@ -1391,7 +1390,7 @@ void Ui::OpenRGBDevicePage::on_HueSpinBox_valueChanged(int hue)
colorChanged(); colorChanged();
} }
void Ui::OpenRGBDevicePage::on_GreenSpinBox_valueChanged(int green) void OpenRGBDevicePage::on_GreenSpinBox_valueChanged(int green)
{ {
/*-----------------------------------------------------*\ /*-----------------------------------------------------*\
| Update the current color QColor green channel | | Update the current color QColor green channel |
@ -1404,7 +1403,7 @@ void Ui::OpenRGBDevicePage::on_GreenSpinBox_valueChanged(int green)
colorChanged(); colorChanged();
} }
void Ui::OpenRGBDevicePage::on_SatSpinBox_valueChanged(int sat) void OpenRGBDevicePage::on_SatSpinBox_valueChanged(int sat)
{ {
/*-----------------------------------------------------*\ /*-----------------------------------------------------*\
| Read the hue and value box values | | Read the hue and value box values |
@ -1423,7 +1422,7 @@ void Ui::OpenRGBDevicePage::on_SatSpinBox_valueChanged(int sat)
colorChanged(); colorChanged();
} }
void Ui::OpenRGBDevicePage::on_BlueSpinBox_valueChanged(int blue) void OpenRGBDevicePage::on_BlueSpinBox_valueChanged(int blue)
{ {
/*-----------------------------------------------------*\ /*-----------------------------------------------------*\
| Update the current color QColor blue channel | | Update the current color QColor blue channel |
@ -1436,7 +1435,7 @@ void Ui::OpenRGBDevicePage::on_BlueSpinBox_valueChanged(int blue)
colorChanged(); colorChanged();
} }
void Ui::OpenRGBDevicePage::on_ValSpinBox_valueChanged(int val) void OpenRGBDevicePage::on_ValSpinBox_valueChanged(int val)
{ {
/*-----------------------------------------------------*\ /*-----------------------------------------------------*\
| Read the hue and saturation box values | | Read the hue and saturation box values |
@ -1455,7 +1454,7 @@ void Ui::OpenRGBDevicePage::on_ValSpinBox_valueChanged(int val)
colorChanged(); colorChanged();
} }
void Ui::OpenRGBDevicePage::on_HexLineEdit_textChanged(const QString &arg1) void OpenRGBDevicePage::on_HexLineEdit_textChanged(const QString &arg1)
{ {
/*-----------------------------------------------------*\ /*-----------------------------------------------------*\
| Make an editable copy of the string | | Make an editable copy of the string |
@ -1499,7 +1498,7 @@ void Ui::OpenRGBDevicePage::on_HexLineEdit_textChanged(const QString &arg1)
UpdateHex = true; UpdateHex = true;
} }
void Ui::OpenRGBDevicePage::on_DeviceViewBox_selectionChanged(QVector<int> indices) void OpenRGBDevicePage::on_DeviceViewBox_selectionChanged(QVector<int> indices)
{ {
if(device->modes[device->active_mode].color_mode == MODE_COLORS_PER_LED) if(device->modes[device->active_mode].color_mode == MODE_COLORS_PER_LED)
{ {
@ -1544,12 +1543,12 @@ void Ui::OpenRGBDevicePage::on_DeviceViewBox_selectionChanged(QVector<int> indic
} }
} }
void Ui::OpenRGBDevicePage::on_SetAllButton_clicked() void OpenRGBDevicePage::on_SetAllButton_clicked()
{ {
emit SetAllDevices(current_color.red(), current_color.green(), current_color.blue()); emit SetAllDevices(current_color.red(), current_color.green(), current_color.blue());
} }
void Ui::OpenRGBDevicePage::on_EditZoneButton_clicked() void OpenRGBDevicePage::on_EditZoneButton_clicked()
{ {
switch(device->modes[device->active_mode].color_mode) switch(device->modes[device->active_mode].color_mode)
{ {
@ -1686,7 +1685,7 @@ void Ui::OpenRGBDevicePage::on_EditZoneButton_clicked()
} }
} }
void Ui::OpenRGBDevicePage::ShowDeviceView() void OpenRGBDevicePage::ShowDeviceView()
{ {
/*-----------------------------------------------------*\ /*-----------------------------------------------------*\
| Read selected mode | | Read selected mode |
@ -1708,7 +1707,7 @@ void Ui::OpenRGBDevicePage::ShowDeviceView()
} }
} }
void Ui::OpenRGBDevicePage::HideDeviceView() void OpenRGBDevicePage::HideDeviceView()
{ {
/*-----------------------------------------------------*\ /*-----------------------------------------------------*\
| Set device view showing flag to False | | Set device view showing flag to False |
@ -1721,7 +1720,7 @@ void Ui::OpenRGBDevicePage::HideDeviceView()
ui->DeviceViewBoxFrame->hide(); ui->DeviceViewBoxFrame->hide();
} }
void Ui::OpenRGBDevicePage::on_ApplyColorsButton_clicked() void OpenRGBDevicePage::on_ApplyColorsButton_clicked()
{ {
/*-----------------------------------------------------*\ /*-----------------------------------------------------*\
| Read selected mode | | Read selected mode |
@ -1763,7 +1762,7 @@ void Ui::OpenRGBDevicePage::on_ApplyColorsButton_clicked()
} }
} }
void Ui::OpenRGBDevicePage::on_SelectAllLEDsButton_clicked() void OpenRGBDevicePage::on_SelectAllLEDsButton_clicked()
{ {
if(device->modes[device->active_mode].color_mode == MODE_COLORS_PER_LED) if(device->modes[device->active_mode].color_mode == MODE_COLORS_PER_LED)
{ {
@ -1773,7 +1772,7 @@ void Ui::OpenRGBDevicePage::on_SelectAllLEDsButton_clicked()
} }
} }
void Ui::OpenRGBDevicePage::on_DeviceSaveButton_clicked() void OpenRGBDevicePage::on_DeviceSaveButton_clicked()
{ {
if(device->modes[device->active_mode].flags & MODE_FLAG_MANUAL_SAVE) if(device->modes[device->active_mode].flags & MODE_FLAG_MANUAL_SAVE)
{ {
@ -1781,7 +1780,7 @@ void Ui::OpenRGBDevicePage::on_DeviceSaveButton_clicked()
} }
} }
void Ui::OpenRGBDevicePage::colorChanged() void OpenRGBDevicePage::colorChanged()
{ {
updateColorUi(); updateColorUi();
@ -1815,7 +1814,7 @@ void Ui::OpenRGBDevicePage::colorChanged()
} }
} }
void Ui::OpenRGBDevicePage::updateColorUi() void OpenRGBDevicePage::updateColorUi()
{ {
/*-----------------------------------------------------*\ /*-----------------------------------------------------*\
| Update colorwheel | | Update colorwheel |

View file

@ -10,7 +10,6 @@
#pragma once #pragma once
#include <QFrame> #include <QFrame>
#include "ui_OpenRGBDevicePage.h"
#include "RGBController.h" #include "RGBController.h"
namespace Ui namespace Ui
@ -18,7 +17,7 @@ namespace Ui
class OpenRGBDevicePage; class OpenRGBDevicePage;
} }
class Ui::OpenRGBDevicePage : public QFrame class OpenRGBDevicePage : public QFrame
{ {
Q_OBJECT Q_OBJECT
@ -70,7 +69,7 @@ private slots:
void on_DeviceSaveButton_clicked(); void on_DeviceSaveButton_clicked();
private: private:
Ui::OpenRGBDevicePageUi *ui; Ui::OpenRGBDevicePage *ui;
RGBController *device; RGBController *device;
bool InvertedSpeed = false; bool InvertedSpeed = false;

View file

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0"> <ui version="4.0">
<class>OpenRGBDevicePageUi</class> <class>OpenRGBDevicePage</class>
<widget class="QFrame" name="OpenRGBDevicePageUi"> <widget class="QFrame" name="OpenRGBDevicePage">
<property name="geometry"> <property name="geometry">
<rect> <rect>
<x>0</x> <x>0</x>

View file

@ -7,8 +7,6 @@
| SPDX-License-Identifier: GPL-2.0-only | | SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/ \*---------------------------------------------------------*/
#include <string>
#include <functional>
#include "OpenRGBDialog.h" #include "OpenRGBDialog.h"
#include "LogManager.h" #include "LogManager.h"
#include "PluginManager.h" #include "PluginManager.h"
@ -23,20 +21,26 @@
#include "TabLabel.h" #include "TabLabel.h"
#include "OpenRGBZonesBulkResizer.h" #include "OpenRGBZonesBulkResizer.h"
#include "OpenRGBThemeManager.h" #include "OpenRGBThemeManager.h"
#include "OpenRGBFont.h"
#include "ui_OpenRGBDialog.h"
#include <QLabel> #include <QLabel>
#include <QTabBar> #include <QTabBar>
#include <QMessageBox> #include <QMessageBox>
#include <QCloseEvent> #include <QCloseEvent>
#include <QStyleFactory> #include <QStyleFactory>
#include <QKeyEvent> #include <QKeyEvent>
#include "OpenRGBFont.h" #include <QCheckBox>
#include <QSpinBox>
#include <string>
#include <functional>
#ifdef __APPLE__ #ifdef __APPLE__
#include "macutils.h" #include "macutils.h"
#endif #endif
using namespace Ui;
static int GetIcon(device_type type) static int GetIcon(device_type type)
{ {
/*-----------------------------------------------------*\ /*-----------------------------------------------------*\
@ -174,7 +178,7 @@ bool OpenRGBDialog::IsMinimizeOnClose()
return false; return false;
} }
OpenRGBDialog::OpenRGBDialog(QWidget *parent) : QMainWindow(parent), ui(new OpenRGBDialogUi) OpenRGBDialog::OpenRGBDialog(QWidget *parent) : QMainWindow(parent), ui(new Ui::OpenRGBDialog)
{ {
ui->setupUi(this); ui->setupUi(this);
@ -1329,7 +1333,7 @@ void OpenRGBDialog::UpdateDevicesList()
| If type is a device info page, check it | | If type is a device info page, check it |
\*-----------------------------------------------------*/ \*-----------------------------------------------------*/
std::string type_str = ui->InformationTabBar->widget(tab_idx)->metaObject()->className(); std::string type_str = ui->InformationTabBar->widget(tab_idx)->metaObject()->className();
if(type_str == "Ui::OpenRGBDeviceInfoPage") if(type_str == "OpenRGBDeviceInfoPage")
{ {
OpenRGBDeviceInfoPage* page = (OpenRGBDeviceInfoPage*) ui->InformationTabBar->widget(tab_idx); OpenRGBDeviceInfoPage* page = (OpenRGBDeviceInfoPage*) ui->InformationTabBar->widget(tab_idx);
@ -1400,7 +1404,7 @@ void OpenRGBDialog::UpdateDevicesList()
for(std::size_t tab_idx = controllers.size(); tab_idx < (std::size_t)ui->InformationTabBar->count(); tab_idx++) for(std::size_t tab_idx = controllers.size(); tab_idx < (std::size_t)ui->InformationTabBar->count(); tab_idx++)
{ {
std::string type_str = ui->InformationTabBar->widget(base_tab)->metaObject()->className(); std::string type_str = ui->InformationTabBar->widget(base_tab)->metaObject()->className();
if(type_str == "Ui::OpenRGBDeviceInfoPage") if(type_str == "OpenRGBDeviceInfoPage")
{ {
found = true; found = true;
QWidget* tab_widget = ui->InformationTabBar->widget(base_tab); QWidget* tab_widget = ui->InformationTabBar->widget(base_tab);
@ -1713,7 +1717,7 @@ void OpenRGBDialog::on_ReShow(QSystemTrayIcon::ActivationReason reason)
} }
} }
void Ui::OpenRGBDialog::on_ProfileSelected() void OpenRGBDialog::on_ProfileSelected()
{ {
ProfileManager* profile_manager = ResourceManager::get()->GetProfileManager(); ProfileManager* profile_manager = ResourceManager::get()->GetProfileManager();
@ -1739,7 +1743,7 @@ void Ui::OpenRGBDialog::on_ProfileSelected()
} }
} }
void Ui::OpenRGBDialog::on_ButtonLoadProfile_clicked() void OpenRGBDialog::on_ButtonLoadProfile_clicked()
{ {
ProfileManager* profile_manager = ResourceManager::get()->GetProfileManager(); ProfileManager* profile_manager = ResourceManager::get()->GetProfileManager();
@ -1763,7 +1767,7 @@ void Ui::OpenRGBDialog::on_ButtonLoadProfile_clicked()
} }
} }
void Ui::OpenRGBDialog::on_ButtonDeleteProfile_clicked() void OpenRGBDialog::on_ButtonDeleteProfile_clicked()
{ {
ProfileManager* profile_manager = ResourceManager::get()->GetProfileManager(); ProfileManager* profile_manager = ResourceManager::get()->GetProfileManager();
@ -1792,7 +1796,7 @@ void Ui::OpenRGBDialog::on_ButtonDeleteProfile_clicked()
} }
} }
void Ui::OpenRGBDialog::on_ButtonToggleDeviceView_clicked() void OpenRGBDialog::on_ButtonToggleDeviceView_clicked()
{ {
if(device_view_showing) if(device_view_showing)
{ {
@ -1804,7 +1808,7 @@ void Ui::OpenRGBDialog::on_ButtonToggleDeviceView_clicked()
} }
} }
void Ui::OpenRGBDialog::ShowLEDView() void OpenRGBDialog::ShowLEDView()
{ {
for(int device = 0; device < ui->DevicesTabBar->count(); device++) for(int device = 0; device < ui->DevicesTabBar->count(); device++)
{ {
@ -1817,7 +1821,7 @@ void Ui::OpenRGBDialog::ShowLEDView()
device_view_showing = true; device_view_showing = true;
} }
void Ui::OpenRGBDialog::HideLEDView() void OpenRGBDialog::HideLEDView()
{ {
for(int device = 0; device < ui->DevicesTabBar->count(); device++) for(int device = 0; device < ui->DevicesTabBar->count(); device++)
{ {
@ -1827,7 +1831,7 @@ void Ui::OpenRGBDialog::HideLEDView()
} }
void Ui::OpenRGBDialog::on_ButtonStopDetection_clicked() void OpenRGBDialog::on_ButtonStopDetection_clicked()
{ {
/*---------------------------------------------------------*\ /*---------------------------------------------------------*\
| Notify the detection thread that it has to die | | Notify the detection thread that it has to die |
@ -1840,7 +1844,7 @@ void Ui::OpenRGBDialog::on_ButtonStopDetection_clicked()
SetDetectionViewState(false); SetDetectionViewState(false);
} }
void Ui::OpenRGBDialog::SetDetectionViewState(bool detection_showing) void OpenRGBDialog::SetDetectionViewState(bool detection_showing)
{ {
if(detection_showing) if(detection_showing)
{ {
@ -1939,7 +1943,7 @@ void OpenRGBDialog::SaveProfileAs()
} }
} }
void Ui::OpenRGBDialog::on_ButtonRescan_clicked() void OpenRGBDialog::on_ButtonRescan_clicked()
{ {
/*---------------------------------------------------------*\ /*---------------------------------------------------------*\
| Hide devices view on rescan so it stops handling paint | | Hide devices view on rescan so it stops handling paint |
@ -1964,7 +1968,7 @@ void Ui::OpenRGBDialog::on_ButtonRescan_clicked()
ResourceManager::get()->DetectDevices(); ResourceManager::get()->DetectDevices();
} }
void Ui::OpenRGBDialog::on_ActionSaveProfile_triggered() void OpenRGBDialog::on_ActionSaveProfile_triggered()
{ {
if(ui->ProfileBox->currentIndex() >= 0) if(ui->ProfileBox->currentIndex() >= 0)
{ {
@ -1976,33 +1980,33 @@ void Ui::OpenRGBDialog::on_ActionSaveProfile_triggered()
} }
} }
void Ui::OpenRGBDialog::on_ActionSaveProfileAs_triggered() void OpenRGBDialog::on_ActionSaveProfileAs_triggered()
{ {
SaveProfileAs(); SaveProfileAs();
} }
void Ui::OpenRGBDialog::on_InformationTabBar_currentChanged(int tab_idx) void OpenRGBDialog::on_InformationTabBar_currentChanged(int tab_idx)
{ {
TogglePluginsVisibility(tab_idx, ui->InformationTabBar); TogglePluginsVisibility(tab_idx, ui->InformationTabBar);
} }
void Ui::OpenRGBDialog::on_DevicesTabBar_currentChanged(int tab_idx) void OpenRGBDialog::on_DevicesTabBar_currentChanged(int tab_idx)
{ {
TogglePluginsVisibility(tab_idx, ui->DevicesTabBar); TogglePluginsVisibility(tab_idx, ui->DevicesTabBar);
} }
void Ui::OpenRGBDialog::on_MainTabBar_currentChanged(int tab_idx) void OpenRGBDialog::on_MainTabBar_currentChanged(int tab_idx)
{ {
TogglePluginsVisibility(tab_idx, ui->MainTabBar); TogglePluginsVisibility(tab_idx, ui->MainTabBar);
} }
void Ui::OpenRGBDialog::on_SettingsTabBar_currentChanged(int tab_idx) void OpenRGBDialog::on_SettingsTabBar_currentChanged(int tab_idx)
{ {
TogglePluginsVisibility(tab_idx, ui->SettingsTabBar); TogglePluginsVisibility(tab_idx, ui->SettingsTabBar);
} }
void Ui::OpenRGBDialog::TogglePluginsVisibility(int tab_idx, QTabWidget* tabBar) void OpenRGBDialog::TogglePluginsVisibility(int tab_idx, QTabWidget* tabBar)
{ {
/*---------------------------------------------------------*\ /*---------------------------------------------------------*\
| Hide all plugins | | Hide all plugins |
@ -2038,7 +2042,7 @@ void Ui::OpenRGBDialog::TogglePluginsVisibility(int tab_idx, QTabWidget* tabBar)
} }
} }
void Ui::OpenRGBDialog::AddConsolePage() void OpenRGBDialog::AddConsolePage()
{ {
OpenRGBConsolePage* page = new OpenRGBConsolePage(); OpenRGBConsolePage* page = new OpenRGBConsolePage();

View file

@ -17,8 +17,6 @@
#include <QMenu> #include <QMenu>
#include <QSlider> #include <QSlider>
#include "ui_OpenRGBDialog.h"
#include "OpenRGBClientInfoPage.h" #include "OpenRGBClientInfoPage.h"
#include "OpenRGBPluginsPage/OpenRGBPluginsPage.h" #include "OpenRGBPluginsPage/OpenRGBPluginsPage.h"
#include "OpenRGBSoftwareInfoPage.h" #include "OpenRGBSoftwareInfoPage.h"
@ -53,7 +51,7 @@ namespace Ui
class OpenRGBDialog; class OpenRGBDialog;
} }
class Ui::OpenRGBDialog : public QMainWindow, private SuspendResumeListener class OpenRGBDialog : public QMainWindow, private SuspendResumeListener
{ {
Q_OBJECT Q_OBJECT
@ -89,7 +87,7 @@ protected:
void keyPressEvent(QKeyEvent *event) override; void keyPressEvent(QKeyEvent *event) override;
private: private:
const char* context = "Ui::OpenRGBDialog"; const char* context = "OpenRGBDialog";
/*-------------------------------------*\ /*-------------------------------------*\
| Page pointers | | Page pointers |
@ -127,7 +125,7 @@ private:
/*-------------------------------------*\ /*-------------------------------------*\
| User interface | | User interface |
\*-------------------------------------*/ \*-------------------------------------*/
Ui::OpenRGBDialogUi *ui; Ui::OpenRGBDialog *ui;
void AddSoftwareInfoPage(); void AddSoftwareInfoPage();
void AddSupportedDevicesPage(); void AddSupportedDevicesPage();

View file

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0"> <ui version="4.0">
<class>OpenRGBDialogUi</class> <class>OpenRGBDialog</class>
<widget class="QMainWindow" name="OpenRGBDialogUi"> <widget class="QMainWindow" name="OpenRGBDialog">
<property name="geometry"> <property name="geometry">
<rect> <rect>
<x>0</x> <x>0</x>

View file

@ -10,11 +10,9 @@
#include "OpenRGBE131SettingsEntry.h" #include "OpenRGBE131SettingsEntry.h"
#include "ui_OpenRGBE131SettingsEntry.h" #include "ui_OpenRGBE131SettingsEntry.h"
using namespace Ui;
OpenRGBE131SettingsEntry::OpenRGBE131SettingsEntry(QWidget *parent) : OpenRGBE131SettingsEntry::OpenRGBE131SettingsEntry(QWidget *parent) :
BaseManualDeviceEntry(parent), BaseManualDeviceEntry(parent),
ui(new Ui::OpenRGBE131SettingsEntryUi) ui(new Ui::OpenRGBE131SettingsEntry)
{ {
ui->setupUi(this); ui->setupUi(this);
@ -54,7 +52,7 @@ void OpenRGBE131SettingsEntry::changeEvent(QEvent *event)
} }
} }
void Ui::OpenRGBE131SettingsEntry::HideMatrixSettings() void OpenRGBE131SettingsEntry::HideMatrixSettings()
{ {
ui->MatrixWidthLabel->setDisabled(true); ui->MatrixWidthLabel->setDisabled(true);
ui->MatrixWidthEdit->setDisabled(true); ui->MatrixWidthEdit->setDisabled(true);
@ -66,7 +64,7 @@ void Ui::OpenRGBE131SettingsEntry::HideMatrixSettings()
ui->MatrixOrderComboBox->setDisabled(true); ui->MatrixOrderComboBox->setDisabled(true);
} }
void Ui::OpenRGBE131SettingsEntry::ShowMatrixSettings() void OpenRGBE131SettingsEntry::ShowMatrixSettings()
{ {
ui->MatrixWidthLabel->setDisabled(false); ui->MatrixWidthLabel->setDisabled(false);
ui->MatrixWidthEdit->setDisabled(false); ui->MatrixWidthEdit->setDisabled(false);
@ -78,7 +76,7 @@ void Ui::OpenRGBE131SettingsEntry::ShowMatrixSettings()
ui->MatrixOrderComboBox->setDisabled(false); ui->MatrixOrderComboBox->setDisabled(false);
} }
void Ui::OpenRGBE131SettingsEntry::on_TypeComboBox_currentIndexChanged(int index) void OpenRGBE131SettingsEntry::on_TypeComboBox_currentIndexChanged(int index)
{ {
if(index == 2) if(index == 2)
{ {

View file

@ -14,10 +14,9 @@
namespace Ui namespace Ui
{ {
class OpenRGBE131SettingsEntry; class OpenRGBE131SettingsEntry;
class OpenRGBE131SettingsEntryUi;
} }
class Ui::OpenRGBE131SettingsEntry : public BaseManualDeviceEntry class OpenRGBE131SettingsEntry : public BaseManualDeviceEntry
{ {
Q_OBJECT Q_OBJECT
@ -29,7 +28,7 @@ public:
const char* settingsSection(); const char* settingsSection();
private: private:
Ui::OpenRGBE131SettingsEntryUi *ui; Ui::OpenRGBE131SettingsEntry *ui;
private: private:
void HideMatrixSettings(); void HideMatrixSettings();

View file

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0"> <ui version="4.0">
<class>OpenRGBE131SettingsEntryUi</class> <class>OpenRGBE131SettingsEntry</class>
<widget class="QWidget" name="OpenRGBE131SettingsEntryUi"> <widget class="QWidget" name="OpenRGBE131SettingsEntry">
<property name="geometry"> <property name="geometry">
<rect> <rect>
<x>0</x> <x>0</x>

View file

@ -12,11 +12,9 @@
#include "ResourceManager.h" #include "ResourceManager.h"
#include "SettingsManager.h" #include "SettingsManager.h"
using namespace Ui;
OpenRGBE131SettingsPage::OpenRGBE131SettingsPage(QWidget *parent) : OpenRGBE131SettingsPage::OpenRGBE131SettingsPage(QWidget *parent) :
QWidget(parent), QWidget(parent),
ui(new Ui::OpenRGBE131SettingsPageUi) ui(new Ui::OpenRGBE131SettingsPage)
{ {
ui->setupUi(this); ui->setupUi(this);
@ -64,7 +62,7 @@ void OpenRGBE131SettingsPage::changeEvent(QEvent *event)
} }
} }
void Ui::OpenRGBE131SettingsPage::on_AddE131DeviceButton_clicked() void OpenRGBE131SettingsPage::on_AddE131DeviceButton_clicked()
{ {
OpenRGBE131SettingsEntry* entry = new OpenRGBE131SettingsEntry; OpenRGBE131SettingsEntry* entry = new OpenRGBE131SettingsEntry;
entries.push_back(entry); entries.push_back(entry);
@ -78,7 +76,7 @@ void Ui::OpenRGBE131SettingsPage::on_AddE131DeviceButton_clicked()
ui->E131DeviceList->show(); ui->E131DeviceList->show();
} }
void Ui::OpenRGBE131SettingsPage::on_RemoveE131DeviceButton_clicked() void OpenRGBE131SettingsPage::on_RemoveE131DeviceButton_clicked()
{ {
int cur_row = ui->E131DeviceList->currentRow(); int cur_row = ui->E131DeviceList->currentRow();
@ -96,7 +94,7 @@ void Ui::OpenRGBE131SettingsPage::on_RemoveE131DeviceButton_clicked()
entries.erase(entries.begin() + cur_row); entries.erase(entries.begin() + cur_row);
} }
void Ui::OpenRGBE131SettingsPage::on_SaveE131ConfigurationButton_clicked() void OpenRGBE131SettingsPage::on_SaveE131ConfigurationButton_clicked()
{ {
json e131_settings; json e131_settings;

View file

@ -18,7 +18,7 @@ namespace Ui
class OpenRGBE131SettingsPage; class OpenRGBE131SettingsPage;
} }
class Ui::OpenRGBE131SettingsPage : public QWidget class OpenRGBE131SettingsPage : public QWidget
{ {
Q_OBJECT Q_OBJECT
@ -35,6 +35,6 @@ private slots:
void on_SaveE131ConfigurationButton_clicked(); void on_SaveE131ConfigurationButton_clicked();
private: private:
Ui::OpenRGBE131SettingsPageUi *ui; Ui::OpenRGBE131SettingsPage *ui;
std::vector<OpenRGBE131SettingsEntry*> entries; std::vector<OpenRGBE131SettingsEntry*> entries;
}; };

View file

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0"> <ui version="4.0">
<class>OpenRGBE131SettingsPageUi</class> <class>OpenRGBE131SettingsPage</class>
<widget class="QWidget" name="OpenRGBE131SettingsPageUi"> <widget class="QWidget" name="OpenRGBE131SettingsPage">
<property name="geometry"> <property name="geometry">
<rect> <rect>
<x>0</x> <x>0</x>

View file

@ -10,11 +10,9 @@
#include "OpenRGBElgatoKeyLightSettingsEntry.h" #include "OpenRGBElgatoKeyLightSettingsEntry.h"
#include "ui_OpenRGBElgatoKeyLightSettingsEntry.h" #include "ui_OpenRGBElgatoKeyLightSettingsEntry.h"
using namespace Ui;
OpenRGBElgatoKeyLightSettingsEntry::OpenRGBElgatoKeyLightSettingsEntry(QWidget *parent) : OpenRGBElgatoKeyLightSettingsEntry::OpenRGBElgatoKeyLightSettingsEntry(QWidget *parent) :
BaseManualDeviceEntry(parent), BaseManualDeviceEntry(parent),
ui(new Ui::OpenRGBElgatoKeyLightSettingsEntryUi) ui(new Ui::OpenRGBElgatoKeyLightSettingsEntry)
{ {
ui->setupUi(this); ui->setupUi(this);
setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint); setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint);

View file

@ -14,10 +14,9 @@
namespace Ui namespace Ui
{ {
class OpenRGBElgatoKeyLightSettingsEntry; class OpenRGBElgatoKeyLightSettingsEntry;
class OpenRGBElgatoKeyLightSettingsEntryUi;
} }
class Ui::OpenRGBElgatoKeyLightSettingsEntry : public BaseManualDeviceEntry class OpenRGBElgatoKeyLightSettingsEntry : public BaseManualDeviceEntry
{ {
Q_OBJECT Q_OBJECT
@ -29,7 +28,7 @@ public:
const char* settingsSection(); const char* settingsSection();
private: private:
Ui::OpenRGBElgatoKeyLightSettingsEntryUi *ui; Ui::OpenRGBElgatoKeyLightSettingsEntry *ui;
private slots: private slots:
void changeEvent(QEvent *event); void changeEvent(QEvent *event);

View file

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0"> <ui version="4.0">
<class>OpenRGBElgatoKeyLightSettingsEntryUi</class> <class>OpenRGBElgatoKeyLightSettingsEntry</class>
<widget class="QWidget" name="OpenRGBElgatoKeyLightSettingsEntryUi"> <widget class="QWidget" name="OpenRGBElgatoKeyLightSettingsEntry">
<property name="geometry"> <property name="geometry">
<rect> <rect>
<x>0</x> <x>0</x>

View file

@ -12,11 +12,9 @@
#include "ResourceManager.h" #include "ResourceManager.h"
#include "SettingsManager.h" #include "SettingsManager.h"
using namespace Ui;
OpenRGBElgatoKeyLightSettingsPage::OpenRGBElgatoKeyLightSettingsPage(QWidget *parent) : OpenRGBElgatoKeyLightSettingsPage::OpenRGBElgatoKeyLightSettingsPage(QWidget *parent) :
QWidget(parent), QWidget(parent),
ui(new Ui::OpenRGBElgatoKeyLightSettingsPageUi) ui(new Ui::OpenRGBElgatoKeyLightSettingsPage)
{ {
ui->setupUi(this); ui->setupUi(this);
@ -61,7 +59,7 @@ void OpenRGBElgatoKeyLightSettingsPage::changeEvent(QEvent *event)
} }
} }
void Ui::OpenRGBElgatoKeyLightSettingsPage::on_AddElgatoKeyLightDeviceButton_clicked() void OpenRGBElgatoKeyLightSettingsPage::on_AddElgatoKeyLightDeviceButton_clicked()
{ {
OpenRGBElgatoKeyLightSettingsEntry* entry = new OpenRGBElgatoKeyLightSettingsEntry; OpenRGBElgatoKeyLightSettingsEntry* entry = new OpenRGBElgatoKeyLightSettingsEntry;
entries.push_back(entry); entries.push_back(entry);
@ -75,7 +73,7 @@ void Ui::OpenRGBElgatoKeyLightSettingsPage::on_AddElgatoKeyLightDeviceButton_cli
ui->ElgatoKeyLightDeviceList->show(); ui->ElgatoKeyLightDeviceList->show();
} }
void Ui::OpenRGBElgatoKeyLightSettingsPage::on_RemoveElgatoKeyLightDeviceButton_clicked() void OpenRGBElgatoKeyLightSettingsPage::on_RemoveElgatoKeyLightDeviceButton_clicked()
{ {
int cur_row = ui->ElgatoKeyLightDeviceList->currentRow(); int cur_row = ui->ElgatoKeyLightDeviceList->currentRow();
@ -93,7 +91,7 @@ void Ui::OpenRGBElgatoKeyLightSettingsPage::on_RemoveElgatoKeyLightDeviceButton_
entries.erase(entries.begin() + cur_row); entries.erase(entries.begin() + cur_row);
} }
void Ui::OpenRGBElgatoKeyLightSettingsPage::on_SaveElgatoKeyLightConfigurationButton_clicked() void OpenRGBElgatoKeyLightSettingsPage::on_SaveElgatoKeyLightConfigurationButton_clicked()
{ {
json elgato_keylight_settings; json elgato_keylight_settings;

View file

@ -15,10 +15,9 @@
namespace Ui namespace Ui
{ {
class OpenRGBElgatoKeyLightSettingsPage; class OpenRGBElgatoKeyLightSettingsPage;
class OpenRGBElgatoKeyLightSettingsPageUi;
} }
class Ui::OpenRGBElgatoKeyLightSettingsPage : public QWidget class OpenRGBElgatoKeyLightSettingsPage : public QWidget
{ {
Q_OBJECT Q_OBJECT
@ -35,6 +34,6 @@ private slots:
void on_SaveElgatoKeyLightConfigurationButton_clicked(); void on_SaveElgatoKeyLightConfigurationButton_clicked();
private: private:
Ui::OpenRGBElgatoKeyLightSettingsPageUi *ui; Ui::OpenRGBElgatoKeyLightSettingsPage *ui;
std::vector<OpenRGBElgatoKeyLightSettingsEntry*> entries; std::vector<OpenRGBElgatoKeyLightSettingsEntry*> entries;
}; };

View file

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0"> <ui version="4.0">
<class>OpenRGBElgatoKeyLightSettingsPageUi</class> <class>OpenRGBElgatoKeyLightSettingsPage</class>
<widget class="QWidget" name="OpenRGBElgatoKeyLightSettingsPageUi"> <widget class="QWidget" name="OpenRGBElgatoKeyLightSettingsPage">
<property name="geometry"> <property name="geometry">
<rect> <rect>
<x>0</x> <x>0</x>

View file

@ -10,11 +10,9 @@
#include "OpenRGBElgatoLightStripSettingsEntry.h" #include "OpenRGBElgatoLightStripSettingsEntry.h"
#include "ui_OpenRGBElgatoLightStripSettingsEntry.h" #include "ui_OpenRGBElgatoLightStripSettingsEntry.h"
using namespace Ui;
OpenRGBElgatoLightStripSettingsEntry::OpenRGBElgatoLightStripSettingsEntry(QWidget *parent) : OpenRGBElgatoLightStripSettingsEntry::OpenRGBElgatoLightStripSettingsEntry(QWidget *parent) :
BaseManualDeviceEntry(parent), BaseManualDeviceEntry(parent),
ui(new Ui::OpenRGBElgatoLightStripSettingsEntryUi) ui(new Ui::OpenRGBElgatoLightStripSettingsEntry)
{ {
ui->setupUi(this); ui->setupUi(this);
setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint); setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint);

View file

@ -14,23 +14,22 @@
namespace Ui namespace Ui
{ {
class OpenRGBElgatoLightStripSettingsEntry; class OpenRGBElgatoLightStripSettingsEntry;
class OpenRGBElgatoLightStripSettingsEntryUi;
} }
class Ui::OpenRGBElgatoLightStripSettingsEntry : public BaseManualDeviceEntry class OpenRGBElgatoLightStripSettingsEntry : public BaseManualDeviceEntry
{ {
Q_OBJECT Q_OBJECT
public: public:
explicit OpenRGBElgatoLightStripSettingsEntry(QWidget *parent = nullptr); explicit OpenRGBElgatoLightStripSettingsEntry(QWidget *parent = nullptr);
~OpenRGBElgatoLightStripSettingsEntry(); ~OpenRGBElgatoLightStripSettingsEntry();
void loadFromSettings(const json& data); void loadFromSettings(const json& data);
json saveSettings(); json saveSettings();
const char* settingsSection(); const char* settingsSection();
private: private:
Ui::OpenRGBElgatoLightStripSettingsEntryUi *ui; Ui::OpenRGBElgatoLightStripSettingsEntry *ui;
private slots: private slots:
void changeEvent(QEvent *event); void changeEvent(QEvent *event);
}; };

View file

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0"> <ui version="4.0">
<class>OpenRGBElgatoLightStripSettingsEntryUi</class> <class>OpenRGBElgatoLightStripSettingsEntry</class>
<widget class="QWidget" name="OpenRGBElgatoLightStripSettingsEntryUi"> <widget class="QWidget" name="OpenRGBElgatoLightStripSettingsEntry">
<property name="geometry"> <property name="geometry">
<rect> <rect>
<x>0</x> <x>0</x>

View file

@ -12,11 +12,9 @@
#include "ResourceManager.h" #include "ResourceManager.h"
#include "SettingsManager.h" #include "SettingsManager.h"
using namespace Ui;
OpenRGBElgatoLightStripSettingsPage::OpenRGBElgatoLightStripSettingsPage(QWidget *parent) : OpenRGBElgatoLightStripSettingsPage::OpenRGBElgatoLightStripSettingsPage(QWidget *parent) :
QWidget(parent), QWidget(parent),
ui(new Ui::OpenRGBElgatoLightStripSettingsPageUi) ui(new Ui::OpenRGBElgatoLightStripSettingsPage)
{ {
ui->setupUi(this); ui->setupUi(this);
@ -61,7 +59,7 @@ void OpenRGBElgatoLightStripSettingsPage::changeEvent(QEvent *event)
} }
} }
void Ui::OpenRGBElgatoLightStripSettingsPage::on_AddElgatoLightStripDeviceButton_clicked() void OpenRGBElgatoLightStripSettingsPage::on_AddElgatoLightStripDeviceButton_clicked()
{ {
OpenRGBElgatoLightStripSettingsEntry* entry = new OpenRGBElgatoLightStripSettingsEntry; OpenRGBElgatoLightStripSettingsEntry* entry = new OpenRGBElgatoLightStripSettingsEntry;
entries.push_back(entry); entries.push_back(entry);
@ -75,7 +73,7 @@ void Ui::OpenRGBElgatoLightStripSettingsPage::on_AddElgatoLightStripDeviceButton
ui->ElgatoLightStripDeviceList->show(); ui->ElgatoLightStripDeviceList->show();
} }
void Ui::OpenRGBElgatoLightStripSettingsPage::on_RemoveElgatoLightStripDeviceButton_clicked() void OpenRGBElgatoLightStripSettingsPage::on_RemoveElgatoLightStripDeviceButton_clicked()
{ {
int cur_row = ui->ElgatoLightStripDeviceList->currentRow(); int cur_row = ui->ElgatoLightStripDeviceList->currentRow();
@ -93,7 +91,7 @@ void Ui::OpenRGBElgatoLightStripSettingsPage::on_RemoveElgatoLightStripDeviceBut
entries.erase(entries.begin() + cur_row); entries.erase(entries.begin() + cur_row);
} }
void Ui::OpenRGBElgatoLightStripSettingsPage::on_SaveElgatoLightStripConfigurationButton_clicked() void OpenRGBElgatoLightStripSettingsPage::on_SaveElgatoLightStripConfigurationButton_clicked()
{ {
json elgato_lightstrip_settings; json elgato_lightstrip_settings;

View file

@ -10,7 +10,6 @@
#pragma once #pragma once
#include <QWidget> #include <QWidget>
#include "ui_OpenRGBElgatoLightStripSettingsPage.h"
#include "OpenRGBElgatoLightStripSettingsEntry.h" #include "OpenRGBElgatoLightStripSettingsEntry.h"
namespace Ui namespace Ui
@ -18,7 +17,7 @@ namespace Ui
class OpenRGBElgatoLightStripSettingsPage; class OpenRGBElgatoLightStripSettingsPage;
} }
class Ui::OpenRGBElgatoLightStripSettingsPage : public QWidget class OpenRGBElgatoLightStripSettingsPage : public QWidget
{ {
Q_OBJECT Q_OBJECT
@ -35,6 +34,6 @@ private slots:
void on_SaveElgatoLightStripConfigurationButton_clicked(); void on_SaveElgatoLightStripConfigurationButton_clicked();
private: private:
Ui::OpenRGBElgatoLightStripSettingsPageUi *ui; Ui::OpenRGBElgatoLightStripSettingsPage *ui;
std::vector<OpenRGBElgatoLightStripSettingsEntry*> entries; std::vector<OpenRGBElgatoLightStripSettingsEntry*> entries;
}; };

View file

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0"> <ui version="4.0">
<class>OpenRGBElgatoLightStripSettingsPageUi</class> <class>OpenRGBElgatoLightStripSettingsPage</class>
<widget class="QWidget" name="OpenRGBElgatoLightStripSettingsPageUi"> <widget class="QWidget" name="OpenRGBElgatoLightStripSettingsPage">
<property name="geometry"> <property name="geometry">
<rect> <rect>
<x>0</x> <x>0</x>

View file

@ -12,11 +12,9 @@
#include "OpenRGBGoveeSettingsEntry.h" #include "OpenRGBGoveeSettingsEntry.h"
#include "ui_OpenRGBGoveeSettingsEntry.h" #include "ui_OpenRGBGoveeSettingsEntry.h"
using namespace Ui;
OpenRGBGoveeSettingsEntry::OpenRGBGoveeSettingsEntry(QWidget *parent) : OpenRGBGoveeSettingsEntry::OpenRGBGoveeSettingsEntry(QWidget *parent) :
BaseManualDeviceEntry(parent), BaseManualDeviceEntry(parent),
ui(new Ui::OpenRGBGoveeSettingsEntryUi) ui(new Ui::OpenRGBGoveeSettingsEntry)
{ {
ui->setupUi(this); ui->setupUi(this);
} }

View file

@ -16,10 +16,9 @@
namespace Ui namespace Ui
{ {
class OpenRGBGoveeSettingsEntry; class OpenRGBGoveeSettingsEntry;
class OpenRGBGoveeSettingsEntryUi;
} }
class Ui::OpenRGBGoveeSettingsEntry : public BaseManualDeviceEntry class OpenRGBGoveeSettingsEntry : public BaseManualDeviceEntry
{ {
Q_OBJECT Q_OBJECT
@ -31,7 +30,7 @@ public:
const char* settingsSection(); const char* settingsSection();
private: private:
Ui::OpenRGBGoveeSettingsEntryUi *ui; Ui::OpenRGBGoveeSettingsEntry *ui;
private slots: private slots:
void changeEvent(QEvent *event); void changeEvent(QEvent *event);

View file

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0"> <ui version="4.0">
<class>OpenRGBGoveeSettingsEntryUi</class> <class>OpenRGBGoveeSettingsEntry</class>
<widget class="QWidget" name="OpenRGBGoveeSettingsEntryUi"> <widget class="QWidget" name="OpenRGBGoveeSettingsEntry">
<property name="geometry"> <property name="geometry">
<rect> <rect>
<x>0</x> <x>0</x>

View file

@ -14,11 +14,9 @@
#include "ResourceManager.h" #include "ResourceManager.h"
#include "SettingsManager.h" #include "SettingsManager.h"
using namespace Ui;
OpenRGBGoveeSettingsPage::OpenRGBGoveeSettingsPage(QWidget *parent) : OpenRGBGoveeSettingsPage::OpenRGBGoveeSettingsPage(QWidget *parent) :
QWidget(parent), QWidget(parent),
ui(new Ui::OpenRGBGoveeSettingsPageUi) ui(new Ui::OpenRGBGoveeSettingsPage)
{ {
ui->setupUi(this); ui->setupUi(this);
@ -66,7 +64,7 @@ void OpenRGBGoveeSettingsPage::changeEvent(QEvent *event)
} }
} }
void Ui::OpenRGBGoveeSettingsPage::on_AddGoveeDeviceButton_clicked() void OpenRGBGoveeSettingsPage::on_AddGoveeDeviceButton_clicked()
{ {
OpenRGBGoveeSettingsEntry* entry = new OpenRGBGoveeSettingsEntry; OpenRGBGoveeSettingsEntry* entry = new OpenRGBGoveeSettingsEntry;
entries.push_back(entry); entries.push_back(entry);
@ -80,7 +78,7 @@ void Ui::OpenRGBGoveeSettingsPage::on_AddGoveeDeviceButton_clicked()
ui->GoveeDeviceList->show(); ui->GoveeDeviceList->show();
} }
void Ui::OpenRGBGoveeSettingsPage::on_RemoveGoveeDeviceButton_clicked() void OpenRGBGoveeSettingsPage::on_RemoveGoveeDeviceButton_clicked()
{ {
int cur_row = ui->GoveeDeviceList->currentRow(); int cur_row = ui->GoveeDeviceList->currentRow();
@ -98,7 +96,7 @@ void Ui::OpenRGBGoveeSettingsPage::on_RemoveGoveeDeviceButton_clicked()
entries.erase(entries.begin() + cur_row); entries.erase(entries.begin() + cur_row);
} }
void Ui::OpenRGBGoveeSettingsPage::on_SaveGoveeConfigurationButton_clicked() void OpenRGBGoveeSettingsPage::on_SaveGoveeConfigurationButton_clicked()
{ {
json govee_settings; json govee_settings;

View file

@ -12,7 +12,6 @@
#pragma once #pragma once
#include <QWidget> #include <QWidget>
#include "ui_OpenRGBGoveeSettingsPage.h"
#include "OpenRGBGoveeSettingsEntry.h" #include "OpenRGBGoveeSettingsEntry.h"
namespace Ui namespace Ui
@ -20,7 +19,7 @@ namespace Ui
class OpenRGBGoveeSettingsPage; class OpenRGBGoveeSettingsPage;
} }
class Ui::OpenRGBGoveeSettingsPage : public QWidget class OpenRGBGoveeSettingsPage : public QWidget
{ {
Q_OBJECT Q_OBJECT
@ -37,7 +36,7 @@ private slots:
void on_SaveGoveeConfigurationButton_clicked(); void on_SaveGoveeConfigurationButton_clicked();
private: private:
Ui::OpenRGBGoveeSettingsPageUi *ui; Ui::OpenRGBGoveeSettingsPage *ui;
std::vector<OpenRGBGoveeSettingsEntry*> entries; std::vector<OpenRGBGoveeSettingsEntry*> entries;
}; };

View file

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0"> <ui version="4.0">
<class>OpenRGBGoveeSettingsPageUi</class> <class>OpenRGBGoveeSettingsPage</class>
<widget class="QWidget" name="OpenRGBGoveeSettingsPageUi"> <widget class="QWidget" name="OpenRGBGoveeSettingsPage">
<property name="geometry"> <property name="geometry">
<rect> <rect>
<x>0</x> <x>0</x>

View file

@ -16,9 +16,9 @@
#include "ResourceManager.h" #include "ResourceManager.h"
#include "StringUtils.h" #include "StringUtils.h"
Ui::OpenRGBHardwareIDsDialog::OpenRGBHardwareIDsDialog(QWidget *parent) : OpenRGBHardwareIDsDialog::OpenRGBHardwareIDsDialog(QWidget *parent) :
QDialog(parent), QDialog(parent),
ui(new Ui::OpenRGBHardwareIDsDialogUi) ui(new Ui::OpenRGBHardwareIDsDialog)
{ {
ui->setupUi(this); ui->setupUi(this);
setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint); setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint);
@ -27,12 +27,12 @@ Ui::OpenRGBHardwareIDsDialog::OpenRGBHardwareIDsDialog(QWidget *parent) :
ui->HardwareIdsList->header()->resizeSection(2 /*column index*/, 100 /*width*/); ui->HardwareIdsList->header()->resizeSection(2 /*column index*/, 100 /*width*/);
} }
Ui::OpenRGBHardwareIDsDialog::~OpenRGBHardwareIDsDialog() OpenRGBHardwareIDsDialog::~OpenRGBHardwareIDsDialog()
{ {
delete ui; delete ui;
} }
int Ui::OpenRGBHardwareIDsDialog::show() int OpenRGBHardwareIDsDialog::show()
{ {
/*---------------------------------------------------------*\ /*---------------------------------------------------------*\
| Add i2c busses infos | | Add i2c busses infos |
@ -137,7 +137,7 @@ int Ui::OpenRGBHardwareIDsDialog::show()
return this->exec(); return this->exec();
} }
void Ui::OpenRGBHardwareIDsDialog::on_CopyToClipboardButton_clicked() void OpenRGBHardwareIDsDialog::on_CopyToClipboardButton_clicked()
{ {
QClipboard *clipboard = QGuiApplication::clipboard(); QClipboard *clipboard = QGuiApplication::clipboard();
clipboard->setText(strings.join("\n")); clipboard->setText(strings.join("\n"));

View file

@ -10,14 +10,13 @@
#pragma once #pragma once
#include <QDialog> #include <QDialog>
#include "ui_OpenRGBHardwareIDsDialog.h"
namespace Ui namespace Ui
{ {
class OpenRGBHardwareIDsDialog; class OpenRGBHardwareIDsDialog;
} }
class Ui::OpenRGBHardwareIDsDialog : public QDialog class OpenRGBHardwareIDsDialog : public QDialog
{ {
Q_OBJECT Q_OBJECT
@ -31,6 +30,6 @@ private slots:
void on_CopyToClipboardButton_clicked(); void on_CopyToClipboardButton_clicked();
private: private:
Ui::OpenRGBHardwareIDsDialogUi *ui; Ui::OpenRGBHardwareIDsDialog *ui;
QStringList strings; QStringList strings;
}; };

View file

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0"> <ui version="4.0">
<class>OpenRGBHardwareIDsDialogUi</class> <class>OpenRGBHardwareIDsDialog</class>
<widget class="QWidget" name="OpenRGBHardwareIDsDialogUi"> <widget class="QWidget" name="OpenRGBHardwareIDsDialog">
<property name="geometry"> <property name="geometry">
<rect> <rect>
<x>0</x> <x>0</x>

View file

@ -10,11 +10,9 @@
#include "OpenRGBKasaSmartSettingsEntry.h" #include "OpenRGBKasaSmartSettingsEntry.h"
#include "ui_OpenRGBKasaSmartSettingsEntry.h" #include "ui_OpenRGBKasaSmartSettingsEntry.h"
using namespace Ui;
OpenRGBKasaSmartSettingsEntry::OpenRGBKasaSmartSettingsEntry(QWidget *parent) : OpenRGBKasaSmartSettingsEntry::OpenRGBKasaSmartSettingsEntry(QWidget *parent) :
BaseManualDeviceEntry(parent), BaseManualDeviceEntry(parent),
ui(new Ui::OpenRGBKasaSmartSettingsEntryUi) ui(new Ui::OpenRGBKasaSmartSettingsEntry)
{ {
ui->setupUi(this); ui->setupUi(this);
} }

View file

@ -14,10 +14,9 @@
namespace Ui namespace Ui
{ {
class OpenRGBKasaSmartSettingsEntry; class OpenRGBKasaSmartSettingsEntry;
class OpenRGBKasaSmartSettingsEntryUi;
} }
class Ui::OpenRGBKasaSmartSettingsEntry : public BaseManualDeviceEntry class OpenRGBKasaSmartSettingsEntry : public BaseManualDeviceEntry
{ {
Q_OBJECT Q_OBJECT
@ -30,7 +29,7 @@ public:
void setName(QString name); void setName(QString name);
private: private:
Ui::OpenRGBKasaSmartSettingsEntryUi *ui; Ui::OpenRGBKasaSmartSettingsEntry *ui;
private slots: private slots:
void changeEvent(QEvent *event); void changeEvent(QEvent *event);

View file

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0"> <ui version="4.0">
<class>OpenRGBKasaSmartSettingsEntryUi</class> <class>OpenRGBKasaSmartSettingsEntry</class>
<widget class="QWidget" name="OpenRGBKasaSmartSettingsEntryUi"> <widget class="QWidget" name="OpenRGBKasaSmartSettingsEntry">
<property name="geometry"> <property name="geometry">
<rect> <rect>
<x>0</x> <x>0</x>

View file

@ -12,11 +12,9 @@
#include "ResourceManager.h" #include "ResourceManager.h"
#include "SettingsManager.h" #include "SettingsManager.h"
using namespace Ui;
OpenRGBKasaSmartSettingsPage::OpenRGBKasaSmartSettingsPage(QWidget *parent) : OpenRGBKasaSmartSettingsPage::OpenRGBKasaSmartSettingsPage(QWidget *parent) :
QWidget(parent), QWidget(parent),
ui(new Ui::OpenRGBKasaSmartSettingsPageUi) ui(new Ui::OpenRGBKasaSmartSettingsPage)
{ {
ui->setupUi(this); ui->setupUi(this);
@ -64,7 +62,7 @@ void OpenRGBKasaSmartSettingsPage::changeEvent(QEvent *event)
} }
} }
void Ui::OpenRGBKasaSmartSettingsPage::on_AddKasaSmartDeviceButton_clicked() void OpenRGBKasaSmartSettingsPage::on_AddKasaSmartDeviceButton_clicked()
{ {
OpenRGBKasaSmartSettingsEntry* entry = new OpenRGBKasaSmartSettingsEntry; OpenRGBKasaSmartSettingsEntry* entry = new OpenRGBKasaSmartSettingsEntry;
@ -81,7 +79,7 @@ void Ui::OpenRGBKasaSmartSettingsPage::on_AddKasaSmartDeviceButton_clicked()
ui->KasaSmartDeviceList->show(); ui->KasaSmartDeviceList->show();
} }
void Ui::OpenRGBKasaSmartSettingsPage::on_RemoveKasaSmartDeviceButton_clicked() void OpenRGBKasaSmartSettingsPage::on_RemoveKasaSmartDeviceButton_clicked()
{ {
int cur_row = ui->KasaSmartDeviceList->currentRow(); int cur_row = ui->KasaSmartDeviceList->currentRow();
@ -99,7 +97,7 @@ void Ui::OpenRGBKasaSmartSettingsPage::on_RemoveKasaSmartDeviceButton_clicked()
entries.erase(entries.begin() + cur_row); entries.erase(entries.begin() + cur_row);
} }
void Ui::OpenRGBKasaSmartSettingsPage::on_SaveKasaSmartConfigurationButton_clicked() void OpenRGBKasaSmartSettingsPage::on_SaveKasaSmartConfigurationButton_clicked()
{ {
json KasaSmart_settings; json KasaSmart_settings;

View file

@ -8,7 +8,6 @@
\*---------------------------------------------------------*/ \*---------------------------------------------------------*/
#include <QWidget> #include <QWidget>
#include "ui_OpenRGBKasaSmartSettingsPage.h"
#include "OpenRGBKasaSmartSettingsEntry.h" #include "OpenRGBKasaSmartSettingsEntry.h"
namespace Ui namespace Ui
@ -16,7 +15,7 @@ namespace Ui
class OpenRGBKasaSmartSettingsPage; class OpenRGBKasaSmartSettingsPage;
} }
class Ui::OpenRGBKasaSmartSettingsPage : public QWidget class OpenRGBKasaSmartSettingsPage : public QWidget
{ {
Q_OBJECT Q_OBJECT
@ -33,7 +32,7 @@ private slots:
void on_SaveKasaSmartConfigurationButton_clicked(); void on_SaveKasaSmartConfigurationButton_clicked();
private: private:
Ui::OpenRGBKasaSmartSettingsPageUi *ui; Ui::OpenRGBKasaSmartSettingsPage *ui;
std::vector<OpenRGBKasaSmartSettingsEntry*> entries; std::vector<OpenRGBKasaSmartSettingsEntry*> entries;
}; };

View file

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0"> <ui version="4.0">
<class>OpenRGBKasaSmartSettingsPageUi</class> <class>OpenRGBKasaSmartSettingsPage</class>
<widget class="QWidget" name="OpenRGBKasaSmartSettingsPageUi"> <widget class="QWidget" name="OpenRGBKasaSmartSettingsPage">
<property name="geometry"> <property name="geometry">
<rect> <rect>
<x>0</x> <x>0</x>

View file

@ -10,11 +10,9 @@
#include "OpenRGBLIFXSettingsEntry.h" #include "OpenRGBLIFXSettingsEntry.h"
#include "ui_OpenRGBLIFXSettingsEntry.h" #include "ui_OpenRGBLIFXSettingsEntry.h"
using namespace Ui;
OpenRGBLIFXSettingsEntry::OpenRGBLIFXSettingsEntry(QWidget *parent) : OpenRGBLIFXSettingsEntry::OpenRGBLIFXSettingsEntry(QWidget *parent) :
BaseManualDeviceEntry(parent), BaseManualDeviceEntry(parent),
ui(new Ui::OpenRGBLIFXSettingsEntryUi) ui(new Ui::OpenRGBLIFXSettingsEntry)
{ {
ui->setupUi(this); ui->setupUi(this);
} }

View file

@ -12,10 +12,9 @@
namespace Ui namespace Ui
{ {
class OpenRGBLIFXSettingsEntry; class OpenRGBLIFXSettingsEntry;
class OpenRGBLIFXSettingsEntryUi;
} }
class Ui::OpenRGBLIFXSettingsEntry : public BaseManualDeviceEntry class OpenRGBLIFXSettingsEntry : public BaseManualDeviceEntry
{ {
Q_OBJECT Q_OBJECT
@ -28,7 +27,7 @@ public:
void setName(QString name); void setName(QString name);
private: private:
Ui::OpenRGBLIFXSettingsEntryUi *ui; Ui::OpenRGBLIFXSettingsEntry *ui;
private slots: private slots:
void changeEvent(QEvent *event); void changeEvent(QEvent *event);

View file

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0"> <ui version="4.0">
<class>OpenRGBLIFXSettingsEntryUi</class> <class>OpenRGBLIFXSettingsEntry</class>
<widget class="QWidget" name="OpenRGBLIFXSettingsEntryUi"> <widget class="QWidget" name="OpenRGBLIFXSettingsEntry">
<property name="geometry"> <property name="geometry">
<rect> <rect>
<x>0</x> <x>0</x>

View file

@ -12,11 +12,9 @@
#include "ResourceManager.h" #include "ResourceManager.h"
#include "SettingsManager.h" #include "SettingsManager.h"
using namespace Ui;
OpenRGBLIFXSettingsPage::OpenRGBLIFXSettingsPage(QWidget *parent) : OpenRGBLIFXSettingsPage::OpenRGBLIFXSettingsPage(QWidget *parent) :
QWidget(parent), QWidget(parent),
ui(new Ui::OpenRGBLIFXSettingsPageUi) ui(new Ui::OpenRGBLIFXSettingsPage)
{ {
ui->setupUi(this); ui->setupUi(this);
@ -64,7 +62,7 @@ void OpenRGBLIFXSettingsPage::changeEvent(QEvent *event)
} }
} }
void Ui::OpenRGBLIFXSettingsPage::on_AddLIFXDeviceButton_clicked() void OpenRGBLIFXSettingsPage::on_AddLIFXDeviceButton_clicked()
{ {
OpenRGBLIFXSettingsEntry* entry = new OpenRGBLIFXSettingsEntry; OpenRGBLIFXSettingsEntry* entry = new OpenRGBLIFXSettingsEntry;
@ -81,7 +79,7 @@ void Ui::OpenRGBLIFXSettingsPage::on_AddLIFXDeviceButton_clicked()
ui->LIFXDeviceList->show(); ui->LIFXDeviceList->show();
} }
void Ui::OpenRGBLIFXSettingsPage::on_RemoveLIFXDeviceButton_clicked() void OpenRGBLIFXSettingsPage::on_RemoveLIFXDeviceButton_clicked()
{ {
int cur_row = ui->LIFXDeviceList->currentRow(); int cur_row = ui->LIFXDeviceList->currentRow();
@ -99,7 +97,7 @@ void Ui::OpenRGBLIFXSettingsPage::on_RemoveLIFXDeviceButton_clicked()
entries.erase(entries.begin() + cur_row); entries.erase(entries.begin() + cur_row);
} }
void Ui::OpenRGBLIFXSettingsPage::on_SaveLIFXConfigurationButton_clicked() void OpenRGBLIFXSettingsPage::on_SaveLIFXConfigurationButton_clicked()
{ {
json lifx_settings; json lifx_settings;

View file

@ -10,7 +10,6 @@
#pragma once #pragma once
#include <QWidget> #include <QWidget>
#include "ui_OpenRGBLIFXSettingsPage.h"
#include "OpenRGBLIFXSettingsEntry.h" #include "OpenRGBLIFXSettingsEntry.h"
namespace Ui namespace Ui
@ -18,7 +17,7 @@ namespace Ui
class OpenRGBLIFXSettingsPage; class OpenRGBLIFXSettingsPage;
} }
class Ui::OpenRGBLIFXSettingsPage : public QWidget class OpenRGBLIFXSettingsPage : public QWidget
{ {
Q_OBJECT Q_OBJECT
@ -35,7 +34,7 @@ private slots:
void on_SaveLIFXConfigurationButton_clicked(); void on_SaveLIFXConfigurationButton_clicked();
private: private:
Ui::OpenRGBLIFXSettingsPageUi *ui; Ui::OpenRGBLIFXSettingsPage *ui;
std::vector<OpenRGBLIFXSettingsEntry*> entries; std::vector<OpenRGBLIFXSettingsEntry*> entries;
}; };

View file

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0"> <ui version="4.0">
<class>OpenRGBLIFXSettingsPageUi</class> <class>OpenRGBLIFXSettingsPage</class>
<widget class="QWidget" name="OpenRGBLIFXSettingsPageUi"> <widget class="QWidget" name="OpenRGBLIFXSettingsPage">
<property name="geometry"> <property name="geometry">
<rect> <rect>
<x>0</x> <x>0</x>

View file

@ -16,20 +16,20 @@
#include <QSettings> #include <QSettings>
#endif #endif
Ui::OpenRGBNanoleafNewDeviceDialog::OpenRGBNanoleafNewDeviceDialog(QWidget *parent) : OpenRGBNanoleafNewDeviceDialog::OpenRGBNanoleafNewDeviceDialog(QWidget *parent) :
QDialog(parent), ui(new Ui::OpenRGBNanoleafNewDeviceDialogUi) QDialog(parent), ui(new Ui::OpenRGBNanoleafNewDeviceDialog)
{ {
ui->setupUi(this); ui->setupUi(this);
setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint); setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint);
ui->devicePortEdit->setText("16021"); ui->devicePortEdit->setText("16021");
} }
Ui::OpenRGBNanoleafNewDeviceDialog::~OpenRGBNanoleafNewDeviceDialog() OpenRGBNanoleafNewDeviceDialog::~OpenRGBNanoleafNewDeviceDialog()
{ {
delete ui; delete ui;
} }
void Ui::OpenRGBNanoleafNewDeviceDialog::changeEvent(QEvent *event) void OpenRGBNanoleafNewDeviceDialog::changeEvent(QEvent *event)
{ {
if(event->type() == QEvent::LanguageChange) if(event->type() == QEvent::LanguageChange)
{ {
@ -37,7 +37,7 @@ void Ui::OpenRGBNanoleafNewDeviceDialog::changeEvent(QEvent *event)
} }
} }
NanoleafDevice Ui::OpenRGBNanoleafNewDeviceDialog::show() NanoleafDevice OpenRGBNanoleafNewDeviceDialog::show()
{ {
NanoleafDevice return_device; NanoleafDevice return_device;

View file

@ -8,7 +8,6 @@
\*---------------------------------------------------------*/ \*---------------------------------------------------------*/
#include <QDialog> #include <QDialog>
#include "ui_OpenRGBNanoleafNewDeviceDialog.h"
#include "OpenRGBDialog.h" #include "OpenRGBDialog.h"
struct NanoleafDevice struct NanoleafDevice
@ -22,7 +21,7 @@ namespace Ui
class OpenRGBNanoleafNewDeviceDialog; class OpenRGBNanoleafNewDeviceDialog;
} }
class Ui::OpenRGBNanoleafNewDeviceDialog : public QDialog class OpenRGBNanoleafNewDeviceDialog : public QDialog
{ {
Q_OBJECT Q_OBJECT
@ -33,7 +32,7 @@ public:
NanoleafDevice show(); NanoleafDevice show();
private: private:
Ui::OpenRGBNanoleafNewDeviceDialogUi *ui; Ui::OpenRGBNanoleafNewDeviceDialog *ui;
private slots: private slots:
void changeEvent(QEvent *event); void changeEvent(QEvent *event);

View file

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0"> <ui version="4.0">
<class>OpenRGBNanoleafNewDeviceDialogUi</class> <class>OpenRGBNanoleafNewDeviceDialog</class>
<widget class="QDialog" name="OpenRGBNanoleafNewDeviceDialogUi"> <widget class="QDialog" name="OpenRGBNanoleafNewDeviceDialog">
<property name="geometry"> <property name="geometry">
<rect> <rect>
<x>0</x> <x>0</x>
@ -57,7 +57,7 @@
<connection> <connection>
<sender>buttonBox</sender> <sender>buttonBox</sender>
<signal>accepted()</signal> <signal>accepted()</signal>
<receiver>OpenRGBNanoleafNewDeviceDialogUi</receiver> <receiver>OpenRGBNanoleafNewDeviceDialog</receiver>
<slot>accept()</slot> <slot>accept()</slot>
<hints> <hints>
<hint type="sourcelabel"> <hint type="sourcelabel">
@ -73,7 +73,7 @@
<connection> <connection>
<sender>buttonBox</sender> <sender>buttonBox</sender>
<signal>rejected()</signal> <signal>rejected()</signal>
<receiver>OpenRGBNanoleafNewDeviceDialogUi</receiver> <receiver>OpenRGBNanoleafNewDeviceDialog</receiver>
<slot>reject()</slot> <slot>reject()</slot>
<hints> <hints>
<hint type="sourcelabel"> <hint type="sourcelabel">

View file

@ -14,11 +14,9 @@
#include "SettingsManager.h" #include "SettingsManager.h"
#include "NanoleafController.h" #include "NanoleafController.h"
using namespace Ui;
OpenRGBNanoleafSettingsEntry::OpenRGBNanoleafSettingsEntry(QWidget *parent) : OpenRGBNanoleafSettingsEntry::OpenRGBNanoleafSettingsEntry(QWidget *parent) :
BaseManualDeviceEntry(parent), BaseManualDeviceEntry(parent),
ui(new Ui::OpenRGBNanoleafSettingsEntryUi), ui(new Ui::OpenRGBNanoleafSettingsEntry),
paired(false) paired(false)
{ {
ui->setupUi(this); ui->setupUi(this);

View file

@ -10,16 +10,14 @@
#pragma once #pragma once
#include "BaseManualDeviceEntry.h" #include "BaseManualDeviceEntry.h"
#include "ui_OpenRGBNanoleafSettingsEntry.h"
#include "OpenRGBNanoleafScanningThread.h" #include "OpenRGBNanoleafScanningThread.h"
namespace Ui namespace Ui
{ {
class OpenRGBNanoleafSettingsEntry; class OpenRGBNanoleafSettingsEntry;
class OpenRGBNanoleafSettingsEntryUi;
} }
class Ui::OpenRGBNanoleafSettingsEntry : public BaseManualDeviceEntry class OpenRGBNanoleafSettingsEntry : public BaseManualDeviceEntry
{ {
Q_OBJECT Q_OBJECT
@ -35,7 +33,7 @@ public:
int port; int port;
private: private:
Ui::OpenRGBNanoleafSettingsEntryUi *ui; Ui::OpenRGBNanoleafSettingsEntry *ui;
private slots: private slots:
void changeEvent(QEvent *event); void changeEvent(QEvent *event);

View file

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0"> <ui version="4.0">
<class>OpenRGBNanoleafSettingsEntryUi</class> <class>OpenRGBNanoleafSettingsEntry</class>
<widget class="QWidget" name="OpenRGBNanoleafSettingsEntryUi"> <widget class="QWidget" name="OpenRGBNanoleafSettingsEntry">
<property name="geometry"> <property name="geometry">
<rect> <rect>
<x>0</x> <x>0</x>

View file

@ -16,11 +16,9 @@
using json = nlohmann::json; using json = nlohmann::json;
using namespace Ui;
OpenRGBNanoleafSettingsPage::OpenRGBNanoleafSettingsPage(QWidget *parent) : OpenRGBNanoleafSettingsPage::OpenRGBNanoleafSettingsPage(QWidget *parent) :
QWidget(parent), QWidget(parent),
ui(new Ui::OpenRGBNanoleafSettingsPageUi) ui(new Ui::OpenRGBNanoleafSettingsPage)
{ {
ui->setupUi(this); ui->setupUi(this);
@ -64,7 +62,7 @@ void OpenRGBNanoleafSettingsPage::changeEvent(QEvent *event)
} }
} }
void Ui::OpenRGBNanoleafSettingsPage::on_AddNanoleafDeviceButton_clicked() void OpenRGBNanoleafSettingsPage::on_AddNanoleafDeviceButton_clicked()
{ {
/*-----------------------------------------------------*\ /*-----------------------------------------------------*\
| Open a popup to manually add a device by setting ip | | Open a popup to manually add a device by setting ip |
@ -100,7 +98,7 @@ void Ui::OpenRGBNanoleafSettingsPage::on_AddNanoleafDeviceButton_clicked()
} }
} }
void Ui::OpenRGBNanoleafSettingsPage::on_RemoveNanoleafDeviceButton_clicked() void OpenRGBNanoleafSettingsPage::on_RemoveNanoleafDeviceButton_clicked()
{ {
/*-------------------------------------------------*\ /*-------------------------------------------------*\
| Remove the selected device | | Remove the selected device |
@ -129,7 +127,7 @@ void Ui::OpenRGBNanoleafSettingsPage::on_RemoveNanoleafDeviceButton_clicked()
ResourceManager::get()->GetSettingsManager()->SaveSettings(); ResourceManager::get()->GetSettingsManager()->SaveSettings();
} }
void Ui::OpenRGBNanoleafSettingsPage::on_ScanForNanoleafDevicesButton_clicked() void OpenRGBNanoleafSettingsPage::on_ScanForNanoleafDevicesButton_clicked()
{ {
/*-----------------------------------------------------*\ /*-----------------------------------------------------*\
| Create a worker thread for the mDNS query and hookup | | Create a worker thread for the mDNS query and hookup |
@ -146,7 +144,7 @@ void Ui::OpenRGBNanoleafSettingsPage::on_ScanForNanoleafDevicesButton_clicked()
scanThread->start(); scanThread->start();
} }
void Ui::OpenRGBNanoleafSettingsPage::on_DeviceFound(QString address, int port) void OpenRGBNanoleafSettingsPage::on_DeviceFound(QString address, int port)
{ {
std::string location = address.toStdString()+":"+std::to_string(port); std::string location = address.toStdString()+":"+std::to_string(port);

View file

@ -10,7 +10,6 @@
#pragma once #pragma once
#include <QWidget> #include <QWidget>
#include "ui_OpenRGBNanoleafSettingsPage.h"
#include "OpenRGBNanoleafSettingsEntry.h" #include "OpenRGBNanoleafSettingsEntry.h"
namespace Ui namespace Ui
@ -18,7 +17,7 @@ namespace Ui
class OpenRGBNanoleafSettingsPage; class OpenRGBNanoleafSettingsPage;
} }
class Ui::OpenRGBNanoleafSettingsPage : public QWidget class OpenRGBNanoleafSettingsPage : public QWidget
{ {
Q_OBJECT Q_OBJECT
@ -34,6 +33,6 @@ private slots:
void on_DeviceFound(QString address, int port); void on_DeviceFound(QString address, int port);
private: private:
Ui::OpenRGBNanoleafSettingsPageUi *ui; Ui::OpenRGBNanoleafSettingsPage *ui;
std::map<std::string, OpenRGBNanoleafSettingsEntry*> entries; std::map<std::string, OpenRGBNanoleafSettingsEntry*> entries;
}; };

View file

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0"> <ui version="4.0">
<class>OpenRGBNanoleafSettingsPageUi</class> <class>OpenRGBNanoleafSettingsPage</class>
<widget class="QWidget" name="OpenRGBNanoleafSettingsPageUi"> <widget class="QWidget" name="OpenRGBNanoleafSettingsPage">
<property name="geometry"> <property name="geometry">
<rect> <rect>
<x>0</x> <x>0</x>

View file

@ -10,11 +10,9 @@
#include "OpenRGBPhilipsHueSettingsEntry.h" #include "OpenRGBPhilipsHueSettingsEntry.h"
#include "ui_OpenRGBPhilipsHueSettingsEntry.h" #include "ui_OpenRGBPhilipsHueSettingsEntry.h"
using namespace Ui;
OpenRGBPhilipsHueSettingsEntry::OpenRGBPhilipsHueSettingsEntry(QWidget *parent) : OpenRGBPhilipsHueSettingsEntry::OpenRGBPhilipsHueSettingsEntry(QWidget *parent) :
BaseManualDeviceEntry(parent), BaseManualDeviceEntry(parent),
ui(new Ui::OpenRGBPhilipsHueSettingsEntryUi) ui(new Ui::OpenRGBPhilipsHueSettingsEntry)
{ {
ui->setupUi(this); ui->setupUi(this);
} }
@ -32,7 +30,7 @@ void OpenRGBPhilipsHueSettingsEntry::changeEvent(QEvent *event)
} }
} }
void Ui::OpenRGBPhilipsHueSettingsEntry::on_UnpairButton_clicked() void OpenRGBPhilipsHueSettingsEntry::on_UnpairButton_clicked()
{ {
ui->UsernameValue->setText(""); ui->UsernameValue->setText("");
ui->ClientKeyValue->setText(""); ui->ClientKeyValue->setText("");

View file

@ -14,10 +14,9 @@
namespace Ui namespace Ui
{ {
class OpenRGBPhilipsHueSettingsEntry; class OpenRGBPhilipsHueSettingsEntry;
class OpenRGBPhilipsHueSettingsEntryUi;
} }
class Ui::OpenRGBPhilipsHueSettingsEntry : public BaseManualDeviceEntry class OpenRGBPhilipsHueSettingsEntry : public BaseManualDeviceEntry
{ {
Q_OBJECT Q_OBJECT
@ -29,7 +28,7 @@ public:
const char* settingsSection(); const char* settingsSection();
private: private:
Ui::OpenRGBPhilipsHueSettingsEntryUi *ui; Ui::OpenRGBPhilipsHueSettingsEntry *ui;
private slots: private slots:
void changeEvent(QEvent *event); void changeEvent(QEvent *event);

View file

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0"> <ui version="4.0">
<class>OpenRGBPhilipsHueSettingsEntryUi</class> <class>OpenRGBPhilipsHueSettingsEntry</class>
<widget class="QWidget" name="OpenRGBPhilipsHueSettingsEntryUi"> <widget class="QWidget" name="OpenRGBPhilipsHueSettingsEntry">
<property name="geometry"> <property name="geometry">
<rect> <rect>
<x>0</x> <x>0</x>

View file

@ -12,11 +12,9 @@
#include "ResourceManager.h" #include "ResourceManager.h"
#include "SettingsManager.h" #include "SettingsManager.h"
using namespace Ui;
OpenRGBPhilipsHueSettingsPage::OpenRGBPhilipsHueSettingsPage(QWidget *parent) : OpenRGBPhilipsHueSettingsPage::OpenRGBPhilipsHueSettingsPage(QWidget *parent) :
QWidget(parent), QWidget(parent),
ui(new Ui::OpenRGBPhilipsHueSettingsPageUi) ui(new Ui::OpenRGBPhilipsHueSettingsPage)
{ {
ui->setupUi(this); ui->setupUi(this);
@ -64,7 +62,7 @@ void OpenRGBPhilipsHueSettingsPage::changeEvent(QEvent *event)
} }
} }
void Ui::OpenRGBPhilipsHueSettingsPage::on_AddPhilipsHueDeviceButton_clicked() void OpenRGBPhilipsHueSettingsPage::on_AddPhilipsHueDeviceButton_clicked()
{ {
OpenRGBPhilipsHueSettingsEntry* entry = new OpenRGBPhilipsHueSettingsEntry; OpenRGBPhilipsHueSettingsEntry* entry = new OpenRGBPhilipsHueSettingsEntry;
entries.push_back(entry); entries.push_back(entry);
@ -78,7 +76,7 @@ void Ui::OpenRGBPhilipsHueSettingsPage::on_AddPhilipsHueDeviceButton_clicked()
ui->PhilipsHueDeviceList->show(); ui->PhilipsHueDeviceList->show();
} }
void Ui::OpenRGBPhilipsHueSettingsPage::on_RemovePhilipsHueDeviceButton_clicked() void OpenRGBPhilipsHueSettingsPage::on_RemovePhilipsHueDeviceButton_clicked()
{ {
int cur_row = ui->PhilipsHueDeviceList->currentRow(); int cur_row = ui->PhilipsHueDeviceList->currentRow();
@ -96,7 +94,7 @@ void Ui::OpenRGBPhilipsHueSettingsPage::on_RemovePhilipsHueDeviceButton_clicked(
entries.erase(entries.begin() + cur_row); entries.erase(entries.begin() + cur_row);
} }
void Ui::OpenRGBPhilipsHueSettingsPage::on_SavePhilipsHueConfigurationButton_clicked() void OpenRGBPhilipsHueSettingsPage::on_SavePhilipsHueConfigurationButton_clicked()
{ {
json hue_settings; json hue_settings;

View file

@ -10,7 +10,6 @@
#pragma once #pragma once
#include <QWidget> #include <QWidget>
#include "ui_OpenRGBPhilipsHueSettingsPage.h"
#include "OpenRGBPhilipsHueSettingsEntry.h" #include "OpenRGBPhilipsHueSettingsEntry.h"
namespace Ui namespace Ui
@ -18,7 +17,7 @@ namespace Ui
class OpenRGBPhilipsHueSettingsPage; class OpenRGBPhilipsHueSettingsPage;
} }
class Ui::OpenRGBPhilipsHueSettingsPage : public QWidget class OpenRGBPhilipsHueSettingsPage : public QWidget
{ {
Q_OBJECT Q_OBJECT
@ -35,6 +34,6 @@ private slots:
void on_SavePhilipsHueConfigurationButton_clicked(); void on_SavePhilipsHueConfigurationButton_clicked();
private: private:
Ui::OpenRGBPhilipsHueSettingsPageUi *ui; Ui::OpenRGBPhilipsHueSettingsPage *ui;
std::vector<OpenRGBPhilipsHueSettingsEntry*> entries; std::vector<OpenRGBPhilipsHueSettingsEntry*> entries;
}; };

View file

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0"> <ui version="4.0">
<class>OpenRGBPhilipsHueSettingsPageUi</class> <class>OpenRGBPhilipsHueSettingsPage</class>
<widget class="QWidget" name="OpenRGBPhilipsHueSettingsPageUi"> <widget class="QWidget" name="OpenRGBPhilipsHueSettingsPage">
<property name="geometry"> <property name="geometry">
<rect> <rect>
<x>0</x> <x>0</x>

View file

@ -10,11 +10,9 @@
#include "OpenRGBPhilipsWizSettingsEntry.h" #include "OpenRGBPhilipsWizSettingsEntry.h"
#include "ui_OpenRGBPhilipsWizSettingsEntry.h" #include "ui_OpenRGBPhilipsWizSettingsEntry.h"
using namespace Ui;
OpenRGBPhilipsWizSettingsEntry::OpenRGBPhilipsWizSettingsEntry(QWidget *parent) : OpenRGBPhilipsWizSettingsEntry::OpenRGBPhilipsWizSettingsEntry(QWidget *parent) :
BaseManualDeviceEntry(parent), BaseManualDeviceEntry(parent),
ui(new Ui::OpenRGBPhilipsWizSettingsEntryUi) ui(new Ui::OpenRGBPhilipsWizSettingsEntry)
{ {
ui->setupUi(this); ui->setupUi(this);

View file

@ -14,10 +14,9 @@
namespace Ui namespace Ui
{ {
class OpenRGBPhilipsWizSettingsEntry; class OpenRGBPhilipsWizSettingsEntry;
class OpenRGBPhilipsWizSettingsEntryUi;
} }
class Ui::OpenRGBPhilipsWizSettingsEntry : public BaseManualDeviceEntry class OpenRGBPhilipsWizSettingsEntry : public BaseManualDeviceEntry
{ {
Q_OBJECT Q_OBJECT
@ -29,7 +28,7 @@ public:
const char* settingsSection(); const char* settingsSection();
private: private:
Ui::OpenRGBPhilipsWizSettingsEntryUi *ui; Ui::OpenRGBPhilipsWizSettingsEntry *ui;
private slots: private slots:
void changeEvent(QEvent *event); void changeEvent(QEvent *event);

View file

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0"> <ui version="4.0">
<class>OpenRGBPhilipsWizSettingsEntryUi</class> <class>OpenRGBPhilipsWizSettingsEntry</class>
<widget class="QWidget" name="OpenRGBPhilipsWizSettingsEntryUi"> <widget class="QWidget" name="OpenRGBPhilipsWizSettingsEntry">
<property name="geometry"> <property name="geometry">
<rect> <rect>
<x>0</x> <x>0</x>

View file

@ -12,11 +12,9 @@
#include "ResourceManager.h" #include "ResourceManager.h"
#include "SettingsManager.h" #include "SettingsManager.h"
using namespace Ui;
OpenRGBPhilipsWizSettingsPage::OpenRGBPhilipsWizSettingsPage(QWidget *parent) : OpenRGBPhilipsWizSettingsPage::OpenRGBPhilipsWizSettingsPage(QWidget *parent) :
QWidget(parent), QWidget(parent),
ui(new Ui::OpenRGBPhilipsWizSettingsPageUi) ui(new Ui::OpenRGBPhilipsWizSettingsPage)
{ {
ui->setupUi(this); ui->setupUi(this);
@ -64,7 +62,7 @@ void OpenRGBPhilipsWizSettingsPage::changeEvent(QEvent *event)
} }
} }
void Ui::OpenRGBPhilipsWizSettingsPage::on_AddPhilipsWizDeviceButton_clicked() void OpenRGBPhilipsWizSettingsPage::on_AddPhilipsWizDeviceButton_clicked()
{ {
OpenRGBPhilipsWizSettingsEntry* entry = new OpenRGBPhilipsWizSettingsEntry; OpenRGBPhilipsWizSettingsEntry* entry = new OpenRGBPhilipsWizSettingsEntry;
entries.push_back(entry); entries.push_back(entry);
@ -78,7 +76,7 @@ void Ui::OpenRGBPhilipsWizSettingsPage::on_AddPhilipsWizDeviceButton_clicked()
ui->PhilipsWizDeviceList->show(); ui->PhilipsWizDeviceList->show();
} }
void Ui::OpenRGBPhilipsWizSettingsPage::on_RemovePhilipsWizDeviceButton_clicked() void OpenRGBPhilipsWizSettingsPage::on_RemovePhilipsWizDeviceButton_clicked()
{ {
int cur_row = ui->PhilipsWizDeviceList->currentRow(); int cur_row = ui->PhilipsWizDeviceList->currentRow();
@ -96,7 +94,7 @@ void Ui::OpenRGBPhilipsWizSettingsPage::on_RemovePhilipsWizDeviceButton_clicked(
entries.erase(entries.begin() + cur_row); entries.erase(entries.begin() + cur_row);
} }
void Ui::OpenRGBPhilipsWizSettingsPage::on_SavePhilipsWizConfigurationButton_clicked() void OpenRGBPhilipsWizSettingsPage::on_SavePhilipsWizConfigurationButton_clicked()
{ {
json wiz_settings; json wiz_settings;

View file

@ -10,7 +10,6 @@
#pragma once #pragma once
#include <QWidget> #include <QWidget>
#include "ui_OpenRGBPhilipsWizSettingsPage.h"
#include "OpenRGBPhilipsWizSettingsEntry.h" #include "OpenRGBPhilipsWizSettingsEntry.h"
namespace Ui namespace Ui
@ -18,7 +17,7 @@ namespace Ui
class OpenRGBPhilipsWizSettingsPage; class OpenRGBPhilipsWizSettingsPage;
} }
class Ui::OpenRGBPhilipsWizSettingsPage : public QWidget class OpenRGBPhilipsWizSettingsPage : public QWidget
{ {
Q_OBJECT Q_OBJECT
@ -35,7 +34,7 @@ private slots:
void on_SavePhilipsWizConfigurationButton_clicked(); void on_SavePhilipsWizConfigurationButton_clicked();
private: private:
Ui::OpenRGBPhilipsWizSettingsPageUi *ui; Ui::OpenRGBPhilipsWizSettingsPage *ui;
std::vector<OpenRGBPhilipsWizSettingsEntry*> entries; std::vector<OpenRGBPhilipsWizSettingsEntry*> entries;
}; };

View file

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0"> <ui version="4.0">
<class>OpenRGBPhilipsWizSettingsPageUi</class> <class>OpenRGBPhilipsWizSettingsPage</class>
<widget class="QWidget" name="OpenRGBPhilipsWizSettingsPageUi"> <widget class="QWidget" name="OpenRGBPhilipsWizSettingsPage">
<property name="geometry"> <property name="geometry">
<rect> <rect>
<x>0</x> <x>0</x>

View file

@ -10,9 +10,9 @@
#include "OpenRGBPluginContainer.h" #include "OpenRGBPluginContainer.h"
#include "ui_OpenRGBPluginContainer.h" #include "ui_OpenRGBPluginContainer.h"
Ui::OpenRGBPluginContainer::OpenRGBPluginContainer(QWidget *plugin, QWidget *parent) : OpenRGBPluginContainer::OpenRGBPluginContainer(QWidget *plugin, QWidget *parent) :
QWidget(parent), QWidget(parent),
ui(new Ui::OpenRGBPluginContainerUi) ui(new Ui::OpenRGBPluginContainer)
{ {
ui->setupUi(this); ui->setupUi(this);
@ -24,12 +24,12 @@ Ui::OpenRGBPluginContainer::OpenRGBPluginContainer(QWidget *plugin, QWidget *par
Hide(); Hide();
} }
Ui::OpenRGBPluginContainer::~OpenRGBPluginContainer() OpenRGBPluginContainer::~OpenRGBPluginContainer()
{ {
delete ui; delete ui;
} }
void Ui::OpenRGBPluginContainer::changeEvent(QEvent *event) void OpenRGBPluginContainer::changeEvent(QEvent *event)
{ {
if(event->type() == QEvent::LanguageChange) if(event->type() == QEvent::LanguageChange)
{ {
@ -37,13 +37,13 @@ void Ui::OpenRGBPluginContainer::changeEvent(QEvent *event)
} }
} }
void Ui::OpenRGBPluginContainer::Hide() void OpenRGBPluginContainer::Hide()
{ {
plugin_widget->hide(); plugin_widget->hide();
ui->PluginContainerLayout->layout()->invalidate(); ui->PluginContainerLayout->layout()->invalidate();
} }
void Ui::OpenRGBPluginContainer::Show() void OpenRGBPluginContainer::Show()
{ {
plugin_widget->show(); plugin_widget->show();
ui->PluginContainerLayout->layout()->invalidate(); ui->PluginContainerLayout->layout()->invalidate();

View file

@ -10,14 +10,13 @@
#pragma once #pragma once
#include <QWidget> #include <QWidget>
#include "ui_OpenRGBPluginContainer.h"
namespace Ui namespace Ui
{ {
class OpenRGBPluginContainer; class OpenRGBPluginContainer;
} }
class Ui::OpenRGBPluginContainer : public QWidget class OpenRGBPluginContainer : public QWidget
{ {
Q_OBJECT Q_OBJECT
@ -30,7 +29,7 @@ public:
QWidget* plugin_widget; QWidget* plugin_widget;
private: private:
Ui::OpenRGBPluginContainerUi *ui; Ui::OpenRGBPluginContainer *ui;
private slots: private slots:
void changeEvent(QEvent *event); void changeEvent(QEvent *event);

View file

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0"> <ui version="4.0">
<class>OpenRGBPluginContainerUi</class> <class>OpenRGBPluginContainer</class>
<widget class="QWidget" name="OpenRGBPluginContainerUi"> <widget class="QWidget" name="OpenRGBPluginContainer">
<property name="geometry"> <property name="geometry">
<rect> <rect>
<x>0</x> <x>0</x>

View file

@ -11,11 +11,9 @@
#include "ui_OpenRGBPluginsEntry.h" #include "ui_OpenRGBPluginsEntry.h"
#include "PluginManager.h" #include "PluginManager.h"
using namespace Ui;
OpenRGBPluginsEntry::OpenRGBPluginsEntry(QWidget *parent) : OpenRGBPluginsEntry::OpenRGBPluginsEntry(QWidget *parent) :
QWidget(parent), QWidget(parent),
ui(new Ui::OpenRGBPluginsEntryUi) ui(new Ui::OpenRGBPluginsEntry)
{ {
ui->setupUi(this); ui->setupUi(this);
@ -110,7 +108,7 @@ void OpenRGBPluginsEntry::RegisterEnableClickCallback(EnableClickCallback new_ca
EnableClickCallbackArg = new_callback_arg; EnableClickCallbackArg = new_callback_arg;
} }
void Ui::OpenRGBPluginsEntry::on_EnabledCheckBox_stateChanged(int /*checked*/) void OpenRGBPluginsEntry::on_EnabledCheckBox_stateChanged(int /*checked*/)
{ {
/*-------------------------------------------------*\ /*-------------------------------------------------*\
| Call the callbacks | | Call the callbacks |

View file

@ -14,14 +14,13 @@
namespace Ui namespace Ui
{ {
class OpenRGBPluginsEntry; class OpenRGBPluginsEntry;
class OpenRGBPluginsEntryUi;
} }
typedef void (*EnableClickCallback)(void *, void *); typedef void (*EnableClickCallback)(void *, void *);
struct OpenRGBPluginEntry; struct OpenRGBPluginEntry;
class Ui::OpenRGBPluginsEntry : public QWidget class OpenRGBPluginsEntry : public QWidget
{ {
Q_OBJECT Q_OBJECT
@ -45,6 +44,6 @@ private slots:
private: private:
EnableClickCallback EnableClickCallbackVal; EnableClickCallback EnableClickCallbackVal;
void * EnableClickCallbackArg; void * EnableClickCallbackArg;
Ui::OpenRGBPluginsEntryUi * ui; Ui::OpenRGBPluginsEntry * ui;
bool is_system; bool is_system;
}; };

View file

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0"> <ui version="4.0">
<class>OpenRGBPluginsEntryUi</class> <class>OpenRGBPluginsEntry</class>
<widget class="QWidget" name="OpenRGBPluginsEntryUi"> <widget class="QWidget" name="OpenRGBPluginsEntry">
<property name="geometry"> <property name="geometry">
<rect> <rect>
<x>0</x> <x>0</x>

View file

@ -20,14 +20,14 @@
void EnableClickCallbackFunction(void* this_ptr, void* entry_ptr) void EnableClickCallbackFunction(void* this_ptr, void* entry_ptr)
{ {
Ui::OpenRGBPluginsPage* this_page = (Ui::OpenRGBPluginsPage*)this_ptr; OpenRGBPluginsPage* this_page = (OpenRGBPluginsPage*)this_ptr;
this_page->on_EnableButton_clicked((Ui::OpenRGBPluginsEntry*)entry_ptr); this_page->on_EnableButton_clicked((OpenRGBPluginsEntry*)entry_ptr);
} }
Ui::OpenRGBPluginsPage::OpenRGBPluginsPage(PluginManager* plugin_manager_ptr, QWidget *parent) : OpenRGBPluginsPage::OpenRGBPluginsPage(PluginManager* plugin_manager_ptr, QWidget *parent) :
QWidget(parent), QWidget(parent),
ui(new Ui::OpenRGBPluginsPageUi) ui(new Ui::OpenRGBPluginsPage)
{ {
plugin_manager = plugin_manager_ptr; plugin_manager = plugin_manager_ptr;
ui->setupUi(this); ui->setupUi(this);
@ -35,12 +35,12 @@ Ui::OpenRGBPluginsPage::OpenRGBPluginsPage(PluginManager* plugin_manager_ptr, QW
RefreshList(); RefreshList();
} }
Ui::OpenRGBPluginsPage::~OpenRGBPluginsPage() OpenRGBPluginsPage::~OpenRGBPluginsPage()
{ {
delete ui; delete ui;
} }
void Ui::OpenRGBPluginsPage::changeEvent(QEvent *event) void OpenRGBPluginsPage::changeEvent(QEvent *event)
{ {
if(event->type() == QEvent::LanguageChange) if(event->type() == QEvent::LanguageChange)
{ {
@ -48,7 +48,7 @@ void Ui::OpenRGBPluginsPage::changeEvent(QEvent *event)
} }
} }
void Ui::OpenRGBPluginsPage::RefreshList() void OpenRGBPluginsPage::RefreshList()
{ {
ui->PluginsList->clear(); ui->PluginsList->clear();
entries.clear(); entries.clear();
@ -78,7 +78,7 @@ void Ui::OpenRGBPluginsPage::RefreshList()
} }
} }
void Ui::OpenRGBPluginsPage::on_InstallPluginButton_clicked() void OpenRGBPluginsPage::on_InstallPluginButton_clicked()
{ {
/*-----------------------------------------------------*\ /*-----------------------------------------------------*\
| Open a file selection prompt to choose the plugin file| | Open a file selection prompt to choose the plugin file|
@ -93,7 +93,7 @@ void Ui::OpenRGBPluginsPage::on_InstallPluginButton_clicked()
} }
} }
bool Ui::OpenRGBPluginsPage::InstallPlugin(std::string install_file) bool OpenRGBPluginsPage::InstallPlugin(std::string install_file)
{ {
filesystem::path from_path = filesystem::u8path(install_file); filesystem::path from_path = filesystem::u8path(install_file);
filesystem::path to_path = ResourceManager::get()->GetConfigurationDirectory() / "plugins" / from_path.filename(); filesystem::path to_path = ResourceManager::get()->GetConfigurationDirectory() / "plugins" / from_path.filename();
@ -151,7 +151,7 @@ bool Ui::OpenRGBPluginsPage::InstallPlugin(std::string install_file)
return false; return false;
} }
void Ui::OpenRGBPluginsPage::on_RemovePluginButton_clicked() void OpenRGBPluginsPage::on_RemovePluginButton_clicked()
{ {
QMessageBox::StandardButton reply; QMessageBox::StandardButton reply;
@ -221,7 +221,7 @@ void Ui::OpenRGBPluginsPage::on_RemovePluginButton_clicked()
QMessageBox::information(this, tr("Restart Needed"), tr("The plugin will be fully removed after restarting OpenRGB."), QMessageBox::Ok); QMessageBox::information(this, tr("Restart Needed"), tr("The plugin will be fully removed after restarting OpenRGB."), QMessageBox::Ok);
} }
void Ui::OpenRGBPluginsPage::on_EnableButton_clicked(OpenRGBPluginsEntry* entry) void OpenRGBPluginsPage::on_EnableButton_clicked(OpenRGBPluginsEntry* entry)
{ {
/*-----------------------------------------------------*\ /*-----------------------------------------------------*\
| Open plugin list and check if plugin is in the list | | Open plugin list and check if plugin is in the list |
@ -297,7 +297,7 @@ void Ui::OpenRGBPluginsPage::on_EnableButton_clicked(OpenRGBPluginsEntry* entry)
} }
} }
void Ui::OpenRGBPluginsPage::on_PluginsList_itemSelectionChanged() void OpenRGBPluginsPage::on_PluginsList_itemSelectionChanged()
{ {
/*-----------------------------------------------------*\ /*-----------------------------------------------------*\
| Get index of selected plugin entry | | Get index of selected plugin entry |
@ -329,7 +329,7 @@ void Ui::OpenRGBPluginsPage::on_PluginsList_itemSelectionChanged()
} }
} }
void Ui::OpenRGBPluginsPage::on_PluginsList_PluginsDropped(std::vector<std::string> path_list) void OpenRGBPluginsPage::on_PluginsList_PluginsDropped(std::vector<std::string> path_list)
{ {
bool installed = false; bool installed = false;

View file

@ -16,10 +16,9 @@
namespace Ui namespace Ui
{ {
class OpenRGBPluginsPage; class OpenRGBPluginsPage;
class OpenRGBPluginsPageUi;
} }
class Ui::OpenRGBPluginsPage : public QWidget class OpenRGBPluginsPage : public QWidget
{ {
Q_OBJECT Q_OBJECT
@ -41,7 +40,7 @@ private slots:
void on_PluginsList_PluginsDropped(std::vector<std::string>); void on_PluginsList_PluginsDropped(std::vector<std::string>);
private: private:
Ui::OpenRGBPluginsPageUi* ui; Ui::OpenRGBPluginsPage* ui;
PluginManager* plugin_manager; PluginManager* plugin_manager;
std::vector<OpenRGBPluginsEntry*> entries; std::vector<OpenRGBPluginsEntry*> entries;

View file

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0"> <ui version="4.0">
<class>OpenRGBPluginsPageUi</class> <class>OpenRGBPluginsPage</class>
<widget class="QWidget" name="OpenRGBPluginsPageUi"> <widget class="QWidget" name="OpenRGBPluginsPage">
<property name="geometry"> <property name="geometry">
<rect> <rect>
<x>0</x> <x>0</x>

View file

@ -18,8 +18,8 @@
#include <QSettings> #include <QSettings>
#endif #endif
Ui::OpenRGBProfileSaveDialog::OpenRGBProfileSaveDialog(QWidget *parent) : OpenRGBProfileSaveDialog::OpenRGBProfileSaveDialog(QWidget *parent) :
QDialog(parent), ui(new Ui::OpenRGBProfileSaveDialogUi) QDialog(parent), ui(new Ui::OpenRGBProfileSaveDialog)
{ {
ui->setupUi(this); ui->setupUi(this);
setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint); setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint);
@ -44,12 +44,12 @@ Ui::OpenRGBProfileSaveDialog::OpenRGBProfileSaveDialog(QWidget *parent) :
} }
} }
Ui::OpenRGBProfileSaveDialog::~OpenRGBProfileSaveDialog() OpenRGBProfileSaveDialog::~OpenRGBProfileSaveDialog()
{ {
delete ui; delete ui;
} }
void Ui::OpenRGBProfileSaveDialog::changeEvent(QEvent *event) void OpenRGBProfileSaveDialog::changeEvent(QEvent *event)
{ {
if(event->type() == QEvent::LanguageChange) if(event->type() == QEvent::LanguageChange)
{ {
@ -57,7 +57,7 @@ void Ui::OpenRGBProfileSaveDialog::changeEvent(QEvent *event)
} }
} }
std::string Ui::OpenRGBProfileSaveDialog::show() std::string OpenRGBProfileSaveDialog::show()
{ {
std::string return_string; std::string return_string;

View file

@ -10,7 +10,6 @@
#pragma once #pragma once
#include <QDialog> #include <QDialog>
#include "ui_OpenRGBProfileSaveDialog.h"
#include "OpenRGBDialog.h" #include "OpenRGBDialog.h"
namespace Ui namespace Ui
@ -18,7 +17,7 @@ namespace Ui
class OpenRGBProfileSaveDialog; class OpenRGBProfileSaveDialog;
} }
class Ui::OpenRGBProfileSaveDialog : public QDialog class OpenRGBProfileSaveDialog : public QDialog
{ {
Q_OBJECT Q_OBJECT
@ -29,7 +28,7 @@ public:
std::string show(); std::string show();
private: private:
Ui::OpenRGBProfileSaveDialogUi *ui; Ui::OpenRGBProfileSaveDialog *ui;
private slots: private slots:
void changeEvent(QEvent *event); void changeEvent(QEvent *event);

View file

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0"> <ui version="4.0">
<class>OpenRGBProfileSaveDialogUi</class> <class>OpenRGBProfileSaveDialog</class>
<widget class="QDialog" name="OpenRGBProfileSaveDialogUi"> <widget class="QDialog" name="OpenRGBProfileSaveDialog">
<property name="geometry"> <property name="geometry">
<rect> <rect>
<x>0</x> <x>0</x>
@ -57,7 +57,7 @@
<connection> <connection>
<sender>buttonBox</sender> <sender>buttonBox</sender>
<signal>accepted()</signal> <signal>accepted()</signal>
<receiver>OpenRGBProfileSaveDialogUi</receiver> <receiver>OpenRGBProfileSaveDialog</receiver>
<slot>accept()</slot> <slot>accept()</slot>
<hints> <hints>
<hint type="sourcelabel"> <hint type="sourcelabel">
@ -73,7 +73,7 @@
<connection> <connection>
<sender>buttonBox</sender> <sender>buttonBox</sender>
<signal>rejected()</signal> <signal>rejected()</signal>
<receiver>OpenRGBProfileSaveDialogUi</receiver> <receiver>OpenRGBProfileSaveDialog</receiver>
<slot>reject()</slot> <slot>reject()</slot>
<hints> <hints>
<hint type="sourcelabel"> <hint type="sourcelabel">

View file

@ -10,11 +10,9 @@
#include "OpenRGBQMKORGBSettingsEntry.h" #include "OpenRGBQMKORGBSettingsEntry.h"
#include "ui_OpenRGBQMKORGBSettingsEntry.h" #include "ui_OpenRGBQMKORGBSettingsEntry.h"
using namespace Ui;
OpenRGBQMKORGBSettingsEntry::OpenRGBQMKORGBSettingsEntry(QWidget *parent) : OpenRGBQMKORGBSettingsEntry::OpenRGBQMKORGBSettingsEntry(QWidget *parent) :
BaseManualDeviceEntry(parent), BaseManualDeviceEntry(parent),
ui(new Ui::OpenRGBQMKORGBSettingsEntryUi) ui(new Ui::OpenRGBQMKORGBSettingsEntry)
{ {
ui->setupUi(this); ui->setupUi(this);
} }

View file

@ -14,10 +14,9 @@
namespace Ui namespace Ui
{ {
class OpenRGBQMKORGBSettingsEntry; class OpenRGBQMKORGBSettingsEntry;
class OpenRGBQMKORGBSettingsEntryUi;
} }
class Ui::OpenRGBQMKORGBSettingsEntry : public BaseManualDeviceEntry class OpenRGBQMKORGBSettingsEntry : public BaseManualDeviceEntry
{ {
Q_OBJECT Q_OBJECT
@ -32,5 +31,5 @@ public:
const char* settingsSection(); const char* settingsSection();
private: private:
Ui::OpenRGBQMKORGBSettingsEntryUi *ui; Ui::OpenRGBQMKORGBSettingsEntry *ui;
}; };

View file

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0"> <ui version="4.0">
<class>OpenRGBQMKORGBSettingsEntryUi</class> <class>OpenRGBQMKORGBSettingsEntry</class>
<widget class="QWidget" name="OpenRGBQMKORGBSettingsEntryUi"> <widget class="QWidget" name="OpenRGBQMKORGBSettingsEntry">
<property name="geometry"> <property name="geometry">
<rect> <rect>
<x>0</x> <x>0</x>

View file

@ -12,11 +12,9 @@
#include "ResourceManager.h" #include "ResourceManager.h"
#include "SettingsManager.h" #include "SettingsManager.h"
using namespace Ui;
OpenRGBQMKORGBSettingsPage::OpenRGBQMKORGBSettingsPage(QWidget *parent) : OpenRGBQMKORGBSettingsPage::OpenRGBQMKORGBSettingsPage(QWidget *parent) :
QWidget(parent), QWidget(parent),
ui(new Ui::OpenRGBQMKORGBSettingsPageUi) ui(new Ui::OpenRGBQMKORGBSettingsPage)
{ {
ui->setupUi(this); ui->setupUi(this);
@ -64,7 +62,7 @@ void OpenRGBQMKORGBSettingsPage::changeEvent(QEvent *event)
} }
} }
void Ui::OpenRGBQMKORGBSettingsPage::on_AddQMKORGBDeviceButton_clicked() void OpenRGBQMKORGBSettingsPage::on_AddQMKORGBDeviceButton_clicked()
{ {
OpenRGBQMKORGBSettingsEntry* entry = new OpenRGBQMKORGBSettingsEntry; OpenRGBQMKORGBSettingsEntry* entry = new OpenRGBQMKORGBSettingsEntry;
entries.push_back(entry); entries.push_back(entry);
@ -78,7 +76,7 @@ void Ui::OpenRGBQMKORGBSettingsPage::on_AddQMKORGBDeviceButton_clicked()
ui->QMKORGBDeviceList->show(); ui->QMKORGBDeviceList->show();
} }
void Ui::OpenRGBQMKORGBSettingsPage::on_RemoveQMKORGBDeviceButton_clicked() void OpenRGBQMKORGBSettingsPage::on_RemoveQMKORGBDeviceButton_clicked()
{ {
int cur_row = ui->QMKORGBDeviceList->currentRow(); int cur_row = ui->QMKORGBDeviceList->currentRow();
@ -96,7 +94,7 @@ void Ui::OpenRGBQMKORGBSettingsPage::on_RemoveQMKORGBDeviceButton_clicked()
entries.erase(entries.begin() + cur_row); entries.erase(entries.begin() + cur_row);
} }
void Ui::OpenRGBQMKORGBSettingsPage::on_SaveQMKORGBConfigurationButton_clicked() void OpenRGBQMKORGBSettingsPage::on_SaveQMKORGBConfigurationButton_clicked()
{ {
json qmk_settings; json qmk_settings;

View file

@ -15,10 +15,9 @@
namespace Ui namespace Ui
{ {
class OpenRGBQMKORGBSettingsPage; class OpenRGBQMKORGBSettingsPage;
class OpenRGBQMKORGBSettingsPageUi;
} }
class Ui::OpenRGBQMKORGBSettingsPage : public QWidget class OpenRGBQMKORGBSettingsPage : public QWidget
{ {
Q_OBJECT Q_OBJECT
@ -35,7 +34,7 @@ private slots:
void on_SaveQMKORGBConfigurationButton_clicked(); void on_SaveQMKORGBConfigurationButton_clicked();
private: private:
Ui::OpenRGBQMKORGBSettingsPageUi *ui; Ui::OpenRGBQMKORGBSettingsPage *ui;
std::vector<OpenRGBQMKORGBSettingsEntry*> entries; std::vector<OpenRGBQMKORGBSettingsEntry*> entries;
}; };

View file

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0"> <ui version="4.0">
<class>OpenRGBQMKORGBSettingsPageUi</class> <class>OpenRGBQMKORGBSettingsPage</class>
<widget class="QWidget" name="OpenRGBQMKORGBSettingsPageUi"> <widget class="QWidget" name="OpenRGBQMKORGBSettingsPage">
<property name="geometry"> <property name="geometry">
<rect> <rect>
<x>0</x> <x>0</x>

Some files were not shown because too many files have changed in this diff Show more