mirror of
https://gitee.com/spark-store-project/spark-web-app-runtime.git
synced 2025-08-22 12:22:20 +08:00
22 lines
492 B
C
22 lines
492 B
C
#ifndef GLOBALDEFINE_H
|
|
#define GLOBALDEFINE_H
|
|
|
|
#include <QObject>
|
|
|
|
#define DEFAULT_TITLE QObject::tr("SparkWebAppRuntime")
|
|
//#define DEFAULT_URL QString("qrc:/help/help.html")
|
|
#define DEFAULT_URL QString("https://www.baidu.com")
|
|
#define DEFAULT_WIDTH (1024)
|
|
#define DEFAULT_HEIGHT (768)
|
|
|
|
#define DEFAULT_DESC QString()
|
|
#define DEFAULT_ICON QString()
|
|
#define DEFAULT_CFG QString()
|
|
|
|
#define DEFAULT_ROOT QString()
|
|
#define DEFAULT_PORT 0
|
|
|
|
#define CURRENT_VER (1.6)
|
|
|
|
#endif // GLOBALDEFINE_H
|