mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2025-12-23 23:37:48 -05:00
33 lines
853 B
C++
33 lines
853 B
C++
/*---------------------------------------------------------*\
|
|
| OpenRGBSoftwareInfoPage.h |
|
|
| |
|
|
| User interface for software information page |
|
|
| |
|
|
| This file is part of the OpenRGB project |
|
|
| SPDX-License-Identifier: GPL-2.0-or-later |
|
|
\*---------------------------------------------------------*/
|
|
|
|
#pragma once
|
|
|
|
#include <QFrame>
|
|
|
|
namespace Ui
|
|
{
|
|
class OpenRGBSoftwareInfoPage;
|
|
}
|
|
|
|
class OpenRGBSoftwareInfoPage : public QFrame
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit OpenRGBSoftwareInfoPage(QWidget *parent = nullptr);
|
|
~OpenRGBSoftwareInfoPage();
|
|
|
|
private:
|
|
Ui::OpenRGBSoftwareInfoPage *ui;
|
|
|
|
private slots:
|
|
void changeEvent(QEvent *event);
|
|
};
|