2009-09-20 15:44:14 +02:00
|
|
|
|
/*
|
2011-09-18 14:20:59 +02:00
|
|
|
|
* vim:ts=4:sw=4:expandtab
|
2009-09-20 15:44:14 +02:00
|
|
|
|
*
|
|
|
|
|
* i3 - an improved dynamic tiling window manager
|
2015-04-04 02:17:56 +02:00
|
|
|
|
* © 2009 Michael Stapelberg and contributors (see also: LICENSE)
|
2009-09-20 15:44:14 +02:00
|
|
|
|
*
|
|
|
|
|
* i3-input/main.c: Utility which lets the user input commands and sends them
|
2011-10-25 22:19:38 +02:00
|
|
|
|
* to i3.
|
2009-09-20 15:44:14 +02:00
|
|
|
|
*
|
|
|
|
|
*/
|
2016-10-11 09:13:35 +02:00
|
|
|
|
#include "libi3.h"
|
|
|
|
|
|
2009-09-20 15:44:14 +02:00
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
#include <errno.h>
|
|
|
|
|
#include <err.h>
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
#include <getopt.h>
|
2011-03-19 21:23:55 +01:00
|
|
|
|
#include <limits.h>
|
2009-09-20 15:44:14 +02:00
|
|
|
|
|
|
|
|
|
#include <xcb/xcb.h>
|
|
|
|
|
#include <xcb/xcb_aux.h>
|
|
|
|
|
#include <xcb/xcb_event.h>
|
|
|
|
|
#include <xcb/xcb_keysyms.h>
|
|
|
|
|
|
|
|
|
|
#include <X11/keysym.h>
|
|
|
|
|
|
|
|
|
|
#include "keysym2ucs.h"
|
|
|
|
|
|
|
|
|
|
#include "i3-input.h"
|
|
|
|
|
|
2017-01-21 16:30:31 +01:00
|
|
|
|
#define MAX_WIDTH logical_px(500)
|
|
|
|
|
#define BORDER logical_px(2)
|
|
|
|
|
#define PADDING logical_px(2)
|
|
|
|
|
|
2011-09-18 14:51:11 +02:00
|
|
|
|
/* IPC format string. %s will be replaced with what the user entered, then
|
|
|
|
|
* the command will be sent to i3 */
|
|
|
|
|
static char *format;
|
|
|
|
|
|
2009-09-20 15:44:14 +02:00
|
|
|
|
static int sockfd;
|
|
|
|
|
static xcb_key_symbols_t *symbols;
|
|
|
|
|
static bool modeswitch_active = false;
|
|
|
|
|
static xcb_window_t win;
|
2017-01-21 16:30:31 +01:00
|
|
|
|
static surface_t surface;
|
2012-08-08 15:08:05 +02:00
|
|
|
|
static xcb_char2b_t glyphs_ucs[512];
|
2009-09-20 15:44:14 +02:00
|
|
|
|
static char *glyphs_utf8[512];
|
|
|
|
|
static int input_position;
|
2011-10-23 23:37:11 +02:00
|
|
|
|
static i3Font font;
|
2012-08-07 22:10:30 +02:00
|
|
|
|
static i3String *prompt;
|
|
|
|
|
static int prompt_offset = 0;
|
2009-09-20 16:54:29 +02:00
|
|
|
|
static int limit;
|
2011-01-28 00:41:53 +01: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;
|
2009-09-20 15:44:14 +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);
|
|
|
|
|
vfprintf(stdout, fmt, args);
|
|
|
|
|
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, ...) {
|
|
|
|
|
}
|
|
|
|
|
|
2009-09-20 15:44:14 +02:00
|
|
|
|
/*
|
|
|
|
|
* Concats the glyphs (either UCS-2 or UTF-8) to a single string, suitable for
|
|
|
|
|
* rendering it (UCS-2) or sending it to i3 (UTF-8).
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
static uint8_t *concat_strings(char **glyphs, int max) {
|
2015-08-03 11:50:50 +02:00
|
|
|
|
uint8_t *output = scalloc(max + 1, 4);
|
2011-09-18 14:20:59 +02:00
|
|
|
|
uint8_t *walk = output;
|
|
|
|
|
for (int c = 0; c < max; c++) {
|
|
|
|
|
printf("at %c\n", glyphs[c][0]);
|
|
|
|
|
/* if the first byte is 0, this has to be UCS2 */
|
|
|
|
|
if (glyphs[c][0] == '\0') {
|
|
|
|
|
memcpy(walk, glyphs[c], 2);
|
|
|
|
|
walk += 2;
|
|
|
|
|
} else {
|
2014-06-15 19:07:02 +02:00
|
|
|
|
strcpy((char *)walk, glyphs[c]);
|
2011-09-18 14:20:59 +02:00
|
|
|
|
walk += strlen(glyphs[c]);
|
2009-09-20 15:44:14 +02:00
|
|
|
|
}
|
2011-09-18 14:20:59 +02:00
|
|
|
|
}
|
|
|
|
|
printf("output = %s\n", output);
|
|
|
|
|
return output;
|
2009-09-20 15:44:14 +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(void *data, xcb_connection_t *conn, xcb_expose_event_t *event) {
|
2011-09-18 14:20:59 +02:00
|
|
|
|
printf("expose!\n");
|
|
|
|
|
|
2017-01-21 16:30:31 +01:00
|
|
|
|
color_t border_color = draw_util_hex_to_color("#FF0000");
|
|
|
|
|
color_t fg_color = draw_util_hex_to_color("#FFFFFF");
|
|
|
|
|
color_t bg_color = draw_util_hex_to_color("#000000");
|
|
|
|
|
|
|
|
|
|
int text_offset = BORDER + PADDING;
|
2011-09-18 14:20:59 +02:00
|
|
|
|
|
2017-01-21 16:30:31 +01:00
|
|
|
|
/* draw border */
|
|
|
|
|
draw_util_rectangle(&surface, border_color, 0, 0, surface.width, surface.height);
|
|
|
|
|
|
|
|
|
|
/* draw background */
|
|
|
|
|
draw_util_rectangle(&surface, bg_color, BORDER, BORDER, surface.width - 2 * BORDER, surface.height - 2 * BORDER);
|
2011-11-14 23:20:18 +01:00
|
|
|
|
|
2012-08-07 22:10:30 +02:00
|
|
|
|
/* draw the prompt … */
|
2011-09-18 14:20:59 +02:00
|
|
|
|
if (prompt != NULL) {
|
2017-01-21 16:30:31 +01:00
|
|
|
|
draw_util_text(prompt, &surface, fg_color, bg_color, text_offset, text_offset, MAX_WIDTH - text_offset);
|
2012-08-07 22:10:30 +02:00
|
|
|
|
}
|
2017-01-21 16:30:31 +01:00
|
|
|
|
|
2012-08-07 22:10:30 +02:00
|
|
|
|
/* … and the text */
|
2014-06-15 19:07:02 +02:00
|
|
|
|
if (input_position > 0) {
|
2012-08-07 20:28:39 +02:00
|
|
|
|
i3String *input = i3string_from_ucs2(glyphs_ucs, input_position);
|
2017-01-21 16:30:31 +01:00
|
|
|
|
draw_util_text(input, &surface, fg_color, bg_color, text_offset + prompt_offset, text_offset, MAX_WIDTH - text_offset);
|
2012-08-07 20:28:39 +02:00
|
|
|
|
i3string_free(input);
|
|
|
|
|
}
|
2011-09-18 14:20:59 +02:00
|
|
|
|
|
|
|
|
|
xcb_flush(conn);
|
|
|
|
|
|
|
|
|
|
return 1;
|
2009-09-20 15:44:14 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Deactivates the Mode_switch bit upon release of the Mode_switch key.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
static int handle_key_release(void *ignored, xcb_connection_t *conn, xcb_key_release_event_t *event) {
|
2011-09-18 14:20:59 +02:00
|
|
|
|
printf("releasing %d, state raw = %d\n", event->detail, event->state);
|
2009-09-20 15:44:14 +02:00
|
|
|
|
|
2011-09-18 14:20:59 +02:00
|
|
|
|
xcb_keysym_t sym = xcb_key_press_lookup_keysym(symbols, event, event->state);
|
|
|
|
|
if (sym == XK_Mode_switch) {
|
|
|
|
|
printf("Mode switch disabled\n");
|
|
|
|
|
modeswitch_active = false;
|
|
|
|
|
}
|
2009-09-20 15:44:14 +02:00
|
|
|
|
|
2011-09-18 14:20:59 +02:00
|
|
|
|
return 1;
|
2009-09-20 15:44:14 +02:00
|
|
|
|
}
|
|
|
|
|
|
2009-09-20 16:54:29 +02:00
|
|
|
|
static void finish_input() {
|
2014-06-15 19:07:02 +02:00
|
|
|
|
char *command = (char *)concat_strings(glyphs_utf8, input_position);
|
2011-09-18 14:51:11 +02:00
|
|
|
|
|
2016-02-01 09:42:55 +01:00
|
|
|
|
/* count the occurrences of %s in the string */
|
2011-09-18 14:51:11 +02:00
|
|
|
|
int c;
|
|
|
|
|
int len = strlen(format);
|
|
|
|
|
int cnt = 0;
|
2014-06-15 19:07:02 +02:00
|
|
|
|
for (c = 0; c < (len - 1); c++)
|
|
|
|
|
if (format[c] == '%' && format[c + 1] == 's')
|
2011-09-18 14:51:11 +02:00
|
|
|
|
cnt++;
|
2016-02-01 09:42:55 +01:00
|
|
|
|
printf("occurrences = %d\n", cnt);
|
2011-09-18 14:51:11 +02:00
|
|
|
|
|
|
|
|
|
/* allocate space for the output */
|
|
|
|
|
int inputlen = strlen(command);
|
2015-08-03 11:50:50 +02:00
|
|
|
|
char *full = scalloc(strlen(format) - (2 * cnt) /* format without all %s */
|
|
|
|
|
+ (inputlen * cnt) /* replaced %s */
|
|
|
|
|
+ 1, /* trailing NUL */
|
|
|
|
|
1);
|
2011-09-18 14:51:11 +02:00
|
|
|
|
char *dest = full;
|
|
|
|
|
for (c = 0; c < len; c++) {
|
|
|
|
|
/* if this is not % or it is % but without a following 's',
|
|
|
|
|
* just copy the character */
|
2014-06-15 19:07:02 +02:00
|
|
|
|
if (format[c] != '%' || (c == (len - 1)) || format[c + 1] != 's')
|
2011-09-18 14:51:11 +02:00
|
|
|
|
*(dest++) = format[c];
|
|
|
|
|
else {
|
|
|
|
|
strncat(dest, command, inputlen);
|
|
|
|
|
dest += inputlen;
|
|
|
|
|
/* skip the following 's' of '%s' */
|
|
|
|
|
c++;
|
|
|
|
|
}
|
2011-09-18 14:20:59 +02:00
|
|
|
|
}
|
2009-09-20 16:54:29 +02:00
|
|
|
|
|
2011-09-18 14:51:11 +02:00
|
|
|
|
/* prefix the command if a prefix was specified on commandline */
|
|
|
|
|
printf("command = %s\n", full);
|
|
|
|
|
|
2014-06-15 19:07:02 +02:00
|
|
|
|
ipc_send_message(sockfd, strlen(full), 0, (uint8_t *)full);
|
2009-09-20 16:54:29 +02:00
|
|
|
|
|
2014-05-15 23:50:09 +02:00
|
|
|
|
free(full);
|
|
|
|
|
|
2011-09-18 14:20:59 +02:00
|
|
|
|
exit(0);
|
2009-09-20 16:54:29 +02:00
|
|
|
|
}
|
|
|
|
|
|
2009-09-20 15:44:14 +02:00
|
|
|
|
/*
|
|
|
|
|
* Handles keypresses by converting the keycodes to keysymbols, then the
|
|
|
|
|
* keysymbols to UCS-2. If the conversion succeeded, the glyph is saved in the
|
|
|
|
|
* internal buffers and displayed in the input window.
|
|
|
|
|
*
|
|
|
|
|
* Also handles backspace (deleting one character) and return (sending the
|
|
|
|
|
* command to i3).
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
static int handle_key_press(void *ignored, xcb_connection_t *conn, xcb_key_press_event_t *event) {
|
2011-09-18 14:20:59 +02:00
|
|
|
|
printf("Keypress %d, state raw = %d\n", event->detail, event->state);
|
2009-09-20 15:44:14 +02:00
|
|
|
|
|
2015-03-26 10:03:14 +01:00
|
|
|
|
// TODO: port the input handling code from i3lock once libxkbcommon ≥ 0.5.0
|
|
|
|
|
// is available in distros.
|
|
|
|
|
|
2011-10-23 20:34:48 +02:00
|
|
|
|
/* See the documentation of xcb_key_symbols_get_keysym for this one.
|
|
|
|
|
* Basically: We get either col 0 or col 1, depending on whether shift is
|
|
|
|
|
* pressed. */
|
|
|
|
|
int col = (event->state & XCB_MOD_MASK_SHIFT);
|
2009-09-20 15:44:14 +02:00
|
|
|
|
|
2011-10-23 20:34:48 +02:00
|
|
|
|
/* If modeswitch is currently active, we need to look in group 2 or 3,
|
|
|
|
|
* respectively. */
|
|
|
|
|
if (modeswitch_active)
|
|
|
|
|
col += 2;
|
2009-09-20 15:44:14 +02:00
|
|
|
|
|
2011-10-23 20:34:48 +02:00
|
|
|
|
xcb_keysym_t sym = xcb_key_press_lookup_keysym(symbols, event, col);
|
2011-09-18 14:20:59 +02:00
|
|
|
|
if (sym == XK_Mode_switch) {
|
|
|
|
|
printf("Mode switch enabled\n");
|
|
|
|
|
modeswitch_active = true;
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
2009-09-20 15:44:14 +02:00
|
|
|
|
|
2011-09-18 14:20:59 +02:00
|
|
|
|
if (sym == XK_Return)
|
|
|
|
|
finish_input();
|
2009-09-20 15:44:14 +02:00
|
|
|
|
|
2011-09-18 14:20:59 +02:00
|
|
|
|
if (sym == XK_BackSpace) {
|
|
|
|
|
if (input_position == 0)
|
|
|
|
|
return 1;
|
2009-09-20 15:44:14 +02:00
|
|
|
|
|
2011-09-18 14:20:59 +02:00
|
|
|
|
input_position--;
|
|
|
|
|
free(glyphs_utf8[input_position]);
|
2009-09-20 15:44:14 +02:00
|
|
|
|
|
2011-09-18 14:20:59 +02:00
|
|
|
|
handle_expose(NULL, conn, NULL);
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
if (sym == XK_Escape) {
|
|
|
|
|
exit(0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* TODO: handle all of these? */
|
|
|
|
|
printf("is_keypad_key = %d\n", xcb_is_keypad_key(sym));
|
|
|
|
|
printf("is_private_keypad_key = %d\n", xcb_is_private_keypad_key(sym));
|
|
|
|
|
printf("xcb_is_cursor_key = %d\n", xcb_is_cursor_key(sym));
|
|
|
|
|
printf("xcb_is_pf_key = %d\n", xcb_is_pf_key(sym));
|
|
|
|
|
printf("xcb_is_function_key = %d\n", xcb_is_function_key(sym));
|
|
|
|
|
printf("xcb_is_misc_function_key = %d\n", xcb_is_misc_function_key(sym));
|
|
|
|
|
printf("xcb_is_modifier_key = %d\n", xcb_is_modifier_key(sym));
|
|
|
|
|
|
|
|
|
|
if (xcb_is_modifier_key(sym) || xcb_is_cursor_key(sym))
|
|
|
|
|
return 1;
|
2009-09-20 15:44:14 +02:00
|
|
|
|
|
2011-09-18 14:20:59 +02:00
|
|
|
|
printf("sym = %c (%d)\n", sym, sym);
|
2009-09-20 16:54:29 +02:00
|
|
|
|
|
2011-09-18 14:20:59 +02:00
|
|
|
|
/* convert the keysym to UCS */
|
|
|
|
|
uint16_t ucs = keysym2ucs(sym);
|
|
|
|
|
if ((int16_t)ucs == -1) {
|
|
|
|
|
fprintf(stderr, "Keysym could not be converted to UCS, skipping\n");
|
2009-09-20 15:44:14 +02:00
|
|
|
|
return 1;
|
2011-09-18 14:20:59 +02:00
|
|
|
|
}
|
|
|
|
|
|
2012-08-08 15:08:05 +02:00
|
|
|
|
xcb_char2b_t inp;
|
2014-06-15 19:07:02 +02:00
|
|
|
|
inp.byte1 = (ucs & 0xff00) >> 2;
|
|
|
|
|
inp.byte2 = (ucs & 0x00ff) >> 0;
|
2011-09-18 14:20:59 +02:00
|
|
|
|
|
2012-08-08 15:08:05 +02:00
|
|
|
|
printf("inp.byte1 = %02x, inp.byte2 = %02x\n", inp.byte1, inp.byte2);
|
2011-09-18 14:20:59 +02:00
|
|
|
|
/* convert it to UTF-8 */
|
2012-08-08 15:08:05 +02:00
|
|
|
|
char *out = convert_ucs2_to_utf8(&inp, 1);
|
2011-09-18 14:20:59 +02:00
|
|
|
|
printf("converted to %s\n", out);
|
|
|
|
|
|
2012-08-08 15:08:05 +02:00
|
|
|
|
glyphs_ucs[input_position] = inp;
|
2011-11-12 00:18:37 +01:00
|
|
|
|
glyphs_utf8[input_position] = out;
|
2011-09-18 14:20:59 +02:00
|
|
|
|
input_position++;
|
|
|
|
|
|
|
|
|
|
if (input_position == limit)
|
|
|
|
|
finish_input();
|
|
|
|
|
|
|
|
|
|
handle_expose(NULL, conn, NULL);
|
|
|
|
|
return 1;
|
2009-09-20 15:44:14 +02:00
|
|
|
|
}
|
|
|
|
|
|
2015-04-01 14:35:49 +02:00
|
|
|
|
static xcb_rectangle_t get_window_position(void) {
|
2017-01-21 16:30:31 +01:00
|
|
|
|
xcb_rectangle_t result = (xcb_rectangle_t){logical_px(50), logical_px(50), MAX_WIDTH, font.height + 2 * BORDER + 2 * PADDING};
|
2015-04-01 14:35:49 +02:00
|
|
|
|
|
2016-04-30 23:04:58 +02:00
|
|
|
|
xcb_get_property_reply_t *supporting_wm_reply = NULL;
|
2015-04-01 14:35:49 +02:00
|
|
|
|
xcb_get_input_focus_reply_t *input_focus = NULL;
|
|
|
|
|
xcb_get_geometry_reply_t *geometry = NULL;
|
2016-04-30 23:04:58 +02:00
|
|
|
|
xcb_get_property_reply_t *wm_class = NULL;
|
2015-04-01 14:35:49 +02:00
|
|
|
|
xcb_translate_coordinates_reply_t *coordinates = NULL;
|
|
|
|
|
|
2016-04-30 23:04:58 +02:00
|
|
|
|
xcb_atom_t A__NET_SUPPORTING_WM_CHECK;
|
|
|
|
|
xcb_intern_atom_cookie_t nswc_cookie = xcb_intern_atom(conn, 0, strlen("_NET_SUPPORTING_WM_CHECK"), "_NET_SUPPORTING_WM_CHECK");
|
|
|
|
|
xcb_intern_atom_reply_t *nswc_reply = xcb_intern_atom_reply(conn, nswc_cookie, NULL);
|
|
|
|
|
if (nswc_reply == NULL) {
|
|
|
|
|
ELOG("Could not intern atom _NET_SUPPORTING_WM_CHECK\n");
|
|
|
|
|
exit(-1);
|
|
|
|
|
}
|
|
|
|
|
A__NET_SUPPORTING_WM_CHECK = nswc_reply->atom;
|
|
|
|
|
free(nswc_reply);
|
|
|
|
|
|
|
|
|
|
supporting_wm_reply = xcb_get_property_reply(
|
|
|
|
|
conn, xcb_get_property(conn, false, root, A__NET_SUPPORTING_WM_CHECK, XCB_ATOM_WINDOW, 0, 32), NULL);
|
|
|
|
|
xcb_window_t *supporting_wm_win = NULL;
|
|
|
|
|
if (supporting_wm_reply == NULL || xcb_get_property_value_length(supporting_wm_reply) == 0) {
|
|
|
|
|
DLOG("Could not determine EWMH support window.\n");
|
|
|
|
|
} else {
|
|
|
|
|
supporting_wm_win = xcb_get_property_value(supporting_wm_reply);
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-01 14:35:49 +02:00
|
|
|
|
/* In rare cases, the window holding the input focus might disappear while we are figuring out its
|
|
|
|
|
* position. To avoid this, we grab the server in the meantime. */
|
|
|
|
|
xcb_grab_server(conn);
|
|
|
|
|
|
|
|
|
|
input_focus = xcb_get_input_focus_reply(conn, xcb_get_input_focus(conn), NULL);
|
|
|
|
|
if (input_focus == NULL || input_focus->focus == XCB_NONE) {
|
|
|
|
|
DLOG("Failed to receive the current input focus or no window has the input focus right now.\n");
|
|
|
|
|
goto free_resources;
|
|
|
|
|
}
|
|
|
|
|
|
2016-04-30 23:04:58 +02:00
|
|
|
|
/* We need to ignore the EWMH support window to which the focus can be set if there's no suitable window to focus. */
|
|
|
|
|
if (supporting_wm_win != NULL && input_focus->focus == *supporting_wm_win) {
|
|
|
|
|
DLOG("Input focus is on the EWMH support window, ignoring.\n");
|
|
|
|
|
goto free_resources;
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-01 14:35:49 +02:00
|
|
|
|
geometry = xcb_get_geometry_reply(conn, xcb_get_geometry(conn, input_focus->focus), NULL);
|
|
|
|
|
if (geometry == NULL) {
|
|
|
|
|
DLOG("Failed to received window geometry.\n");
|
|
|
|
|
goto free_resources;
|
|
|
|
|
}
|
|
|
|
|
|
2016-04-30 23:04:58 +02:00
|
|
|
|
wm_class = xcb_get_property_reply(
|
|
|
|
|
conn, xcb_get_property(conn, false, input_focus->focus, XCB_ATOM_WM_CLASS, XCB_GET_PROPERTY_TYPE_ANY, 0, 32), NULL);
|
2015-04-01 14:35:49 +02:00
|
|
|
|
|
2016-04-30 23:04:58 +02:00
|
|
|
|
/* We need to find out whether the input focus is on an i3 frame window. If it is, we must not translate the coordinates. */
|
|
|
|
|
if (wm_class == NULL || xcb_get_property_value_length(wm_class) == 0 || strcmp(xcb_get_property_value(wm_class), "i3-frame") != 0) {
|
|
|
|
|
coordinates = xcb_translate_coordinates_reply(
|
|
|
|
|
conn, xcb_translate_coordinates(conn, input_focus->focus, root, geometry->x, geometry->y), NULL);
|
|
|
|
|
if (coordinates == NULL) {
|
|
|
|
|
DLOG("Failed to translate coordinates.\n");
|
|
|
|
|
goto free_resources;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
DLOG("Determined coordinates of window with input focus at x = %i / y = %i.\n", coordinates->dst_x, coordinates->dst_y);
|
|
|
|
|
result.x += coordinates->dst_x;
|
|
|
|
|
result.y += coordinates->dst_y;
|
|
|
|
|
} else {
|
|
|
|
|
DLOG("Determined coordinates of window with input focus at x = %i / y = %i.\n", geometry->x, geometry->y);
|
|
|
|
|
result.x += geometry->x;
|
|
|
|
|
result.y += geometry->y;
|
|
|
|
|
}
|
2015-04-01 14:35:49 +02:00
|
|
|
|
|
|
|
|
|
free_resources:
|
|
|
|
|
xcb_ungrab_server(conn);
|
|
|
|
|
xcb_flush(conn);
|
|
|
|
|
|
2016-04-30 23:04:58 +02:00
|
|
|
|
FREE(supporting_wm_reply);
|
2015-04-01 14:35:49 +02:00
|
|
|
|
FREE(input_focus);
|
|
|
|
|
FREE(geometry);
|
2016-04-30 23:04:58 +02:00
|
|
|
|
FREE(wm_class);
|
2015-04-01 14:35:49 +02:00
|
|
|
|
FREE(coordinates);
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
2009-09-20 15:44:14 +02:00
|
|
|
|
int main(int argc, char *argv[]) {
|
2015-08-03 11:50:50 +02:00
|
|
|
|
format = sstrdup("%s");
|
2017-11-26 16:41:59 +01:00
|
|
|
|
char *socket_path = NULL;
|
2015-03-26 10:03:30 +01:00
|
|
|
|
char *pattern = sstrdup("pango:monospace 8");
|
2011-09-18 14:20:59 +02:00
|
|
|
|
int o, option_index = 0;
|
|
|
|
|
|
|
|
|
|
static struct option long_options[] = {
|
|
|
|
|
{"socket", required_argument, 0, 's'},
|
|
|
|
|
{"version", no_argument, 0, 'v'},
|
|
|
|
|
{"limit", required_argument, 0, 'l'},
|
|
|
|
|
{"prompt", required_argument, 0, 'P'},
|
|
|
|
|
{"prefix", required_argument, 0, 'p'},
|
2011-09-18 14:51:11 +02:00
|
|
|
|
{"format", required_argument, 0, 'F'},
|
2011-09-18 14:20:59 +02:00
|
|
|
|
{"font", required_argument, 0, 'f'},
|
|
|
|
|
{"help", no_argument, 0, 'h'},
|
2014-06-15 19:07:02 +02:00
|
|
|
|
{0, 0, 0, 0}};
|
2011-09-18 14:20:59 +02:00
|
|
|
|
|
2011-09-18 14:51:11 +02:00
|
|
|
|
char *options_string = "s:p:P:f:l:F:vh";
|
2011-09-18 14:20:59 +02:00
|
|
|
|
|
|
|
|
|
while ((o = getopt_long(argc, argv, options_string, long_options, &option_index)) != -1) {
|
|
|
|
|
switch (o) {
|
|
|
|
|
case 's':
|
|
|
|
|
FREE(socket_path);
|
2015-08-03 11:50:50 +02:00
|
|
|
|
socket_path = sstrdup(optarg);
|
2011-09-18 14:20:59 +02:00
|
|
|
|
break;
|
|
|
|
|
case 'v':
|
|
|
|
|
printf("i3-input " I3_VERSION);
|
|
|
|
|
return 0;
|
|
|
|
|
case 'p':
|
2011-09-18 14:51:11 +02:00
|
|
|
|
/* This option is deprecated, but will still work in i3 v4.1, 4.2 and 4.3 */
|
|
|
|
|
fprintf(stderr, "i3-input: WARNING: the -p option is DEPRECATED in favor of the -F (format) option\n");
|
|
|
|
|
FREE(format);
|
2011-10-23 14:16:56 +02:00
|
|
|
|
sasprintf(&format, "%s%%s", optarg);
|
2011-09-18 14:20:59 +02:00
|
|
|
|
break;
|
|
|
|
|
case 'l':
|
|
|
|
|
limit = atoi(optarg);
|
|
|
|
|
break;
|
|
|
|
|
case 'P':
|
2012-08-07 22:10:30 +02:00
|
|
|
|
i3string_free(prompt);
|
|
|
|
|
prompt = i3string_from_utf8(optarg);
|
2011-09-18 14:20:59 +02:00
|
|
|
|
break;
|
|
|
|
|
case 'f':
|
|
|
|
|
FREE(pattern);
|
2015-08-03 11:50:50 +02:00
|
|
|
|
pattern = sstrdup(optarg);
|
2011-09-18 14:20:59 +02:00
|
|
|
|
break;
|
2011-09-18 14:51:11 +02:00
|
|
|
|
case 'F':
|
|
|
|
|
FREE(format);
|
2015-08-03 11:50:50 +02:00
|
|
|
|
format = sstrdup(optarg);
|
2011-09-18 14:51:11 +02:00
|
|
|
|
break;
|
2011-09-18 14:20:59 +02:00
|
|
|
|
case 'h':
|
2011-09-18 14:21:45 +02:00
|
|
|
|
printf("i3-input " I3_VERSION "\n");
|
2011-09-18 14:51:11 +02:00
|
|
|
|
printf("i3-input [-s <socket>] [-F <format>] [-l <limit>] [-P <prompt>] [-f <font>] [-v]\n");
|
|
|
|
|
printf("\n");
|
|
|
|
|
printf("Example:\n");
|
|
|
|
|
printf(" i3-input -F 'workspace \"%%s\"' -P 'Switch to workspace: '\n");
|
2011-09-18 14:20:59 +02:00
|
|
|
|
return 0;
|
2009-09-20 15:44:14 +02:00
|
|
|
|
}
|
2011-09-18 14:20:59 +02:00
|
|
|
|
}
|
2009-09-20 15:44:14 +02:00
|
|
|
|
|
2011-09-18 14:51:11 +02:00
|
|
|
|
printf("using format \"%s\"\n", format);
|
|
|
|
|
|
2013-11-22 15:48:45 +01:00
|
|
|
|
int screen;
|
|
|
|
|
conn = xcb_connect(NULL, &screen);
|
|
|
|
|
if (!conn || xcb_connection_has_error(conn))
|
|
|
|
|
die("Cannot open display\n");
|
|
|
|
|
|
2011-10-23 18:18:14 +02:00
|
|
|
|
sockfd = ipc_connect(socket_path);
|
2009-09-20 15:44:14 +02:00
|
|
|
|
|
2013-11-22 15:48:45 +01:00
|
|
|
|
root_screen = xcb_aux_get_screen(conn, screen);
|
2011-09-18 14:20:59 +02:00
|
|
|
|
root = root_screen->root;
|
2011-01-28 00:41:53 +01:00
|
|
|
|
|
2011-09-18 14:20:59 +02:00
|
|
|
|
symbols = xcb_key_symbols_alloc(conn);
|
2009-09-20 15:44:14 +02:00
|
|
|
|
|
2017-01-21 16:30:31 +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);
|
2009-09-20 15:44:14 +02:00
|
|
|
|
|
2012-08-25 23:44:13 +02:00
|
|
|
|
if (prompt != NULL)
|
|
|
|
|
prompt_offset = predict_text_width(prompt);
|
|
|
|
|
|
2015-04-01 14:35:49 +02:00
|
|
|
|
const xcb_rectangle_t win_pos = get_window_position();
|
|
|
|
|
|
2011-09-18 14:20:59 +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-04-01 14:35:49 +02: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 */
|
|
|
|
|
XCB_CW_BACK_PIXEL | XCB_CW_OVERRIDE_REDIRECT | XCB_CW_EVENT_MASK,
|
2015-03-01 17:16:03 +01:00
|
|
|
|
(uint32_t[]){
|
2011-10-24 00:20:57 +02:00
|
|
|
|
0, /* back pixel: black */
|
|
|
|
|
1, /* override redirect: don’t manage this window */
|
2014-06-15 19:07:02 +02:00
|
|
|
|
XCB_EVENT_MASK_EXPOSURE});
|
2011-10-24 00:20:57 +02:00
|
|
|
|
|
|
|
|
|
/* Map the window (make it visible) */
|
|
|
|
|
xcb_map_window(conn, win);
|
2009-09-20 15:44:14 +02:00
|
|
|
|
|
2017-01-21 16:30:31 +01:00
|
|
|
|
/* Initialize the drawable surface */
|
|
|
|
|
draw_util_surface_init(conn, &surface, win, get_visualtype(root_screen), win_pos.width, win_pos.height);
|
2009-09-20 15:44:14 +02:00
|
|
|
|
|
2011-09-18 14:20:59 +02:00
|
|
|
|
/* Grab the keyboard to get all input */
|
|
|
|
|
xcb_flush(conn);
|
2010-03-03 10:08:17 +01:00
|
|
|
|
|
2011-09-18 14:20:59 +02:00
|
|
|
|
/* Try (repeatedly, if necessary) to grab the keyboard. We might not
|
|
|
|
|
* get the keyboard at the first attempt because of the keybinding
|
|
|
|
|
* still being active when started via a wm’s keybinding. */
|
|
|
|
|
xcb_grab_keyboard_cookie_t cookie;
|
|
|
|
|
xcb_grab_keyboard_reply_t *reply = NULL;
|
2010-03-03 10:08:17 +01:00
|
|
|
|
|
2011-09-18 14:20:59 +02:00
|
|
|
|
int count = 0;
|
|
|
|
|
while ((reply == NULL || reply->status != XCB_GRAB_STATUS_SUCCESS) && (count++ < 500)) {
|
|
|
|
|
cookie = xcb_grab_keyboard(conn, false, win, XCB_CURRENT_TIME, XCB_GRAB_MODE_ASYNC, XCB_GRAB_MODE_ASYNC);
|
|
|
|
|
reply = xcb_grab_keyboard_reply(conn, cookie, NULL);
|
|
|
|
|
usleep(1000);
|
|
|
|
|
}
|
2010-03-03 10:08:17 +01:00
|
|
|
|
|
2011-09-18 14:20:59 +02:00
|
|
|
|
if (reply->status != XCB_GRAB_STATUS_SUCCESS) {
|
|
|
|
|
fprintf(stderr, "Could not grab keyboard, status = %d\n", reply->status);
|
|
|
|
|
exit(-1);
|
|
|
|
|
}
|
2009-09-20 15:44:14 +02:00
|
|
|
|
|
2011-09-18 14:20:59 +02:00
|
|
|
|
xcb_flush(conn);
|
2009-09-20 15:44:14 +02:00
|
|
|
|
|
2011-09-18 14:20:59 +02:00
|
|
|
|
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;
|
|
|
|
|
}
|
2011-03-18 17:32:37 +01:00
|
|
|
|
|
2011-09-18 14:20:59 +02:00
|
|
|
|
/* Strip off the highest bit (set if the event is generated) */
|
|
|
|
|
int type = (event->response_type & 0x7F);
|
2011-03-18 17:32:37 +01:00
|
|
|
|
|
2011-09-18 14:20:59 +02:00
|
|
|
|
switch (type) {
|
|
|
|
|
case XCB_KEY_PRESS:
|
2014-06-15 19:07:02 +02:00
|
|
|
|
handle_key_press(NULL, conn, (xcb_key_press_event_t *)event);
|
2011-09-18 14:20:59 +02:00
|
|
|
|
break;
|
2011-03-18 17:32:37 +01:00
|
|
|
|
|
2011-09-18 14:20:59 +02:00
|
|
|
|
case XCB_KEY_RELEASE:
|
2014-06-15 19:07:02 +02:00
|
|
|
|
handle_key_release(NULL, conn, (xcb_key_release_event_t *)event);
|
2011-09-18 14:20:59 +02:00
|
|
|
|
break;
|
2011-03-18 17:32:37 +01:00
|
|
|
|
|
2011-09-18 14:20:59 +02:00
|
|
|
|
case XCB_EXPOSE:
|
2017-01-13 18:34:58 +01:00
|
|
|
|
if (((xcb_expose_event_t *)event)->count == 0) {
|
|
|
|
|
handle_expose(NULL, conn, (xcb_expose_event_t *)event);
|
|
|
|
|
}
|
|
|
|
|
|
2011-09-18 14:20:59 +02:00
|
|
|
|
break;
|
2011-03-18 17:32:37 +01:00
|
|
|
|
}
|
2009-09-20 15:44:14 +02:00
|
|
|
|
|
2011-09-18 14:20:59 +02:00
|
|
|
|
free(event);
|
|
|
|
|
}
|
|
|
|
|
|
2017-01-21 16:30:31 +01:00
|
|
|
|
draw_util_surface_free(conn, &surface);
|
2011-09-18 14:20:59 +02:00
|
|
|
|
return 0;
|
2009-09-20 15:44:14 +02:00
|
|
|
|
}
|