mirror of
https://gitee.com/spark-store-project/spark-web-app-runtime.git
synced 2025-07-05 21:26:01 +08:00
when aboutDialog is not created yet, ApplicationDescription can't be set Log: merge changes from develop/qt6 branch
21 lines
477 B
C
21 lines
477 B
C
#ifndef GLOBALDEFINE_H
|
|
#define GLOBALDEFINE_H
|
|
|
|
#include <QObject>
|
|
|
|
#define DEFAULT_TITLE QObject::tr("SparkWebAppRuntime")
|
|
#define ORGANIZATION_NAME QString("spark-union")
|
|
#define DEFAULT_URL QString("qrc:/help/help.html")
|
|
#define DEFAULT_WIDTH (1024)
|
|
#define DEFAULT_HEIGHT (768)
|
|
|
|
#define DEFAULT_ICON QString()
|
|
#define DEFAULT_DESC QString()
|
|
#define DEFAULT_CFG QString()
|
|
|
|
#define DEFAULT_ROOT QString()
|
|
#define DEFAULT_PORT 0
|
|
#define DEFAULT_GPU 1
|
|
|
|
#endif // GLOBALDEFINE_H
|