b7870199bb3fea85bf52f063e63bf079350c217b
[novacoin.git] / src / qt / guiconstants.h
1 #ifndef GUICONSTANTS_H
2 #define GUICONSTANTS_H
3
4 /* Milliseconds between model updates */
5 static const int MODEL_UPDATE_DELAY = 500;
6
7 /* Size of icons in status bar */
8 static const int STATUSBAR_ICONSIZE = 16;
9
10 /* Invalid field background style */
11 #define STYLE_INVALID "background:#FF8080"
12
13 /* Transaction list -- unconfirmed transaction */
14 #define COLOR_UNCONFIRMED QColor(128, 128, 128)
15 /* Transaction list -- negative amount */
16 #define COLOR_NEGATIVE QColor(255, 0, 0)
17 /* Transaction list -- bare address (without label) */
18 #define COLOR_BAREADDRESS QColor(140, 140, 140)
19
20 #endif // GUICONSTANTS_H