Files
OpenRGB/qt/OpenRGBSoftwareInfoPage/OpenRGBSoftwareInfoPage.h

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);
};