mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2026-01-01 03:37:49 -05:00
29 lines
529 B
C++
29 lines
529 B
C++
#ifndef OPENRGBPROFILESAVEDIALOG_H
|
|
#define OPENRGBPROFILESAVEDIALOG_H
|
|
|
|
#include <QDialog>
|
|
#include "ui_OpenRGBProfileSaveDialog.h"
|
|
#include "OpenRGBDialog2.h"
|
|
|
|
namespace Ui
|
|
{
|
|
class OpenRGBProfileSaveDialog;
|
|
}
|
|
|
|
class Ui::OpenRGBProfileSaveDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit OpenRGBProfileSaveDialog(QWidget *parent = nullptr);
|
|
~OpenRGBProfileSaveDialog();
|
|
|
|
std::string show();
|
|
|
|
private:
|
|
Ui::OpenRGBProfileSaveDialogUi *ui;
|
|
bool darkTheme = false;
|
|
};
|
|
|
|
#endif // OPENRGBPROFILESAVEDIALOG_H
|