7fbf7fcd3a169a9b1854496d33e5f54ad052c4b8
[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 /* Invalid field background style */
8 #define STYLE_INVALID "background:#FF8080"
9
10 /* Transaction list -- unconfirmed transaction */
11 #define COLOR_UNCONFIRMED QColor(128, 128, 128)
12 /* Transaction list -- negative amount */
13 #define COLOR_NEGATIVE QColor(255, 0, 0)
14 /* Transaction list -- bare address (without label) */
15 #define COLOR_BAREADDRESS QColor(140, 140, 140)
16
17 #endif // GUICONSTANTS_H