lbrycrd/src/qt/guiconstants.h

16 lines
420 B
C
Raw Normal View History

2011-05-28 20:32:19 +02:00
#ifndef GUICONSTANTS_H
#define GUICONSTANTS_H
/* milliseconds between model updates */
static const int MODEL_UPDATE_DELAY = 500;
2011-05-28 20:32:19 +02:00
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 */
#define COLOR_NEGATIVE QColor(255, 0, 0)
2011-05-28 20:32:19 +02:00
#endif // GUICONSTANTS_H