updated the changelog
[simple-xmbc-rem] / src / constants.h
1 #ifndef CONSTANTS_H
2 #define CONSTANTS_H
3
4 // QCoreApplication info
5 #define APPLICATION_NAME "simplexbmcremote"
6 #define ORGANIZATION_NAME "Ionutz Borcoman"
7
8 // QSettings keys
9 #define SETUP_XBMC_SERVER "xbmc/server"
10 #define SETUP_XBMC_SERVER_DEFAULT "localhost"
11 #define SETUP_XBMC_PORT "xbmc/port"
12 #define SETUP_XBMC_PORT_DEFAULT "8080"
13
14 #define SETUP_XBMC_REQUIRES_AUTHENTICATION "xbmc/requires_authetication"
15 #define SETUP_XBMC_REQUIRES_AUTHENTICATION_DEFAULT false
16 #define SETUP_XBMC_USERNAME "xbmc/username"
17 #define SETUP_XBMC_USERNAME_DEFAULT ""
18 #define SETUP_XBMC_PASSWORD "xbmc/password"
19 #define SETUP_XBMC_PASSWORD_DEFAULT ""
20
21 #define SETUP_SCREEN_DISABLE_SCREENSAVER "screen/disable_screensaver"
22 #define SETUP_SCREEN_DISABLE_SCREENSAVER_DEFAULT false
23 #define SETUP_SCREEN_DIM_TIMEOUT "screen/dim_timeout"
24 #define SETUP_SCREEN_DIM_TIMEOUT_DEFAULT 5
25 #define SETUP_SCREEN_DIM_PERCENT "screen/dim_percent"
26 #define SETUP_SCREEN_DIM_PERCENT_DEFAULT 20
27
28 #define SETUP_NOTIFICATION_TIMEOUT "notification/timeout"
29 #define SETUP_NOTIFICATION_TIMEOUT_DEFAULT 3
30
31 #endif // CONSTANTS_H