-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.hpp
33 lines (26 loc) · 1.02 KB
/
main.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#ifndef GLOBALS_H
#define GLOBALS_H
#include <QSysInfo>
#include "mainwindow.h"
#include "scannerwindow.h"
#define PROGRAM_NAME "AvalonMT"
#define PROGRAM_VERSION "0.2"
#define DEFAULT_UPDATE_INTERVAL 4500
#define DEFAULT_NETWORK_REQUEST_TIMEOUT 2000
#define DEFAULT_THREADS_MAX_NUM 10
#define DEFAULT_API_PORT 4028
#define DEFAULT_WEB_PORT 80
#define NO_ERROR 0
#define ERROR_NETWORK 1
#define ERROR_NETWORK_REQUEST_TIMEOUT 2
#define ERROR_NETWORK_NO_DATA 3
#if defined(Q_OS_LINUX)
#define DEFAULT_USER_AGENT PROGRAM_NAME "/" PROGRAM_VERSION " (X11; Linux; x86_64)"
#elif defined(Q_OS_WIN)
#define DEFAULT_USER_AGENT PROGRAM_NAME "/" PROGRAM_VERSION " (Windows NT 6.1; Windows; x86_64)"
#elif defined(Q_OS_MACOS)
#define DEFAULT_USER_AGENT PROGRAM_NAME "/" PROGRAM_VERSION " (Macintosh; MacOS; x86_64)"
#endif
extern MainWindow *gMainWindow;
extern ScannerWindow *gScannerWindow;
#endif // GLOBALS_H