mirror of
https://gitee.com/gfdgd-xi/deep-wine-runner
synced 2025-12-14 11:02:04 +08:00
使用DTK框架
This commit is contained in:
20
messagebox.h
Normal file
20
messagebox.h
Normal file
@@ -0,0 +1,20 @@
|
||||
#ifndef MESSAGEBOX_H
|
||||
#define MESSAGEBOX_H
|
||||
|
||||
#include <DMainWindow>
|
||||
#include <QObject>
|
||||
#include <DWidget>
|
||||
using namespace Dtk::Widget;
|
||||
class MessageBox
|
||||
{
|
||||
//Q_OBJECT
|
||||
public:
|
||||
explicit MessageBox(DWidget *parent = nullptr);
|
||||
void information(QString title, QString text);
|
||||
private:
|
||||
DWidget *parent;
|
||||
signals:
|
||||
|
||||
};
|
||||
|
||||
#endif // MESSAGEBOX_H
|
||||
Reference in New Issue
Block a user