2020-08-22 18:30:51 +00:00
|
|
|
enum {
|
2020-08-28 17:48:30 +00:00
|
|
|
INDICATOR_NONE,
|
2020-08-22 18:30:51 +00:00
|
|
|
INDICATOR_TOP_LEFT_SQUARE,
|
|
|
|
INDICATOR_TOP_LEFT_LARGER_SQUARE,
|
|
|
|
INDICATOR_TOP_BAR,
|
2020-08-30 08:00:30 +00:00
|
|
|
INDICATOR_TOP_BAR_SLIM,
|
2020-08-22 18:30:51 +00:00
|
|
|
INDICATOR_BOTTOM_BAR,
|
2020-08-30 08:00:30 +00:00
|
|
|
INDICATOR_BOTTOM_BAR_SLIM,
|
2020-08-30 09:14:12 +00:00
|
|
|
INDICATOR_BOX,
|
|
|
|
INDICATOR_BOX_WIDER,
|
2020-08-30 09:22:07 +00:00
|
|
|
INDICATOR_BOX_FULL,
|
2020-08-22 18:30:51 +00:00
|
|
|
INDICATOR_CLIENT_DOTS,
|
2020-09-16 09:07:23 +00:00
|
|
|
INDICATOR_RIGHT_TAGS,
|
|
|
|
INDICATOR_PLUS,
|
|
|
|
INDICATOR_PLUS_AND_SQUARE,
|
|
|
|
INDICATOR_PLUS_AND_LARGER_SQUARE,
|
2020-08-22 18:30:51 +00:00
|
|
|
};
|
|
|
|
|
2020-09-16 09:07:23 +00:00
|
|
|
static void drawindicator(Monitor *m, Client *c, unsigned int occ, int x, int y, int w, int h, unsigned int tag, int filled, int invert, int type);
|
2021-06-14 05:16:17 +00:00
|
|
|
static void drawstateindicator(Monitor *m, Client *c, unsigned int occ, int x, int y, int w, int h, unsigned int tag, int filled, int invert);
|
|
|
|
|