2013-11-04 16:20:43 +01:00
|
|
|
// Copyright (c) 2011-2013 The Bitcoin developers
|
|
|
|
// Distributed under the MIT/X11 software license, see the accompanying
|
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
2011-05-28 20:32:19 +02:00
|
|
|
#ifndef GUICONSTANTS_H
|
|
|
|
#define GUICONSTANTS_H
|
|
|
|
|
2011-08-23 20:08:42 +02:00
|
|
|
/* Milliseconds between model updates */
|
2013-02-10 19:01:30 +01:00
|
|
|
static const int MODEL_UPDATE_DELAY = 250;
|
2011-05-28 20:32:19 +02:00
|
|
|
|
2012-07-06 13:45:38 +02:00
|
|
|
/* AskPassphraseDialog -- Maximum passphrase length */
|
2011-08-24 22:07:26 +02:00
|
|
|
static const int MAX_PASSPHRASE_SIZE = 1024;
|
|
|
|
|
2012-07-06 13:45:38 +02:00
|
|
|
/* BitcoinGUI -- Size of icons in status bar */
|
2011-08-23 20:08:42 +02:00
|
|
|
static const int STATUSBAR_ICONSIZE = 16;
|
|
|
|
|
2011-07-25 18:39:52 +02:00
|
|
|
/* Invalid field background style */
|
|
|
|
#define STYLE_INVALID "background:#FF8080"
|
2011-05-28 20:32:19 +02:00
|
|
|
|
2011-07-25 18:39:52 +02:00
|
|
|
/* Transaction list -- unconfirmed transaction */
|
|
|
|
#define COLOR_UNCONFIRMED QColor(128, 128, 128)
|
|
|
|
/* Transaction list -- negative amount */
|
2011-07-26 09:16:50 +02:00
|
|
|
#define COLOR_NEGATIVE QColor(255, 0, 0)
|
2011-07-30 17:42:02 +02:00
|
|
|
/* Transaction list -- bare address (without label) */
|
|
|
|
#define COLOR_BAREADDRESS QColor(140, 140, 140)
|
2011-05-28 20:32:19 +02:00
|
|
|
|
2012-04-13 17:10:50 +02:00
|
|
|
/* Tooltips longer than this (in characters) are converted into rich text,
|
|
|
|
so that they can be word-wrapped.
|
|
|
|
*/
|
|
|
|
static const int TOOLTIP_WRAP_THRESHOLD = 80;
|
|
|
|
|
2012-06-24 18:28:05 +02:00
|
|
|
/* Maximum allowed URI length */
|
|
|
|
static const int MAX_URI_LENGTH = 255;
|
|
|
|
|
2013-07-22 08:50:39 +02:00
|
|
|
/* Maximum somewhat-sane size of a payment request file */
|
|
|
|
static const int MAX_PAYMENT_REQUEST_SIZE = 50000; // bytes
|
|
|
|
|
2012-06-24 18:28:05 +02:00
|
|
|
/* QRCodeDialog -- size of exported QR Code image */
|
|
|
|
#define EXPORT_IMAGE_SIZE 256
|
|
|
|
|
2011-05-28 20:32:19 +02:00
|
|
|
#endif // GUICONSTANTS_H
|