24 lines
520 B
C++
24 lines
520 B
C++
#ifndef FM_SYSTEMINFO_DIALOG_H
|
|
#define FM_SYSTEMINFO_DIALOG_H
|
|
|
|
#if (SYSTEM_INFO_DIALOG)
|
|
#include <QDialog>
|
|
|
|
class QPlainTextEdit;
|
|
class QVBoxLayout;
|
|
class FMSystemInfoDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
private:
|
|
QPlainTextEdit* _text;
|
|
QVBoxLayout* _layout;
|
|
public:
|
|
explicit FMSystemInfoDialog(QWidget *parent = nullptr,Qt::WindowFlags f= Qt::WindowTitleHint | Qt::Dialog | Qt::WindowCloseButtonHint | Qt::CustomizeWindowHint);
|
|
|
|
signals:
|
|
|
|
};
|
|
#endif // SYSTEM_INFO_DIALOG
|
|
|
|
#endif // FM_SYSTEMINFO_DIALOG_H
|