2010-08-07 18:05:16 +02:00
|
|
|
/*
|
|
|
|
* i3bar - an xcb-based status- and ws-bar for i3
|
|
|
|
*
|
2011-07-31 16:16:17 +02:00
|
|
|
* © 2010-2011 Axel Wagner and contributors
|
2010-08-07 18:05:16 +02:00
|
|
|
*
|
|
|
|
* See file LICNSE for license information
|
|
|
|
*
|
|
|
|
*/
|
2010-07-22 01:15:18 +02:00
|
|
|
#ifndef COMMON_H_
|
|
|
|
#define COMMON_H_
|
|
|
|
|
2011-08-17 00:05:05 +02:00
|
|
|
#include <stdbool.h>
|
|
|
|
|
2010-08-04 03:34:18 +02:00
|
|
|
typedef struct rect_t rect;
|
2010-07-22 01:15:18 +02:00
|
|
|
|
2010-08-04 03:34:18 +02:00
|
|
|
struct ev_loop* main_loop;
|
|
|
|
char *statusline;
|
2011-01-03 01:39:49 +01:00
|
|
|
char *statusline_buffer;
|
2010-07-22 01:15:18 +02:00
|
|
|
|
|
|
|
struct rect_t {
|
2011-08-12 18:43:09 +02:00
|
|
|
int x;
|
|
|
|
int y;
|
|
|
|
int w;
|
|
|
|
int h;
|
2010-07-22 01:15:18 +02:00
|
|
|
};
|
|
|
|
|
2010-08-05 05:09:59 +02:00
|
|
|
#include "queue.h"
|
|
|
|
#include "child.h"
|
|
|
|
#include "ipc.h"
|
|
|
|
#include "outputs.h"
|
|
|
|
#include "util.h"
|
|
|
|
#include "workspaces.h"
|
2011-08-15 15:57:52 +02:00
|
|
|
#include "trayclients.h"
|
2010-08-05 05:09:59 +02:00
|
|
|
#include "xcb.h"
|
2010-08-06 03:32:05 +02:00
|
|
|
#include "ucs2_to_utf8.h"
|
2010-11-04 12:27:10 +01:00
|
|
|
#include "config.h"
|
2010-08-05 05:09:59 +02:00
|
|
|
|
2010-07-22 01:15:18 +02:00
|
|
|
#endif
|