Wallet encryption part 2: ask passphrase when needed, add menu options
[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 /* Maximum  passphrase length */
8 static const int MAX_PASSPHRASE_SIZE = 1024;
9
10 /* Size of icons in status bar */
11 static const int STATUSBAR_ICONSIZE = 16;
12
13 /* Invalid field background style */
14 #define STYLE_INVALID "background:#FF8080"
15
16 /* Transaction list -- unconfirmed transaction */
17 #define COLOR_UNCONFIRMED QColor(128, 128, 128)
18 /* Transaction list -- negative amount */
19 #define COLOR_NEGATIVE QColor(255, 0, 0)
20 /* Transaction list -- bare address (without label) */
21 #define COLOR_BAREADDRESS QColor(140, 140, 140)
22
23 #endif // GUICONSTANTS_H