mirror of
https://github.com/tumic0/GPXSee.git
synced 2024-11-24 11:45:53 +01:00
38 lines
1.1 KiB
C
38 lines
1.1 KiB
C
#ifndef CONFIG_H
|
|
#define CONFIG_H
|
|
|
|
#include <QtGlobal>
|
|
#include <QDir>
|
|
#include <QApplication>
|
|
#include <QString>
|
|
|
|
#define APP_NAME "GPXSee"
|
|
#define APP_HOMEPAGE "http://tumic.wz.cz/gpxsee"
|
|
|
|
#define FONT_FAMILY "Arial"
|
|
#define FONT_SIZE 12
|
|
#define SCREEN_DPI 96.0
|
|
|
|
#define MAP_FILE QString("maps.txt")
|
|
#define POI_DIR QString("POI")
|
|
|
|
#if defined(Q_OS_WIN32)
|
|
#define USER_DIR QDir::homePath() + QString("/GPXSee")
|
|
#define GLOBAL_DIR QApplication::applicationDirPath()
|
|
#elif defined(Q_OS_MAC)
|
|
#define USER_DIR QDir::homePath() + QString("/.gpxsee")
|
|
#define GLOBAL_DIR QApplication::applicationDirPath() \
|
|
+ QString("/../Resources")
|
|
#else
|
|
#define USER_DIR QDir::homePath() + QString("/.gpxsee")
|
|
#define GLOBAL_DIR QString("/usr/share/gpxsee")
|
|
#endif
|
|
|
|
#define USER_MAP_FILE USER_DIR + QString("/") + MAP_FILE
|
|
#define USER_POI_DIR USER_DIR + QString("/") + POI_DIR
|
|
#define GLOBAL_MAP_FILE GLOBAL_DIR + QString("/") + MAP_FILE
|
|
#define GLOBAL_POI_DIR GLOBAL_DIR + QString("/") + POI_DIR
|
|
#define TILES_DIR USER_DIR + QString("/tiles")
|
|
|
|
#endif /* CONFIG_H */
|