put color constants in guiconstants.h

This commit is contained in:
Wladimir J. van der Laan
2011-07-25 18:39:52 +02:00
parent daa1a7398f
commit bbae0fc9ef
3 changed files with 11 additions and 5 deletions

View File

@@ -4,8 +4,12 @@
/* milliseconds between model updates */
static const int MODEL_UPDATE_DELAY = 500;
/* size of cache */
static const unsigned int WALLET_CACHE_SIZE = 100;
/* Invalid field background style */
#define STYLE_INVALID "background:#FF8080"
/* Transaction list -- unconfirmed transaction */
#define COLOR_UNCONFIRMED QColor(128, 128, 128)
/* Transaction list -- negative amount */
#define COLOR_NEGATIVE QColor(128, 128, 128)
#endif // GUICONSTANTS_H