Navigator2Go  2.0
Manage your local Ocean Navigator installation.
constants.h
1 #ifndef DEFINES_H
2 #define DEFINES_H
3 
4 /***********************************************************************************/
6 const constexpr int STATUS_BAR_MSG_TIMEOUT{2000};
7 
8 /***********************************************************************************/
9 const constexpr auto QSS_COLOR_GREEN{ "color: rgb(115, 210, 22);" };
10 const constexpr auto QSS_COLOR_RED{ "color: rgb(239, 41, 41);" };
11 
12 /***********************************************************************************/
13 const constexpr int COLOR_GREEN{ 115<<16 | 210<<8 | 22 };
14 const constexpr int COLOR_RED{ 239<<16 | 41<<8 | 41 };
15 
16 #endif // DEFINES_H