first commit

This commit is contained in:
2026-02-21 17:11:31 +09:00
commit 18b4338361
4001 changed files with 365464 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
#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