You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
781 B
C
37 lines
781 B
C
#ifndef COMMON_H
|
|
#define COMMON_H
|
|
|
|
|
|
#include <QColor>
|
|
|
|
|
|
#define COL_DAY1 0
|
|
#define COL_PUBLIC_HOLIDAY 1
|
|
#define COL_COME1 2
|
|
#define COL_GO1 3
|
|
#define COL_COME2 4
|
|
#define COL_GO2 5
|
|
#define COL_COME3 6
|
|
#define COL_GO3 7
|
|
#define COL_COME4 8
|
|
#define COL_GO4 9
|
|
#define COL_COME5 10
|
|
#define COL_GO5 11
|
|
#define COL_BREAK 12
|
|
#define COL_CODE 13
|
|
#define COL_IS 14
|
|
#define COL_SHOULD 15
|
|
#define COL_DIFF 16
|
|
#define COL_INFORMATION 17
|
|
#define COL_CURRENT 18
|
|
#define COL_HOURS_DEC 19
|
|
#define COL_DAY2 20
|
|
|
|
#define COLOR_GLEITZEIT QColor(191, 191, 255)
|
|
#define COLOR_URLAUB QColor(127, 127, 255)
|
|
#define COLOR_SONDERURLAUB QColor(127, 127, 255)
|
|
#define COLOR_KRANK QColor(Qt::yellow)
|
|
#define COLOR_WEEKEND QColor(255, 165, 0)
|
|
|
|
#endif // COMMON_H
|