mirror of
https://github.com/mintycube/dotfiles.git
synced 2024-10-22 14:05:41 +02:00
32 lines
926 B
C
32 lines
926 B
C
|
#ifndef STATUS_H
|
||
|
#define STATUS_H
|
||
|
|
||
|
#include <stdbool.h>
|
||
|
|
||
|
#include "block.h"
|
||
|
#include "config.h"
|
||
|
#include "main.h"
|
||
|
#include "util.h"
|
||
|
#include "x11.h"
|
||
|
|
||
|
typedef struct {
|
||
|
#define STATUS_LENGTH \
|
||
|
((BLOCK_COUNT * (MEMBER_LENGTH(block, output) - 1) + CLICKABLE_BLOCKS) + \
|
||
|
(BLOCK_COUNT - 1 + LEADING_DELIMITER + TRAILING_DELIMITER) * \
|
||
|
(LEN(DELIMITER) - 1) + \
|
||
|
1)
|
||
|
char current[STATUS_LENGTH];
|
||
|
char previous[STATUS_LENGTH];
|
||
|
#undef STATUS_LENGTH
|
||
|
|
||
|
const block* const blocks;
|
||
|
const unsigned short block_count;
|
||
|
} status;
|
||
|
|
||
|
status status_new(const block* const blocks, const unsigned short block_count);
|
||
|
bool status_update(status* const status);
|
||
|
int status_write(const status* const status, const bool is_debug_mode,
|
||
|
x11_connection* const connection);
|
||
|
|
||
|
#endif // STATUS_H
|