Files
OpenRGB/qt/OpenRGBDynamicSettingsWidget/OpenRGBDynamicSettingsWidget.h
Adam Honse 17313f0d94 Settings Rework
* Add JSON string configuration field to RGBController to store device-specific configurations
    * This JSON string holds both configuration and schema
    * Add settings schema tracking to SettingsManager
    * Implement dynamic settings widget that generates a settings UI based on a JSON schema
    * Implement SettingsManager callback for notifying of settings changes and settings schema updates
    * Always enable Entire Device zone option and use it to enable Edit Device
    * Rename SaveSizes to SaveConfiguration in ProfileManager and Sizes.json to Configuration.json
    * Add zone flag for indicating that a zone's geometry may change, informing profile manager to ignore this check
    * Remove Theme setting and Theme Manager, as this didn't work on most setups anyways and Qt6 has proper Windows dark theming
2026-05-07 00:36:59 -05:00

58 lines
2.0 KiB
C++

/*---------------------------------------------------------*\
| OpenRGBDynamicSettingsWidget.h |
| |
| Widget for one dynamic settings list entry |
| |
| Adam Honse <calcprogrammer1@gmail.com> 16 Apr 2026 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-or-later |
\*---------------------------------------------------------*/
#pragma once
#include <QEvent>
#include <QLabel>
#include <QHBoxLayout>
#include <QWidget>
#include "nlohmann/json.hpp"
/*---------------------------------------------------------*\
| Callback Type |
\*---------------------------------------------------------*/
typedef void (*OpenRGBDynamicSettingsCallback)(void*, std::string, nlohmann::json);
class OpenRGBDynamicSettingsWidget : public QWidget
{
Q_OBJECT
public:
OpenRGBDynamicSettingsWidget(std::string key, nlohmann::json& schema, nlohmann::json& settings, QWidget* parent = nullptr);
~OpenRGBDynamicSettingsWidget();
void ProfileListUpdated();
void SetCallback(OpenRGBDynamicSettingsCallback callback, void* callback_arg);
void OnSettingChanged();
private:
std::string description;
std::string key;
std::string title;
std::string type;
bool is_enum;
QHBoxLayout* layout;
QWidget* left_widget;
QWidget* right_widget;
OpenRGBDynamicSettingsCallback callback;
void* callback_arg;
void UpdateLabels();
private slots:
void changeEvent(QEvent *event);
public:
static void NestedCallback(void* this_ptr, std::string key, nlohmann::json settings);
};