2011-07-10 14:33:19 +02:00
|
|
|
|
/*
|
|
|
|
|
* vim:ts=4:sw=4:expandtab
|
|
|
|
|
*
|
|
|
|
|
* i3 - an improved dynamic tiling window manager
|
2015-04-04 02:17:56 +02:00
|
|
|
|
* © 2009 Michael Stapelberg and contributors (see also: LICENSE)
|
2011-07-10 14:33:19 +02:00
|
|
|
|
*
|
2011-10-25 22:19:38 +02:00
|
|
|
|
* i3-nagbar is a utility which displays a nag message, for example in the case
|
2015-03-12 05:41:43 +01:00
|
|
|
|
* when the user has an error in their configuration file.
|
2011-07-10 14:33:19 +02:00
|
|
|
|
*
|
|
|
|
|
*/
|
2020-04-19 11:14:20 +02:00
|
|
|
|
#include <config.h>
|
Remove some includes from all.h
Also removes duplicates from other headers
All used std* imports are included once in all.h for easy use
- getopt: Only used in main.c and inject_randr1.5.c
- glob: Not used in i3, only in i3bar & libi3
- inttypes: Only used in util.c
- locale: A bit specific for all.h
- math: Slow according to #4022
- unistd: I feel it's good to explicitly include per file that needs it
- yajl: Specific to yajl_utils.h and ipc.h
Related to #4022
Timing before:
```
Analyzing build trace from ...
**** Time summary:
Compilation (81 times):
Parsing (frontend): 51.3 s
Codegen & opts (backend): 7.7 s
**** Files that took longest to parse (compiler frontend):
1254 ms: build/src/i3-commands.o
972 ms: build/src/i3-resize.o
945 ms: build/src/i3-con.o
921 ms: build/src/i3-scratchpad.o
907 ms: build/src/i3-main.o
904 ms: build/src/i3-handlers.o
904 ms: build/src/i3-config_directives.o
893 ms: build/src/i3-restore_layout.o
875 ms: build/src/i3-x.o
854 ms: build/src/i3-ipc.o
**** Files that took longest to codegen (compiler backend):
863 ms: build/src/i3-commands.o
471 ms: build/i3bar/src/i3bar-xcb.o
377 ms: build/src/i3-con.o
360 ms: build/src/i3-ipc.o
306 ms: build/src/i3-x.o
290 ms: build/src/i3-main.o
238 ms: build/src/i3-config_parser.o
237 ms: build/src/i3-handlers.o
220 ms: build/i3-config-wizard/i3_config_wizard-main.o
214 ms: build/src/i3-bindings.o
**** Functions that took longest to compile:
209 ms: main (../../i3/src/main.c)
95 ms: manage_window (../../i3/src/manage.c)
57 ms: reconfig_windows (../../i3/i3bar/src/xcb.c)
55 ms: x_draw_decoration (../../i3/src/x.c)
49 ms: x_push_node (../../i3/src/x.c)
48 ms: handle_client_message (../../i3/src/handlers.c)
48 ms: dump_node (../../i3/src/ipc.c)
47 ms: GENERATED_call (../../i3/src/config_parser.c)
45 ms: config_string_cb (../../i3/i3bar/src/config.c)
44 ms: GENERATED_call (../../i3/src/commands_parser.c)
42 ms: floating_check_size (../../i3/src/floating.c)
40 ms: con_swap (../../i3/src/con.c)
40 ms: parse_config (../../i3/src/config_parser.c)
39 ms: main (../../i3/i3-nagbar/main.c)
39 ms: cmd_rename_workspace (../../i3/src/commands.c)
38 ms: window_update_normal_hints (../../i3/src/window.c)
38 ms: cmd_swap (../../i3/src/commands.c)
37 ms: dump_bar_config (../../i3/src/ipc.c)
36 ms: translate_keysyms (../../i3/src/bindings.c)
35 ms: tree_close_internal (../../i3/src/tree.c)
34 ms: match_matches_window (../../i3/src/match.c)
34 ms: floating_enable (../../i3/src/floating.c)
34 ms: json_string (../../i3/src/load_layout.c)
33 ms: x_push_changes (../../i3/src/x.c)
33 ms: main (../../i3/i3-config-wizard/main.c)
31 ms: free_configuration (../../i3/src/config.c)
30 ms: parse_file (../../i3/src/config_parser.c)
28 ms: load_font (../../i3/libi3/font.c)
28 ms: handle_configure_request (../../i3/src/handlers.c)
28 ms: parse_command (../../i3/src/commands_parser.c)
**** Function sets that took longest to compile / optimize:
*** Expensive headers:
29287 ms: ../../i3/include/libi3.h (included 78 times, avg 375 ms), included via:
i3-resize.o all.h data.h (576 ms)
a-g_utf8_make_valid.o (491 ms)
a-dpi.o (491 ms)
a-get_colorpixel.o (483 ms)
a-is_debug_build.o (478 ms)
a-strndup.o (478 ms)
...
29221 ms: ../../i3/include/all.h (included 39 times, avg 749 ms), included via:
i3-resize.o (946 ms)
i3-scratchpad.o (895 ms)
i3-restore_layout.o (865 ms)
i3-handlers.o (839 ms)
i3-drag.o (830 ms)
i3-config_directives.o (793 ms)
...
5195 ms: /usr/include/xcb/xcb.h (included 79 times, avg 65 ms), included via:
i3-handlers.o all.h (113 ms)
i3-restore_layout.o all.h (108 ms)
a-g_utf8_make_valid.o libi3.h (108 ms)
i3bar-xcb.o common.h (105 ms)
i3-scratchpad.o all.h (95 ms)
a-get_colorpixel.o libi3.h (89 ms)
...
4100 ms: /usr/include/math.h (included 41 times, avg 100 ms), included via:
i3-scratchpad.o all.h (180 ms)
i3-fake_outputs.o all.h (138 ms)
i3-regex.o all.h (130 ms)
i3-restore_layout.o all.h (128 ms)
i3-xcb.o all.h (121 ms)
i3-move.o all.h (119 ms)
...
4046 ms: ../../i3/i3bar/include/common.h (included 9 times, avg 449 ms), included via:
i3bar-main.o (503 ms)
i3bar-xcb.o (501 ms)
i3bar-workspaces.o (472 ms)
i3bar-parse_json_header.o (446 ms)
i3bar-child.o (438 ms)
i3bar-ipc.o (434 ms)
...
2713 ms: ../../i3/include/i3.h (included 41 times, avg 66 ms), included via:
i3-xcursor.o (450 ms)
i3-config_directives.o all.h ipc.h configuration.h (87 ms)
i3-config.o all.h ipc.h configuration.h (71 ms)
i3-manage.o all.h ipc.h configuration.h (70 ms)
i3-window.o all.h ipc.h configuration.h (68 ms)
i3-x.o all.h ipc.h configuration.h (61 ms)
...
1492 ms: /usr/include/xcb/xkb.h (included 42 times, avg 35 ms), included via:
i3-config_directives.o all.h ipc.h configuration.h i3.h (50 ms)
i3-config.o all.h ipc.h configuration.h i3.h (45 ms)
i3-window.o all.h ipc.h configuration.h i3.h (43 ms)
i3-x.o all.h ipc.h configuration.h i3.h (42 ms)
i3-manage.o all.h ipc.h configuration.h i3.h (41 ms)
i3-config_parser.o all.h ipc.h configuration.h i3.h (38 ms)
...
1432 ms: /usr/include/stdlib.h (included 79 times, avg 18 ms), included via:
i3-scratchpad.o all.h (48 ms)
i3-restore_layout.o all.h (36 ms)
i3-regex.o all.h (32 ms)
i3-key_press.o all.h (28 ms)
i3-commands.o all.h (28 ms)
i3-bindings.o all.h (24 ms)
...
1349 ms: /usr/include/pthread.h (included 79 times, avg 17 ms), included via:
i3bar-xcb.o common.h xcb.h (33 ms)
a-ucs2_conversion.o libi3.h xcb.h (32 ms)
i3-match.o all.h xcb.h (27 ms)
i3-scratchpad.o all.h xcb.h (25 ms)
a-g_utf8_make_valid.o libi3.h xcb.h (25 ms)
i3_config_wizard-main.o xcb.h (24 ms)
...
1151 ms: /usr/include/X11/Xlib.h (included 45 times, avg 25 ms), included via:
i3-output.o all.h data.h sn-launcher.h sn-common.h (50 ms)
i3-config_parser.o all.h data.h sn-launcher.h sn-common.h (43 ms)
i3-x.o all.h data.h sn-launcher.h sn-common.h (34 ms)
i3-config_directives.o all.h data.h sn-launcher.h sn-common.h (32 ms)
i3_config_wizard-main.o sn-launchee.h sn-common.h (30 ms)
i3-drag.o all.h data.h sn-launcher.h sn-common.h (29 ms)
...
```
Timing after:
```
Analyzing build trace from ...
**** Time summary:
Compilation (81 times):
Parsing (frontend): 47.6 s
Codegen & opts (backend): 7.6 s
**** Files that took longest to parse (compiler frontend):
1154 ms: build/src/i3-commands.o
929 ms: build/src/i3-display_version.o
852 ms: build/src/i3-bindings.o
847 ms: build/src/i3-con.o
806 ms: build/src/i3-ipc.o
801 ms: build/src/i3-floating.o
792 ms: build/src/i3-main.o
792 ms: build/src/i3-drag.o
792 ms: build/src/i3-window.o
776 ms: build/src/i3-config_directives.o
**** Files that took longest to codegen (compiler backend):
885 ms: build/src/i3-commands.o
422 ms: build/i3bar/src/i3bar-xcb.o
382 ms: build/src/i3-con.o
348 ms: build/src/i3-x.o
288 ms: build/src/i3-ipc.o
268 ms: build/src/i3-handlers.o
254 ms: build/src/i3-main.o
251 ms: build/src/i3-floating.o
249 ms: build/src/i3-config_parser.o
194 ms: build/src/i3-randr.o
**** Functions that took longest to compile:
186 ms: main (../../i3/src/main.c)
95 ms: manage_window (../../i3/src/manage.c)
65 ms: floating_check_size (../../i3/src/floating.c)
63 ms: x_draw_decoration (../../i3/src/x.c)
58 ms: handle_client_message (../../i3/src/handlers.c)
55 ms: x_push_node (../../i3/src/x.c)
54 ms: match_matches_window (../../i3/src/match.c)
51 ms: parse_config (../../i3/src/config_parser.c)
49 ms: dump_node (../../i3/src/ipc.c)
47 ms: reconfig_windows (../../i3/i3bar/src/xcb.c)
47 ms: config_string_cb (../../i3/i3bar/src/config.c)
45 ms: GENERATED_call (../../i3/src/config_parser.c)
45 ms: GENERATED_call (../../i3/src/commands_parser.c)
43 ms: floating_enable (../../i3/src/floating.c)
42 ms: handle_configure_request (../../i3/src/handlers.c)
40 ms: con_swap (../../i3/src/con.c)
36 ms: main (../../i3/i3-input/main.c)
36 ms: main (../../i3/i3-msg/main.c)
36 ms: main (../../i3/i3-nagbar/main.c)
36 ms: cmd_move_con_to_workspace_number (../../i3/src/commands.c)
35 ms: json_string (../../i3/src/load_layout.c)
35 ms: tree_restore (../../i3/src/tree.c)
35 ms: cmd_swap (../../i3/src/commands.c)
34 ms: x_push_changes (../../i3/src/x.c)
32 ms: main (../../i3/i3-config-wizard/main.c)
32 ms: ewmh_setup_hints (../../i3/src/ewmh.c)
31 ms: match_parse_property (../../i3/src/match.c)
30 ms: cmd_mark (../../i3/src/commands.c)
30 ms: translate_keysyms (../../i3/src/bindings.c)
30 ms: window_update_normal_hints (../../i3/src/window.c)
**** Function sets that took longest to compile / optimize:
*** Expensive headers:
29596 ms: ../../i3/include/libi3.h (included 78 times, avg 379 ms), included via:
a-get_config_path.o (539 ms)
i3_dump_log-main.o (522 ms)
i3_config_wizard-main.o (501 ms)
a-fake_configure_notify.o (500 ms)
a-root_atom_contents.o (488 ms)
i3-display_version.o all.h (466 ms)
...
26054 ms: ../../i3/include/all.h (included 41 times, avg 635 ms), included via:
i3-display_version.o (901 ms)
i3-drag.o (775 ms)
i3-ewmh.o (703 ms)
i3-startup.o (693 ms)
i3-commands.o (687 ms)
i3-xcb.o (680 ms)
...
5345 ms: /usr/include/xcb/xcb.h (included 79 times, avg 67 ms), included via:
i3-display_version.o all.h (173 ms)
i3_input-keysym2ucs.o keysym2ucs.h (106 ms)
i3-ewmh.o all.h (106 ms)
a-fake_configure_notify.o libi3.h (103 ms)
a-get_config_path.o libi3.h (95 ms)
i3bar-parse_json_header.o common.h (93 ms)
...
4127 ms: ../../i3/i3bar/include/common.h (included 9 times, avg 458 ms), included via:
i3bar-child.o (524 ms)
i3bar-mode.o (486 ms)
i3bar-outputs.o (464 ms)
i3bar-parse_json_header.o (463 ms)
i3bar-config.o (457 ms)
i3bar-ipc.o (448 ms)
...
1542 ms: /usr/include/xcb/xkb.h (included 42 times, avg 36 ms), included via:
i3-con.o all.h ipc.h configuration.h i3.h (60 ms)
i3-render.o all.h ipc.h configuration.h i3.h (56 ms)
i3-bindings.o all.h ipc.h configuration.h i3.h (56 ms)
i3-sighandler.o all.h ipc.h configuration.h i3.h (48 ms)
i3-xcb.o all.h ipc.h configuration.h i3.h (47 ms)
i3-resize.o all.h ipc.h configuration.h i3.h (39 ms)
...
1456 ms: /usr/include/stdlib.h (included 79 times, avg 18 ms), included via:
i3-drag.o all.h (60 ms)
i3-display_version.o all.h (55 ms)
i3-fake_outputs.o all.h (39 ms)
i3-config_directives.o all.h (33 ms)
i3-xcursor.o all.h (30 ms)
i3bar-mode.o common.h libi3.h pango.h pango-attributes.h pango-font.h pango-coverage.h glib-object.h gbinding.h glib.h gasyncqueue.h gthread.h gutils.h (29 ms)
...
1136 ms: /usr/include/X11/Xlib.h (included 44 times, avg 25 ms), included via:
i3-con.o all.h data.h sn-launcher.h sn-common.h (35 ms)
i3-resize.o all.h data.h sn-launcher.h sn-common.h (34 ms)
i3-util.o all.h data.h sn-launcher.h sn-common.h (33 ms)
i3-assignments.o all.h data.h sn-launcher.h sn-common.h (33 ms)
i3-sighandler.o all.h data.h sn-launcher.h sn-common.h (31 ms)
i3-xcb.o all.h data.h sn-launcher.h sn-common.h (31 ms)
...
808 ms: /usr/include/stdio.h (included 79 times, avg 10 ms), included via:
i3-drag.o all.h (19 ms)
i3-fake_outputs.o all.h (18 ms)
a-font.o libi3.h (16 ms)
i3bar-child.o common.h libi3.h (15 ms)
a-safewrappers.o libi3.h (15 ms)
a-ipc_send_message.o libi3.h (13 ms)
...
770 ms: /usr/include/xcb/randr.h (included 42 times, avg 18 ms), included via:
i3-click.o all.h data.h (29 ms)
i3-commands.o all.h data.h (27 ms)
i3-assignments.o all.h data.h (25 ms)
i3-xcb.o all.h data.h (21 ms)
i3-resize.o all.h data.h (21 ms)
i3-sighandler.o all.h data.h (20 ms)
...
688 ms: /usr/include/math.h (included 6 times, avg 114 ms), included via:
a-dpi.o (145 ms)
i3-render.o (127 ms)
i3-floating.o (106 ms)
a-root_atom_contents.o (106 ms)
i3-window.o (102 ms)
i3-bindings.o (99 ms)
...
```
2020-04-19 11:22:59 +02:00
|
|
|
|
|
2020-04-19 11:14:20 +02:00
|
|
|
|
#include "libi3.h"
|
|
|
|
|
|
2011-07-10 14:33:19 +02:00
|
|
|
|
#include <err.h>
|
2020-04-19 09:43:48 +02:00
|
|
|
|
#include <fcntl.h>
|
2011-07-10 14:33:19 +02:00
|
|
|
|
#include <getopt.h>
|
|
|
|
|
#include <limits.h>
|
2013-11-08 21:13:35 +01:00
|
|
|
|
#include <paths.h>
|
2020-04-19 09:43:48 +02:00
|
|
|
|
#include <stdint.h>
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
#include <sys/stat.h>
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
#include <sys/wait.h>
|
|
|
|
|
#include <unistd.h>
|
2011-07-10 14:33:19 +02:00
|
|
|
|
|
2020-04-19 09:43:48 +02:00
|
|
|
|
#include <xcb/randr.h>
|
2011-07-10 14:33:19 +02:00
|
|
|
|
#include <xcb/xcb.h>
|
|
|
|
|
#include <xcb/xcb_aux.h>
|
2016-01-04 09:26:45 +01:00
|
|
|
|
#include <xcb/xcb_cursor.h>
|
2011-07-10 14:33:19 +02:00
|
|
|
|
|
2020-01-25 15:59:37 +01:00
|
|
|
|
xcb_visualtype_t *visual_type = NULL;
|
|
|
|
|
|
2018-08-25 13:48:14 +02:00
|
|
|
|
#define SN_API_NOT_YET_FROZEN 1
|
2020-04-19 09:43:48 +02:00
|
|
|
|
#include <libsn/sn-launchee.h>
|
|
|
|
|
|
2017-01-21 16:25:21 +01:00
|
|
|
|
#define MSG_PADDING logical_px(8)
|
|
|
|
|
#define BTN_PADDING logical_px(3)
|
|
|
|
|
#define BTN_BORDER logical_px(3)
|
|
|
|
|
#define BTN_GAP logical_px(20)
|
|
|
|
|
#define CLOSE_BTN_GAP logical_px(15)
|
|
|
|
|
#define BAR_BORDER logical_px(2)
|
|
|
|
|
|
2020-04-19 11:14:20 +02:00
|
|
|
|
#define xmacro(atom) xcb_atom_t A_##atom;
|
|
|
|
|
#include "atoms.xmacro"
|
|
|
|
|
#undef xmacro
|
|
|
|
|
|
|
|
|
|
#define die(...) errx(EXIT_FAILURE, __VA_ARGS__);
|
|
|
|
|
|
2013-02-07 15:30:40 +01:00
|
|
|
|
static char *argv0 = NULL;
|
|
|
|
|
|
2011-07-10 14:33:19 +02:00
|
|
|
|
typedef struct {
|
2012-08-07 19:58:55 +02:00
|
|
|
|
i3String *label;
|
2011-07-10 14:33:19 +02:00
|
|
|
|
char *action;
|
|
|
|
|
int16_t x;
|
|
|
|
|
uint16_t width;
|
2018-10-07 22:43:24 +02:00
|
|
|
|
bool terminal;
|
2011-07-10 14:33:19 +02:00
|
|
|
|
} button_t;
|
|
|
|
|
|
|
|
|
|
static xcb_window_t win;
|
2017-01-21 16:25:21 +01:00
|
|
|
|
static surface_t bar;
|
|
|
|
|
|
2011-10-23 23:37:11 +02:00
|
|
|
|
static i3Font font;
|
2012-08-07 19:58:55 +02:00
|
|
|
|
static i3String *prompt;
|
2017-01-21 16:25:21 +01:00
|
|
|
|
|
|
|
|
|
static button_t btn_close;
|
2011-07-10 14:33:19 +02:00
|
|
|
|
static button_t *buttons;
|
|
|
|
|
static int buttoncnt;
|
2011-10-22 17:16:06 +02:00
|
|
|
|
|
|
|
|
|
/* Result of get_colorpixel() for the various colors. */
|
2015-12-28 12:43:53 +01:00
|
|
|
|
static color_t color_background; /* background of the bar */
|
|
|
|
|
static color_t color_button_background; /* background for buttons */
|
|
|
|
|
static color_t color_border; /* color of the button border */
|
|
|
|
|
static color_t color_border_bottom; /* color of the bottom border */
|
|
|
|
|
static color_t color_text; /* color of the text */
|
2011-10-22 17:16:06 +02:00
|
|
|
|
|
2011-07-10 14:33:19 +02:00
|
|
|
|
xcb_window_t root;
|
2011-10-23 23:37:11 +02:00
|
|
|
|
xcb_connection_t *conn;
|
2012-08-05 21:36:49 +02:00
|
|
|
|
xcb_screen_t *root_screen;
|
2011-07-10 14:33:19 +02:00
|
|
|
|
|
2012-08-13 13:27:00 +02:00
|
|
|
|
/*
|
2013-12-24 10:35:56 +01:00
|
|
|
|
* Having verboselog(), errorlog() and debuglog() is necessary when using libi3.
|
2012-08-13 13:27:00 +02:00
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
void verboselog(char *fmt, ...) {
|
|
|
|
|
va_list args;
|
|
|
|
|
|
|
|
|
|
va_start(args, fmt);
|
2019-10-14 11:24:30 +02:00
|
|
|
|
vfprintf(stderr, fmt, args);
|
2012-08-13 13:27:00 +02:00
|
|
|
|
va_end(args);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void errorlog(char *fmt, ...) {
|
|
|
|
|
va_list args;
|
|
|
|
|
|
|
|
|
|
va_start(args, fmt);
|
|
|
|
|
vfprintf(stderr, fmt, args);
|
|
|
|
|
va_end(args);
|
|
|
|
|
}
|
|
|
|
|
|
2013-12-24 10:35:56 +01:00
|
|
|
|
void debuglog(char *fmt, ...) {
|
|
|
|
|
}
|
|
|
|
|
|
2011-07-10 14:33:19 +02:00
|
|
|
|
/*
|
2018-10-10 17:31:03 +02:00
|
|
|
|
* Starts the given application by passing it through a shell. We use double
|
|
|
|
|
* fork to avoid zombie processes. As the started application’s parent exits
|
|
|
|
|
* (immediately), the application is reparented to init (process-id 1), which
|
|
|
|
|
* correctly handles children, so we don’t have to do it :-).
|
2011-07-10 14:33:19 +02:00
|
|
|
|
*/
|
|
|
|
|
static void start_application(const char *command) {
|
|
|
|
|
printf("executing: %s\n", command);
|
|
|
|
|
if (fork() == 0) {
|
|
|
|
|
/* Child process */
|
|
|
|
|
setsid();
|
|
|
|
|
if (fork() == 0) {
|
|
|
|
|
/* This is the child */
|
2018-04-26 23:08:58 +02:00
|
|
|
|
execl(_PATH_BSHELL, _PATH_BSHELL, "-c", command, NULL);
|
2011-07-10 14:33:19 +02:00
|
|
|
|
/* not reached */
|
|
|
|
|
}
|
|
|
|
|
exit(0);
|
|
|
|
|
}
|
|
|
|
|
wait(0);
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-31 22:50:00 +02:00
|
|
|
|
static button_t *get_button_at(int16_t x, int16_t y) {
|
|
|
|
|
for (int c = 0; c < buttoncnt; c++)
|
|
|
|
|
if (x >= (buttons[c].x) && x <= (buttons[c].x + buttons[c].width))
|
|
|
|
|
return &buttons[c];
|
|
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void handle_button_press(xcb_connection_t *conn, xcb_button_press_event_t *event) {
|
|
|
|
|
printf("button pressed on x = %d, y = %d\n",
|
|
|
|
|
event->event_x, event->event_y);
|
|
|
|
|
/* TODO: set a flag for the button, re-render */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Called when the user releases the mouse button. Checks whether the
|
|
|
|
|
* coordinates are over a button and executes the appropriate action.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
static void handle_button_release(xcb_connection_t *conn, xcb_button_release_event_t *event) {
|
|
|
|
|
printf("button released on x = %d, y = %d\n",
|
|
|
|
|
event->event_x, event->event_y);
|
|
|
|
|
/* If the user hits the close button, we exit(0) */
|
|
|
|
|
if (event->event_x >= btn_close.x && event->event_x < btn_close.x + btn_close.width)
|
|
|
|
|
exit(0);
|
|
|
|
|
button_t *button = get_button_at(event->event_x, event->event_y);
|
|
|
|
|
if (!button)
|
|
|
|
|
return;
|
|
|
|
|
|
2012-12-24 16:53:20 +01:00
|
|
|
|
/* We need to create a custom script containing our actual command
|
|
|
|
|
* since not every terminal emulator which is contained in
|
|
|
|
|
* i3-sensible-terminal supports -e with multiple arguments (and not
|
|
|
|
|
* all of them support -e with one quoted argument either).
|
|
|
|
|
*
|
|
|
|
|
* NB: The paths need to be unique, that is, don’t assume users close
|
|
|
|
|
* their nagbars at any point in time (and they still need to work).
|
|
|
|
|
* */
|
|
|
|
|
char *script_path = get_process_filename("nagbar-cmd");
|
|
|
|
|
|
2013-02-07 15:30:40 +01:00
|
|
|
|
int fd = open(script_path, O_WRONLY | O_CREAT | O_TRUNC, S_IRUSR | S_IWUSR);
|
2012-12-24 16:53:20 +01:00
|
|
|
|
if (fd == -1) {
|
|
|
|
|
warn("Could not create temporary script to store the nagbar command");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
FILE *script = fdopen(fd, "w");
|
|
|
|
|
if (script == NULL) {
|
|
|
|
|
warn("Could not fdopen() temporary script to store the nagbar command");
|
|
|
|
|
return;
|
|
|
|
|
}
|
2020-03-01 04:46:30 +01:00
|
|
|
|
fprintf(script, "#!%s\nrm %s\n%s", _PATH_BSHELL, script_path, button->action);
|
2012-12-24 16:53:20 +01:00
|
|
|
|
/* Also closes fd */
|
|
|
|
|
fclose(script);
|
|
|
|
|
|
2013-06-10 22:55:39 +02:00
|
|
|
|
char *link_path;
|
2013-11-21 22:03:49 +01:00
|
|
|
|
char *exe_path = get_exe_path(argv0);
|
2013-06-10 22:55:39 +02:00
|
|
|
|
sasprintf(&link_path, "%s.nagbar_cmd", script_path);
|
2015-03-24 13:57:06 +01:00
|
|
|
|
if (symlink(exe_path, link_path) == -1) {
|
|
|
|
|
err(EXIT_FAILURE, "Failed to symlink %s to %s", link_path, exe_path);
|
|
|
|
|
}
|
2013-06-10 22:55:39 +02:00
|
|
|
|
|
2012-12-24 16:53:20 +01:00
|
|
|
|
char *terminal_cmd;
|
2018-10-07 22:43:24 +02:00
|
|
|
|
if (button->terminal) {
|
|
|
|
|
sasprintf(&terminal_cmd, "i3-sensible-terminal -e %s", link_path);
|
|
|
|
|
} else {
|
|
|
|
|
terminal_cmd = sstrdup(link_path);
|
|
|
|
|
}
|
2013-02-07 15:30:40 +01:00
|
|
|
|
printf("argv0 = %s\n", argv0);
|
|
|
|
|
printf("terminal_cmd = %s\n", terminal_cmd);
|
2012-12-24 16:53:20 +01:00
|
|
|
|
|
|
|
|
|
start_application(terminal_cmd);
|
|
|
|
|
|
2013-06-10 22:55:39 +02:00
|
|
|
|
free(link_path);
|
2012-12-24 16:53:20 +01:00
|
|
|
|
free(terminal_cmd);
|
|
|
|
|
free(script_path);
|
2013-11-21 22:03:49 +01:00
|
|
|
|
free(exe_path);
|
2011-07-10 14:33:19 +02:00
|
|
|
|
|
|
|
|
|
/* TODO: unset flag, re-render */
|
|
|
|
|
}
|
|
|
|
|
|
2017-01-21 16:25:21 +01:00
|
|
|
|
/*
|
|
|
|
|
* Draws a button and returns its width
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
static int button_draw(button_t *button, int position) {
|
|
|
|
|
int text_width = predict_text_width(button->label);
|
|
|
|
|
button->width = text_width + 2 * BTN_PADDING + 2 * BTN_BORDER;
|
|
|
|
|
button->x = position - button->width;
|
|
|
|
|
|
|
|
|
|
/* draw border */
|
|
|
|
|
draw_util_rectangle(&bar, color_border,
|
|
|
|
|
position - button->width,
|
|
|
|
|
MSG_PADDING - BTN_PADDING - BTN_BORDER,
|
|
|
|
|
button->width,
|
|
|
|
|
font.height + 2 * BTN_PADDING + 2 * BTN_BORDER);
|
|
|
|
|
/* draw background */
|
|
|
|
|
draw_util_rectangle(&bar, color_button_background,
|
|
|
|
|
position - button->width + BTN_BORDER,
|
|
|
|
|
MSG_PADDING - BTN_PADDING,
|
|
|
|
|
text_width + 2 * BTN_PADDING,
|
|
|
|
|
font.height + 2 * BTN_PADDING);
|
|
|
|
|
/* draw label */
|
|
|
|
|
draw_util_text(button->label, &bar, color_text, color_button_background,
|
|
|
|
|
position - button->width + BTN_BORDER + BTN_PADDING,
|
|
|
|
|
MSG_PADDING,
|
|
|
|
|
200);
|
|
|
|
|
return button->width;
|
|
|
|
|
}
|
|
|
|
|
|
2011-07-10 14:33:19 +02:00
|
|
|
|
/*
|
|
|
|
|
* Handles expose events (redraws of the window) and rendering in general. Will
|
|
|
|
|
* be called from the code with event == NULL or from X with event != NULL.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
static int handle_expose(xcb_connection_t *conn, xcb_expose_event_t *event) {
|
2017-01-21 16:25:21 +01:00
|
|
|
|
/* draw background */
|
|
|
|
|
draw_util_clear_surface(&bar, color_background);
|
|
|
|
|
/* draw message */
|
|
|
|
|
draw_util_text(prompt, &bar, color_text, color_background,
|
|
|
|
|
MSG_PADDING, MSG_PADDING,
|
|
|
|
|
bar.width - 2 * MSG_PADDING);
|
2011-07-10 14:33:19 +02:00
|
|
|
|
|
2017-01-21 16:25:21 +01:00
|
|
|
|
int position = bar.width - (MSG_PADDING - BTN_BORDER - BTN_PADDING);
|
2011-07-10 14:33:19 +02:00
|
|
|
|
|
|
|
|
|
/* render close button */
|
2017-01-21 16:25:21 +01:00
|
|
|
|
position -= button_draw(&btn_close, position);
|
|
|
|
|
position -= CLOSE_BTN_GAP;
|
2011-07-10 14:33:19 +02:00
|
|
|
|
|
|
|
|
|
/* render custom buttons */
|
2017-01-21 16:25:21 +01:00
|
|
|
|
for (int i = 0; i < buttoncnt; i++) {
|
|
|
|
|
position -= BTN_GAP;
|
|
|
|
|
position -= button_draw(&buttons[i], position);
|
2011-07-10 14:33:19 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* border line at the bottom */
|
2017-01-21 16:25:21 +01:00
|
|
|
|
draw_util_rectangle(&bar, color_border_bottom, 0, bar.height - BAR_BORDER, bar.width, BAR_BORDER);
|
2011-07-10 14:33:19 +02:00
|
|
|
|
|
2017-01-21 16:25:21 +01:00
|
|
|
|
xcb_flush(conn);
|
2011-07-10 14:33:19 +02:00
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
2015-03-27 09:20:03 +01:00
|
|
|
|
/**
|
|
|
|
|
* Return the position and size the i3-nagbar window should use.
|
|
|
|
|
* This will be the primary output or a fallback if it cannot be determined.
|
|
|
|
|
*/
|
|
|
|
|
static xcb_rectangle_t get_window_position(void) {
|
|
|
|
|
/* Default values if we cannot determine the primary output or its CRTC info. */
|
2017-01-21 16:25:21 +01:00
|
|
|
|
xcb_rectangle_t result = (xcb_rectangle_t){50, 50, 500, font.height + 2 * MSG_PADDING + BAR_BORDER};
|
2015-03-27 09:20:03 +01:00
|
|
|
|
|
|
|
|
|
xcb_randr_get_screen_resources_current_cookie_t rcookie = xcb_randr_get_screen_resources_current(conn, root);
|
|
|
|
|
xcb_randr_get_output_primary_cookie_t pcookie = xcb_randr_get_output_primary(conn, root);
|
|
|
|
|
|
2015-03-29 20:57:20 +02:00
|
|
|
|
xcb_randr_get_output_primary_reply_t *primary = NULL;
|
|
|
|
|
xcb_randr_get_screen_resources_current_reply_t *res = NULL;
|
2015-03-27 09:20:03 +01:00
|
|
|
|
|
|
|
|
|
if ((primary = xcb_randr_get_output_primary_reply(conn, pcookie, NULL)) == NULL) {
|
2019-10-14 11:24:30 +02:00
|
|
|
|
LOG("Could not determine the primary output.\n");
|
2015-03-27 09:20:03 +01:00
|
|
|
|
goto free_resources;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ((res = xcb_randr_get_screen_resources_current_reply(conn, rcookie, NULL)) == NULL) {
|
2019-10-14 11:24:30 +02:00
|
|
|
|
LOG("Could not query screen resources.\n");
|
2015-03-27 09:20:03 +01:00
|
|
|
|
goto free_resources;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
xcb_randr_get_output_info_reply_t *output =
|
|
|
|
|
xcb_randr_get_output_info_reply(conn,
|
|
|
|
|
xcb_randr_get_output_info(conn, primary->output, res->config_timestamp),
|
|
|
|
|
NULL);
|
2019-10-14 11:25:33 +02:00
|
|
|
|
if (output == NULL || output->crtc == XCB_NONE) {
|
|
|
|
|
LOG("Could not query primary screen.\n");
|
2015-03-27 09:20:03 +01:00
|
|
|
|
goto free_resources;
|
2019-10-14 11:25:33 +02:00
|
|
|
|
}
|
2015-03-27 09:20:03 +01:00
|
|
|
|
|
|
|
|
|
xcb_randr_get_crtc_info_reply_t *crtc =
|
|
|
|
|
xcb_randr_get_crtc_info_reply(conn,
|
|
|
|
|
xcb_randr_get_crtc_info(conn, output->crtc, res->config_timestamp),
|
|
|
|
|
NULL);
|
2019-10-14 11:25:33 +02:00
|
|
|
|
if (crtc == NULL) {
|
|
|
|
|
LOG("Could not get CRTC.\n");
|
2015-03-27 09:20:03 +01:00
|
|
|
|
goto free_resources;
|
2019-10-14 11:25:33 +02:00
|
|
|
|
}
|
2015-03-27 09:20:03 +01:00
|
|
|
|
|
2019-10-14 11:24:30 +02:00
|
|
|
|
LOG("Found primary output on position x = %i / y = %i / w = %i / h = %i.\n",
|
|
|
|
|
crtc->x, crtc->y, crtc->width, crtc->height);
|
2015-03-27 09:20:03 +01:00
|
|
|
|
if (crtc->width == 0 || crtc->height == 0) {
|
2019-10-14 11:24:30 +02:00
|
|
|
|
LOG("Primary output is not active, ignoring it.\n");
|
2015-03-27 09:20:03 +01:00
|
|
|
|
goto free_resources;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
result.x = crtc->x;
|
|
|
|
|
result.y = crtc->y;
|
|
|
|
|
goto free_resources;
|
|
|
|
|
|
|
|
|
|
free_resources:
|
2020-04-19 11:14:20 +02:00
|
|
|
|
free(res);
|
|
|
|
|
free(primary);
|
2015-03-27 09:20:03 +01:00
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
2011-07-10 14:33:19 +02:00
|
|
|
|
int main(int argc, char *argv[]) {
|
2013-06-10 22:55:39 +02:00
|
|
|
|
/* The following lines are a terribly horrible kludge. Because terminal
|
|
|
|
|
* emulators have different ways of interpreting the -e command line
|
|
|
|
|
* argument (some need -e "less /etc/fstab", others need -e less
|
|
|
|
|
* /etc/fstab), we need to write commands to a script and then just run
|
|
|
|
|
* that script. However, since on some machines, $XDG_RUNTIME_DIR and
|
|
|
|
|
* $TMPDIR are mounted with noexec, we cannot directly execute the script
|
|
|
|
|
* either.
|
|
|
|
|
*
|
|
|
|
|
* Initially, we tried to pass the command via the environment variable
|
|
|
|
|
* _I3_NAGBAR_CMD. But turns out that some terminal emulators such as
|
|
|
|
|
* xfce4-terminal run all windows from a single master process and only
|
|
|
|
|
* pass on the command (not the environment) to that master process.
|
2013-02-07 15:30:40 +01:00
|
|
|
|
*
|
2013-06-10 22:55:39 +02:00
|
|
|
|
* Therefore, we symlink i3-nagbar (which MUST reside on an executable
|
|
|
|
|
* filesystem) with a special name and run that symlink. When i3-nagbar
|
|
|
|
|
* recognizes it’s started as a binary ending in .nagbar_cmd, it strips off
|
|
|
|
|
* the .nagbar_cmd suffix and runs /bin/sh on argv[0]. That way, we can run
|
|
|
|
|
* a shell script on a noexec filesystem.
|
2013-02-07 15:30:40 +01:00
|
|
|
|
*
|
|
|
|
|
* From a security point of view, i3-nagbar is just an alias to /bin/sh in
|
|
|
|
|
* certain circumstances. This should not open any new security issues, I
|
|
|
|
|
* hope. */
|
|
|
|
|
char *cmd = NULL;
|
2013-06-10 22:55:39 +02:00
|
|
|
|
const size_t argv0_len = strlen(argv[0]);
|
|
|
|
|
if (argv0_len > strlen(".nagbar_cmd") &&
|
|
|
|
|
strcmp(argv[0] + argv0_len - strlen(".nagbar_cmd"), ".nagbar_cmd") == 0) {
|
|
|
|
|
unlink(argv[0]);
|
2015-08-03 11:50:50 +02:00
|
|
|
|
cmd = sstrdup(argv[0]);
|
2013-06-10 22:55:39 +02:00
|
|
|
|
*(cmd + argv0_len - strlen(".nagbar_cmd")) = '\0';
|
2020-02-29 20:53:35 +01:00
|
|
|
|
execl(_PATH_BSHELL, _PATH_BSHELL, cmd, NULL);
|
2020-03-01 05:25:42 +01:00
|
|
|
|
err(EXIT_FAILURE, "execl(%s, %s, %s)", _PATH_BSHELL, _PATH_BSHELL, cmd);
|
2013-02-07 15:30:40 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
argv0 = argv[0];
|
|
|
|
|
|
2015-03-26 10:03:30 +01:00
|
|
|
|
char *pattern = sstrdup("pango:monospace 8");
|
2011-07-10 14:33:19 +02:00
|
|
|
|
int o, option_index = 0;
|
2014-06-15 19:07:02 +02:00
|
|
|
|
enum { TYPE_ERROR = 0,
|
|
|
|
|
TYPE_WARNING = 1 } bar_type = TYPE_ERROR;
|
2011-07-10 14:33:19 +02:00
|
|
|
|
|
|
|
|
|
static struct option long_options[] = {
|
|
|
|
|
{"version", no_argument, 0, 'v'},
|
|
|
|
|
{"font", required_argument, 0, 'f'},
|
|
|
|
|
{"button", required_argument, 0, 'b'},
|
2018-10-07 22:43:24 +02:00
|
|
|
|
{"button-no-terminal", required_argument, 0, 'B'},
|
2011-07-10 14:33:19 +02:00
|
|
|
|
{"help", no_argument, 0, 'h'},
|
2013-06-28 00:14:09 +02:00
|
|
|
|
{"message", required_argument, 0, 'm'},
|
2011-10-22 17:16:06 +02:00
|
|
|
|
{"type", required_argument, 0, 't'},
|
2014-06-15 19:07:02 +02:00
|
|
|
|
{0, 0, 0, 0}};
|
2011-07-10 14:33:19 +02:00
|
|
|
|
|
2018-10-07 22:43:24 +02:00
|
|
|
|
char *options_string = "b:B:f:m:t:vh";
|
2011-07-10 14:33:19 +02:00
|
|
|
|
|
2012-08-07 19:58:55 +02:00
|
|
|
|
prompt = i3string_from_utf8("Please do not run this program.");
|
2011-11-06 23:03:47 +01:00
|
|
|
|
|
2011-07-10 14:33:19 +02:00
|
|
|
|
while ((o = getopt_long(argc, argv, options_string, long_options, &option_index)) != -1) {
|
|
|
|
|
switch (o) {
|
|
|
|
|
case 'v':
|
2019-10-14 11:26:10 +02:00
|
|
|
|
free(pattern);
|
2014-03-23 18:49:20 +01:00
|
|
|
|
printf("i3-nagbar " I3_VERSION "\n");
|
2011-07-10 14:33:19 +02:00
|
|
|
|
return 0;
|
|
|
|
|
case 'f':
|
2019-10-14 11:26:10 +02:00
|
|
|
|
free(pattern);
|
2012-08-05 16:34:38 +02:00
|
|
|
|
pattern = sstrdup(optarg);
|
2011-07-10 14:33:19 +02:00
|
|
|
|
break;
|
2011-07-13 18:36:21 +02:00
|
|
|
|
case 'm':
|
2012-08-07 19:58:55 +02:00
|
|
|
|
i3string_free(prompt);
|
|
|
|
|
prompt = i3string_from_utf8(optarg);
|
2011-07-13 18:36:21 +02:00
|
|
|
|
break;
|
2011-10-22 17:16:06 +02:00
|
|
|
|
case 't':
|
|
|
|
|
bar_type = (strcasecmp(optarg, "warning") == 0 ? TYPE_WARNING : TYPE_ERROR);
|
|
|
|
|
break;
|
2011-07-10 14:33:19 +02:00
|
|
|
|
case 'h':
|
2019-10-14 11:26:10 +02:00
|
|
|
|
free(pattern);
|
2011-07-14 13:26:59 +02:00
|
|
|
|
printf("i3-nagbar " I3_VERSION "\n");
|
2018-10-07 22:43:24 +02:00
|
|
|
|
printf("i3-nagbar [-m <message>] [-b <button> <action>] [-B <button> <action>] [-t warning|error] [-f <font>] [-v]\n");
|
2011-07-10 14:33:19 +02:00
|
|
|
|
return 0;
|
|
|
|
|
case 'b':
|
2018-10-07 22:43:24 +02:00
|
|
|
|
case 'B':
|
2015-08-03 11:50:50 +02:00
|
|
|
|
buttons = srealloc(buttons, sizeof(button_t) * (buttoncnt + 1));
|
2012-08-07 19:58:55 +02:00
|
|
|
|
buttons[buttoncnt].label = i3string_from_utf8(optarg);
|
2011-07-10 14:33:19 +02:00
|
|
|
|
buttons[buttoncnt].action = argv[optind];
|
2018-10-07 22:43:24 +02:00
|
|
|
|
buttons[buttoncnt].terminal = (o == 'b');
|
2017-08-31 22:50:00 +02:00
|
|
|
|
printf("button with label *%s* and action *%s*\n",
|
|
|
|
|
i3string_as_utf8(buttons[buttoncnt].label),
|
|
|
|
|
buttons[buttoncnt].action);
|
2011-07-10 14:33:19 +02:00
|
|
|
|
buttoncnt++;
|
|
|
|
|
printf("now %d buttons\n", buttoncnt);
|
|
|
|
|
if (optind < argc)
|
|
|
|
|
optind++;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-01-21 16:25:21 +01:00
|
|
|
|
btn_close.label = i3string_from_utf8("X");
|
|
|
|
|
|
2011-07-10 14:33:19 +02:00
|
|
|
|
int screens;
|
2011-07-27 13:30:12 +02:00
|
|
|
|
if ((conn = xcb_connect(NULL, &screens)) == NULL ||
|
|
|
|
|
xcb_connection_has_error(conn))
|
2019-01-02 13:05:18 +01:00
|
|
|
|
die("Cannot open display");
|
2011-07-10 14:33:19 +02:00
|
|
|
|
|
2014-06-15 19:07:02 +02:00
|
|
|
|
/* Place requests for the atoms we need as soon as possible */
|
|
|
|
|
#define xmacro(atom) \
|
|
|
|
|
xcb_intern_atom_cookie_t atom##_cookie = xcb_intern_atom(conn, 0, strlen(#atom), #atom);
|
|
|
|
|
#include "atoms.xmacro"
|
|
|
|
|
#undef xmacro
|
2011-07-10 14:33:19 +02:00
|
|
|
|
|
2018-08-25 13:48:14 +02:00
|
|
|
|
/* Init startup notification. */
|
|
|
|
|
SnDisplay *sndisplay = sn_xcb_display_new(conn, NULL, NULL);
|
|
|
|
|
SnLauncheeContext *sncontext = sn_launchee_context_new_from_environment(sndisplay, screens);
|
2018-09-23 16:02:21 +02:00
|
|
|
|
sn_display_unref(sndisplay);
|
2018-08-25 13:48:14 +02:00
|
|
|
|
|
2012-08-05 21:36:49 +02:00
|
|
|
|
root_screen = xcb_aux_get_screen(conn, screens);
|
2011-07-10 14:33:19 +02:00
|
|
|
|
root = root_screen->root;
|
|
|
|
|
|
2011-10-22 17:16:06 +02:00
|
|
|
|
if (bar_type == TYPE_ERROR) {
|
|
|
|
|
/* Red theme for error messages */
|
2015-12-28 12:43:53 +01:00
|
|
|
|
color_button_background = draw_util_hex_to_color("#680a0a");
|
|
|
|
|
color_background = draw_util_hex_to_color("#900000");
|
|
|
|
|
color_text = draw_util_hex_to_color("#ffffff");
|
|
|
|
|
color_border = draw_util_hex_to_color("#d92424");
|
|
|
|
|
color_border_bottom = draw_util_hex_to_color("#470909");
|
2011-10-22 17:16:06 +02:00
|
|
|
|
} else {
|
|
|
|
|
/* Yellowish theme for warnings */
|
2015-12-28 12:43:53 +01:00
|
|
|
|
color_button_background = draw_util_hex_to_color("#ffc100");
|
|
|
|
|
color_background = draw_util_hex_to_color("#ffa8000");
|
|
|
|
|
color_text = draw_util_hex_to_color("#000000");
|
|
|
|
|
color_border = draw_util_hex_to_color("#ab7100");
|
|
|
|
|
color_border_bottom = draw_util_hex_to_color("#ab7100");
|
2011-10-22 17:16:06 +02:00
|
|
|
|
}
|
|
|
|
|
|
2016-11-28 22:07:45 +01:00
|
|
|
|
init_dpi();
|
2011-10-23 23:37:11 +02:00
|
|
|
|
font = load_font(pattern, true);
|
2011-11-14 00:23:25 +01:00
|
|
|
|
set_font(&font);
|
2011-07-10 14:33:19 +02:00
|
|
|
|
|
2016-01-14 10:06:34 +01:00
|
|
|
|
#if defined(__OpenBSD__)
|
|
|
|
|
if (pledge("stdio rpath wpath cpath getpw proc exec", NULL) == -1)
|
|
|
|
|
err(EXIT_FAILURE, "pledge");
|
|
|
|
|
#endif
|
|
|
|
|
|
2015-03-27 09:20:03 +01:00
|
|
|
|
xcb_rectangle_t win_pos = get_window_position();
|
|
|
|
|
|
2016-01-04 09:26:45 +01:00
|
|
|
|
xcb_cursor_context_t *cursor_ctx;
|
2020-02-24 08:48:58 +01:00
|
|
|
|
if (xcb_cursor_context_new(conn, root_screen, &cursor_ctx) < 0) {
|
|
|
|
|
errx(EXIT_FAILURE, "Cannot allocate xcursor context");
|
2016-01-04 09:26:45 +01:00
|
|
|
|
}
|
2020-02-24 08:48:58 +01:00
|
|
|
|
xcb_cursor_t cursor = xcb_cursor_load_cursor(cursor_ctx, "left_ptr");
|
|
|
|
|
xcb_cursor_context_free(cursor_ctx);
|
2016-01-04 09:26:45 +01:00
|
|
|
|
|
2011-07-10 14:33:19 +02:00
|
|
|
|
/* Open an input window */
|
2011-10-24 00:20:57 +02:00
|
|
|
|
win = xcb_generate_id(conn);
|
|
|
|
|
|
|
|
|
|
xcb_create_window(
|
|
|
|
|
conn,
|
|
|
|
|
XCB_COPY_FROM_PARENT,
|
2015-03-27 09:20:03 +01:00
|
|
|
|
win, /* the window id */
|
|
|
|
|
root, /* parent == root */
|
|
|
|
|
win_pos.x, win_pos.y, win_pos.width, win_pos.height, /* dimensions */
|
|
|
|
|
0, /* x11 border = 0, we draw our own */
|
2011-10-24 00:20:57 +02:00
|
|
|
|
XCB_WINDOW_CLASS_INPUT_OUTPUT,
|
|
|
|
|
XCB_WINDOW_CLASS_COPY_FROM_PARENT, /* copy visual from parent */
|
2016-01-04 09:26:45 +01:00
|
|
|
|
XCB_CW_BACK_PIXEL | XCB_CW_EVENT_MASK | XCB_CW_CURSOR,
|
2015-03-01 17:16:03 +01:00
|
|
|
|
(uint32_t[]){
|
2011-10-24 00:20:57 +02:00
|
|
|
|
0, /* back pixel: black */
|
|
|
|
|
XCB_EVENT_MASK_EXPOSURE |
|
2014-06-15 19:07:02 +02:00
|
|
|
|
XCB_EVENT_MASK_STRUCTURE_NOTIFY |
|
|
|
|
|
XCB_EVENT_MASK_BUTTON_PRESS |
|
2016-01-04 09:26:45 +01:00
|
|
|
|
XCB_EVENT_MASK_BUTTON_RELEASE,
|
|
|
|
|
cursor});
|
2018-09-23 16:02:21 +02:00
|
|
|
|
if (sncontext) {
|
|
|
|
|
sn_launchee_context_setup_window(sncontext, win);
|
|
|
|
|
}
|
2011-10-24 00:20:57 +02:00
|
|
|
|
|
|
|
|
|
/* Map the window (make it visible) */
|
|
|
|
|
xcb_map_window(conn, win);
|
2011-07-10 14:33:19 +02:00
|
|
|
|
|
2014-06-15 19:07:02 +02:00
|
|
|
|
/* Setup NetWM atoms */
|
|
|
|
|
#define xmacro(name) \
|
|
|
|
|
do { \
|
|
|
|
|
xcb_intern_atom_reply_t *reply = xcb_intern_atom_reply(conn, name##_cookie, NULL); \
|
|
|
|
|
if (!reply) \
|
2019-01-02 13:05:18 +01:00
|
|
|
|
die("Could not get atom " #name); \
|
2014-06-15 19:07:02 +02:00
|
|
|
|
\
|
|
|
|
|
A_##name = reply->atom; \
|
|
|
|
|
free(reply); \
|
|
|
|
|
} while (0);
|
|
|
|
|
#include "atoms.xmacro"
|
|
|
|
|
#undef xmacro
|
2011-07-10 14:33:19 +02:00
|
|
|
|
|
|
|
|
|
/* Set dock mode */
|
2011-07-25 00:31:51 +02:00
|
|
|
|
xcb_change_property(conn,
|
2014-06-15 19:07:02 +02:00
|
|
|
|
XCB_PROP_MODE_REPLACE,
|
|
|
|
|
win,
|
|
|
|
|
A__NET_WM_WINDOW_TYPE,
|
|
|
|
|
A_ATOM,
|
|
|
|
|
32,
|
|
|
|
|
1,
|
|
|
|
|
(unsigned char *)&A__NET_WM_WINDOW_TYPE_DOCK);
|
2011-07-10 14:33:19 +02:00
|
|
|
|
|
|
|
|
|
/* Reserve some space at the top of the screen */
|
|
|
|
|
struct {
|
|
|
|
|
uint32_t left;
|
|
|
|
|
uint32_t right;
|
|
|
|
|
uint32_t top;
|
|
|
|
|
uint32_t bottom;
|
|
|
|
|
uint32_t left_start_y;
|
|
|
|
|
uint32_t left_end_y;
|
|
|
|
|
uint32_t right_start_y;
|
|
|
|
|
uint32_t right_end_y;
|
|
|
|
|
uint32_t top_start_x;
|
|
|
|
|
uint32_t top_end_x;
|
|
|
|
|
uint32_t bottom_start_x;
|
|
|
|
|
uint32_t bottom_end_x;
|
2014-01-04 13:18:38 +01:00
|
|
|
|
} __attribute__((__packed__)) strut_partial;
|
|
|
|
|
memset(&strut_partial, 0, sizeof(strut_partial));
|
2011-07-10 14:33:19 +02:00
|
|
|
|
|
2015-03-26 09:44:46 +01:00
|
|
|
|
strut_partial.top = font.height + logical_px(6);
|
2011-07-10 14:33:19 +02:00
|
|
|
|
strut_partial.top_start_x = 0;
|
|
|
|
|
strut_partial.top_end_x = 800;
|
|
|
|
|
|
2011-07-25 00:31:51 +02:00
|
|
|
|
xcb_change_property(conn,
|
2014-06-15 19:07:02 +02:00
|
|
|
|
XCB_PROP_MODE_REPLACE,
|
|
|
|
|
win,
|
|
|
|
|
A__NET_WM_STRUT_PARTIAL,
|
|
|
|
|
A_CARDINAL,
|
|
|
|
|
32,
|
|
|
|
|
12,
|
|
|
|
|
&strut_partial);
|
2011-07-10 14:33:19 +02:00
|
|
|
|
|
2017-01-21 16:25:21 +01:00
|
|
|
|
/* Initialize the drawable bar */
|
|
|
|
|
draw_util_surface_init(conn, &bar, win, get_visualtype(root_screen), win_pos.width, win_pos.height);
|
2011-07-10 14:33:19 +02:00
|
|
|
|
|
2018-08-25 13:48:14 +02:00
|
|
|
|
/* Startup complete. */
|
2018-09-23 16:02:21 +02:00
|
|
|
|
if (sncontext) {
|
|
|
|
|
sn_launchee_context_complete(sncontext);
|
|
|
|
|
sn_launchee_context_unref(sncontext);
|
|
|
|
|
}
|
2018-08-25 13:48:14 +02:00
|
|
|
|
|
2011-07-10 14:33:19 +02:00
|
|
|
|
/* Grab the keyboard to get all input */
|
|
|
|
|
xcb_flush(conn);
|
|
|
|
|
|
|
|
|
|
xcb_generic_event_t *event;
|
|
|
|
|
while ((event = xcb_wait_for_event(conn)) != NULL) {
|
|
|
|
|
if (event->response_type == 0) {
|
|
|
|
|
fprintf(stderr, "X11 Error received! sequence %x\n", event->sequence);
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Strip off the highest bit (set if the event is generated) */
|
|
|
|
|
int type = (event->response_type & 0x7F);
|
|
|
|
|
|
|
|
|
|
switch (type) {
|
|
|
|
|
case XCB_EXPOSE:
|
2017-01-13 18:34:58 +01:00
|
|
|
|
if (((xcb_expose_event_t *)event)->count == 0) {
|
|
|
|
|
handle_expose(conn, (xcb_expose_event_t *)event);
|
|
|
|
|
}
|
|
|
|
|
|
2011-07-10 14:33:19 +02:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case XCB_BUTTON_PRESS:
|
2014-06-15 19:07:02 +02:00
|
|
|
|
handle_button_press(conn, (xcb_button_press_event_t *)event);
|
2011-07-10 14:33:19 +02:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case XCB_BUTTON_RELEASE:
|
2014-06-15 19:07:02 +02:00
|
|
|
|
handle_button_release(conn, (xcb_button_release_event_t *)event);
|
2011-07-10 14:33:19 +02:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case XCB_CONFIGURE_NOTIFY: {
|
2014-06-15 19:07:02 +02:00
|
|
|
|
xcb_configure_notify_event_t *configure_notify = (xcb_configure_notify_event_t *)event;
|
2018-03-09 08:25:07 +01:00
|
|
|
|
if (configure_notify->width > 0 && configure_notify->height > 0) {
|
|
|
|
|
draw_util_surface_set_size(&bar, configure_notify->width, configure_notify->height);
|
|
|
|
|
}
|
2011-07-10 14:33:19 +02:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
free(event);
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-19 11:14:20 +02:00
|
|
|
|
free(pattern);
|
2017-01-21 16:25:21 +01:00
|
|
|
|
draw_util_surface_free(conn, &bar);
|
2012-08-05 16:34:38 +02:00
|
|
|
|
|
2011-07-10 14:33:19 +02:00
|
|
|
|
return 0;
|
|
|
|
|
}
|