2010-08-07 18:05:16 +02:00
|
|
|
/*
|
2011-10-25 22:19:38 +02:00
|
|
|
* vim:ts=4:sw=4:expandtab
|
2010-08-07 18:05:16 +02:00
|
|
|
*
|
2011-10-25 22:19:38 +02:00
|
|
|
* i3bar - an xcb-based status- and ws-bar for i3
|
2015-04-04 02:17:56 +02:00
|
|
|
* © 2010 Axel Wagner and contributors (see also: LICENSE)
|
2010-08-07 18:05:16 +02:00
|
|
|
*
|
2015-03-23 20:56:49 +01:00
|
|
|
* outputs.c: Maintaining the outputs list
|
2010-08-07 18:05:16 +02:00
|
|
|
*
|
|
|
|
*/
|
2013-12-29 03:11:50 +01:00
|
|
|
#pragma once
|
2010-07-22 01:15:18 +02:00
|
|
|
|
2016-10-11 09:13:35 +02:00
|
|
|
#include <config.h>
|
|
|
|
|
2010-07-22 01:15:18 +02:00
|
|
|
#include <xcb/xcb.h>
|
2015-09-05 23:38:15 +02:00
|
|
|
#include <cairo/cairo-xcb.h>
|
2010-07-22 01:15:18 +02:00
|
|
|
|
2010-07-30 03:11:54 +02:00
|
|
|
#include "common.h"
|
|
|
|
|
|
|
|
typedef struct i3_output i3_output;
|
2010-07-22 01:15:18 +02:00
|
|
|
|
2010-07-30 03:11:54 +02:00
|
|
|
SLIST_HEAD(outputs_head, i3_output);
|
2020-01-25 16:26:54 +01:00
|
|
|
extern struct outputs_head* outputs;
|
2010-07-22 01:15:18 +02:00
|
|
|
|
2010-08-07 02:10:05 +02:00
|
|
|
/*
|
2015-03-23 20:56:49 +01:00
|
|
|
* Start parsing the received JSON string
|
2010-08-07 02:10:05 +02:00
|
|
|
*
|
|
|
|
*/
|
2011-08-12 18:43:09 +02:00
|
|
|
void parse_outputs_json(char* json);
|
2010-08-07 02:10:05 +02:00
|
|
|
|
|
|
|
/*
|
2015-03-23 20:56:49 +01:00
|
|
|
* Initiate the outputs list
|
2010-08-07 02:10:05 +02:00
|
|
|
*
|
|
|
|
*/
|
2012-08-23 12:55:28 +02:00
|
|
|
void init_outputs(void);
|
2010-08-07 02:10:05 +02:00
|
|
|
|
2017-09-26 13:50:26 +02:00
|
|
|
/*
|
|
|
|
* free() all outputs data structures.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
void free_outputs(void);
|
|
|
|
|
2010-08-07 02:10:05 +02:00
|
|
|
/*
|
|
|
|
* Returns the output with the given name
|
|
|
|
*
|
|
|
|
*/
|
2011-08-12 18:43:09 +02:00
|
|
|
i3_output* get_output_by_name(char* name);
|
2010-07-22 01:15:18 +02:00
|
|
|
|
2015-10-26 21:55:01 +01:00
|
|
|
/*
|
|
|
|
* Returns true if the output has the currently focused workspace
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
bool output_has_focus(i3_output* output);
|
|
|
|
|
2010-07-30 03:11:54 +02:00
|
|
|
struct i3_output {
|
2014-06-19 11:20:32 +02:00
|
|
|
char* name; /* Name of the output */
|
|
|
|
bool active; /* If the output is active */
|
|
|
|
bool primary; /* If it is the primary output */
|
2015-01-08 23:18:23 +01:00
|
|
|
bool visible; /* If the bar is visible on this output */
|
2014-06-19 11:20:32 +02:00
|
|
|
int ws; /* The number of the currently visible ws */
|
2015-03-23 20:56:49 +01:00
|
|
|
rect rect; /* The rect (relative to the root window) */
|
2014-06-19 11:20:32 +02:00
|
|
|
|
2015-10-26 16:27:09 +01:00
|
|
|
/* Off-screen buffer for preliminary rendering of the bar. */
|
2015-09-05 23:38:15 +02:00
|
|
|
surface_t buffer;
|
2015-10-26 16:27:09 +01:00
|
|
|
/* Off-screen buffer for pre-rendering the statusline, separated to make clipping easier. */
|
|
|
|
surface_t statusline_buffer;
|
|
|
|
/* How much of statusline_buffer's horizontal space was used on last statusline render. */
|
|
|
|
int statusline_width;
|
|
|
|
/* Whether statusline block short texts where used on last statusline render. */
|
|
|
|
bool statusline_short_text;
|
2015-09-05 23:38:15 +02:00
|
|
|
/* The actual window on which we draw. */
|
|
|
|
surface_t bar;
|
2014-06-19 11:20:32 +02:00
|
|
|
|
|
|
|
struct ws_head* workspaces; /* The workspaces on this output */
|
|
|
|
struct tc_head* trayclients; /* The tray clients on this output */
|
2010-07-30 03:11:54 +02:00
|
|
|
|
2016-11-08 22:46:43 +01:00
|
|
|
SLIST_ENTRY(i3_output)
|
|
|
|
slist; /* Pointer for the SLIST-Macro */
|
2010-07-22 01:15:18 +02:00
|
|
|
};
|