i3/i3bar/include/common.h

40 lines
632 B
C
Raw Normal View History

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