2010-08-07 12:05:16 -04:00
|
|
|
/*
|
2011-10-25 16:19:38 -04:00
|
|
|
* vim:ts=4:sw=4:expandtab
|
2010-08-07 12:05:16 -04:00
|
|
|
*
|
2011-10-25 16:19:38 -04:00
|
|
|
* i3bar - an xcb-based status- and ws-bar for i3
|
2012-08-23 06:55:28 -04:00
|
|
|
* © 2010-2012 Axel Wagner and contributors (see also: LICENSE)
|
2010-08-07 12:05:16 -04:00
|
|
|
*
|
2011-10-25 16:19:38 -04:00
|
|
|
* workspaces.c: Maintaining the workspace-lists
|
2010-08-07 12:05:16 -04:00
|
|
|
*
|
|
|
|
*/
|
2010-07-21 19:15:18 -04:00
|
|
|
#ifndef WORKSPACES_H_
|
|
|
|
#define WORKSPACES_H_
|
|
|
|
|
2010-08-05 21:32:05 -04:00
|
|
|
#include <xcb/xproto.h>
|
|
|
|
|
2010-07-21 19:15:18 -04:00
|
|
|
#include "common.h"
|
|
|
|
|
2010-07-29 21:11:54 -04:00
|
|
|
typedef struct i3_ws i3_ws;
|
2010-07-21 19:15:18 -04:00
|
|
|
|
2010-07-29 21:11:54 -04:00
|
|
|
TAILQ_HEAD(ws_head, i3_ws);
|
2010-07-21 19:15:18 -04:00
|
|
|
|
2010-08-06 20:10:05 -04:00
|
|
|
/*
|
|
|
|
* Start parsing the received json-string
|
|
|
|
*
|
|
|
|
*/
|
2011-08-10 17:54:27 -04:00
|
|
|
void parse_workspaces_json(char *json);
|
2010-08-06 20:10:05 -04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* free() all workspace data-structures
|
|
|
|
*
|
|
|
|
*/
|
2012-08-23 06:55:28 -04:00
|
|
|
void free_workspaces(void);
|
2010-07-21 19:15:18 -04:00
|
|
|
|
2010-07-29 21:11:54 -04:00
|
|
|
struct i3_ws {
|
2010-08-06 20:10:05 -04:00
|
|
|
int num; /* The internal number of the ws */
|
2012-08-07 13:46:23 -04:00
|
|
|
i3String *name; /* The name of the ws */
|
2010-08-06 20:10:05 -04:00
|
|
|
int name_width; /* The rendered width of the name */
|
|
|
|
bool visible; /* If the ws is currently visible on an output */
|
|
|
|
bool focused; /* If the ws is currently focused */
|
|
|
|
bool urgent; /* If the urgent-hint of the ws is set */
|
|
|
|
rect rect; /* The rect of the ws (not used (yet)) */
|
|
|
|
struct i3_output *output; /* The current output of the ws */
|
|
|
|
|
|
|
|
TAILQ_ENTRY(i3_ws) tailq; /* Pointer for the TAILQ-Macro */
|
2010-07-21 19:15:18 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|