Merge #11997: [tests] util_tests.cpp: actually check ignored args
[bitcoinplatinum.git] / src / qt / guiconstants.h
blob1d21d8c766eae9141032a4fb7e06a6498ef7e6f9
1 // Copyright (c) 2011-2016 The Bitcoin Core developers
2 // Distributed under the MIT software license, see the accompanying
3 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
5 #ifndef BITCOIN_QT_GUICONSTANTS_H
6 #define BITCOIN_QT_GUICONSTANTS_H
8 /* Milliseconds between model updates */
9 static const int MODEL_UPDATE_DELAY = 250;
11 /* AskPassphraseDialog -- Maximum passphrase length */
12 static const int MAX_PASSPHRASE_SIZE = 1024;
14 /* BitcoinGUI -- Size of icons in status bar */
15 static const int STATUSBAR_ICONSIZE = 16;
17 static const bool DEFAULT_SPLASHSCREEN = true;
19 /* Invalid field background style */
20 #define STYLE_INVALID "background:#FF8080"
22 /* Transaction list -- unconfirmed transaction */
23 #define COLOR_UNCONFIRMED QColor(128, 128, 128)
24 /* Transaction list -- negative amount */
25 #define COLOR_NEGATIVE QColor(255, 0, 0)
26 /* Transaction list -- bare address (without label) */
27 #define COLOR_BAREADDRESS QColor(140, 140, 140)
28 /* Transaction list -- TX status decoration - open until date */
29 #define COLOR_TX_STATUS_OPENUNTILDATE QColor(64, 64, 255)
30 /* Transaction list -- TX status decoration - offline */
31 #define COLOR_TX_STATUS_OFFLINE QColor(192, 192, 192)
32 /* Transaction list -- TX status decoration - danger, tx needs attention */
33 #define COLOR_TX_STATUS_DANGER QColor(200, 100, 100)
34 /* Transaction list -- TX status decoration - default color */
35 #define COLOR_BLACK QColor(0, 0, 0)
37 /* Tooltips longer than this (in characters) are converted into rich text,
38 so that they can be word-wrapped.
40 static const int TOOLTIP_WRAP_THRESHOLD = 80;
42 /* Maximum allowed URI length */
43 static const int MAX_URI_LENGTH = 255;
45 /* QRCodeDialog -- size of exported QR Code image */
46 #define QR_IMAGE_SIZE 300
48 /* Number of frames in spinner animation */
49 #define SPINNER_FRAMES 36
51 #define QAPP_ORG_NAME "Bitcoin"
52 #define QAPP_ORG_DOMAIN "bitcoin.org"
53 #define QAPP_APP_NAME_DEFAULT "Bitcoin-Qt"
54 #define QAPP_APP_NAME_TESTNET "Bitcoin-Qt-testnet"
56 #endif // BITCOIN_QT_GUICONSTANTS_H