2025-06-15 14:31:54 +08:00
|
|
|
#ifndef PUBLIC_H
|
|
|
|
|
#define PUBLIC_H
|
|
|
|
|
|
|
|
|
|
#include <QString>
|
|
|
|
|
#include <QWidget>
|
|
|
|
|
|
|
|
|
|
class FTCommon
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
static void msg(QWidget* parent, const QString& content);
|
|
|
|
|
static bool affirm(QWidget* parent, const QString& titile, const QString& content);
|
|
|
|
|
static QString select_file(QWidget* parent, const QString& info, const QString& filter);
|
|
|
|
|
static QString GetAppPath();
|
|
|
|
|
};
|
|
|
|
|
|
2025-06-15 20:37:25 +08:00
|
|
|
#endif // PUBLIC_H
|