Publish LumaOps source
This commit is contained in:
@@ -0,0 +1,41 @@
|
||||
/*---------------------------------------------------------*\
|
||||
| OpenRGBClientInfoPage.h |
|
||||
| |
|
||||
| User interface for OpenRGB client information page |
|
||||
| |
|
||||
| This file is part of the OpenRGB project |
|
||||
| SPDX-License-Identifier: GPL-2.0-or-later |
|
||||
\*---------------------------------------------------------*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <QFrame>
|
||||
#include "RGBController.h"
|
||||
#include "NetworkClient.h"
|
||||
|
||||
namespace Ui
|
||||
{
|
||||
class OpenRGBClientInfoPage;
|
||||
}
|
||||
|
||||
class OpenRGBClientInfoPage : public QFrame
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit OpenRGBClientInfoPage(QWidget *parent = nullptr);
|
||||
~OpenRGBClientInfoPage();
|
||||
|
||||
public slots:
|
||||
void UpdateInfo();
|
||||
|
||||
private slots:
|
||||
void changeEvent(QEvent *event);
|
||||
void on_ClientConnectButton_clicked();
|
||||
void onClientDisconnectButton_clicked(QObject * arg);
|
||||
void onClientRescanButton_clicked(QObject * arg);
|
||||
void onClientSaveCheckBox_clicked(QObject * arg);
|
||||
|
||||
private:
|
||||
Ui::OpenRGBClientInfoPage *ui;
|
||||
};
|
||||
Reference in New Issue
Block a user