aboutsummaryrefslogtreecommitdiff
path: root/src/qt/guiconstants.h
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2011-07-25 18:39:52 +0200
committerWladimir J. van der Laan <laanwj@gmail.com>2011-07-25 18:39:52 +0200
commitbbae0fc9efa6eb7155d679a1cc3eeb451d594d14 (patch)
tree516d2f264cd035a2cc92f0ca98ea99c2f1cede8b /src/qt/guiconstants.h
parentdaa1a7398fc1c6a70c9253ee7c5825674e7ba378 (diff)
downloadbitcoin-bbae0fc9efa6eb7155d679a1cc3eeb451d594d14.tar.xz
put color constants in guiconstants.h
Diffstat (limited to 'src/qt/guiconstants.h')
-rw-r--r--src/qt/guiconstants.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/qt/guiconstants.h b/src/qt/guiconstants.h
index 59f49625bd..79856d4781 100644
--- a/src/qt/guiconstants.h
+++ b/src/qt/guiconstants.h
@@ -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