2011-05-28 18:32:19 +00:00
|
|
|
#ifndef GUICONSTANTS_H
|
|
|
|
#define GUICONSTANTS_H
|
|
|
|
|
2011-08-23 18:08:42 +00:00
|
|
|
/* Milliseconds between model updates */
|
2011-07-17 12:06:43 +00:00
|
|
|
static const int MODEL_UPDATE_DELAY = 500;
|
2011-05-28 18:32:19 +00:00
|
|
|
|
2011-08-24 20:07:26 +00:00
|
|
|
/* Maximum passphrase length */
|
|
|
|
static const int MAX_PASSPHRASE_SIZE = 1024;
|
|
|
|
|
2011-08-23 18:08:42 +00:00
|
|
|
/* Size of icons in status bar */
|
|
|
|
static const int STATUSBAR_ICONSIZE = 16;
|
|
|
|
|
2011-07-25 16:39:52 +00:00
|
|
|
/* Invalid field background style */
|
|
|
|
#define STYLE_INVALID "background:#FF8080"
|
2011-05-28 18:32:19 +00:00
|
|
|
|
2011-07-25 16:39:52 +00:00
|
|
|
/* Transaction list -- unconfirmed transaction */
|
|
|
|
#define COLOR_UNCONFIRMED QColor(128, 128, 128)
|
|
|
|
/* Transaction list -- negative amount */
|
2011-07-26 07:16:50 +00:00
|
|
|
#define COLOR_NEGATIVE QColor(255, 0, 0)
|
2011-07-30 15:42:02 +00:00
|
|
|
/* Transaction list -- bare address (without label) */
|
|
|
|
#define COLOR_BAREADDRESS QColor(140, 140, 140)
|
2011-05-28 18:32:19 +00:00
|
|
|
|
|
|
|
#endif // GUICONSTANTS_H
|