diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-09-18 12:08:15 +0200 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-09-18 12:08:46 +0200 |
commit | 7fd881367544fcc9e70130bf448a181794da26ab (patch) | |
tree | 6fb77744556eda8bf449ddffedb44d4e0713de4f /src/qt/guiconstants.h | |
parent | 0db24bf5c379f0a599c8a43ca8d9486cfb40a60b (diff) | |
parent | bbad683224c77743a9fef5cc2fc64cc43fbec192 (diff) |
Merge pull request #4667
bbad683 [Qt] simplify return code and return values in txtablemodel (Philip Kaufmann)
21f1516 [Qt] add all used colors in txtablemodel to guiconstants (Philip Kaufmann)
Diffstat (limited to 'src/qt/guiconstants.h')
-rw-r--r-- | src/qt/guiconstants.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/qt/guiconstants.h b/src/qt/guiconstants.h index 5ae4bc833d..4c8a67b663 100644 --- a/src/qt/guiconstants.h +++ b/src/qt/guiconstants.h @@ -23,6 +23,12 @@ static const int STATUSBAR_ICONSIZE = 16; #define COLOR_NEGATIVE QColor(255, 0, 0) /* Transaction list -- bare address (without label) */ #define COLOR_BAREADDRESS QColor(140, 140, 140) +/* Transaction list -- TX status decoration - open until date */ +#define COLOR_TX_STATUS_OPENUNTILDATE QColor(64, 64, 255) +/* Transaction list -- TX status decoration - offline */ +#define COLOR_TX_STATUS_OFFLINE QColor(192, 192, 192) +/* Transaction list -- TX status decoration - default color */ +#define COLOR_BLACK QColor(0, 0, 0) /* Tooltips longer than this (in characters) are converted into rich text, so that they can be word-wrapped. |