wofi/src/wofi.c

1326 lines
39 KiB
C
Raw Normal View History

2019-08-17 21:19:32 -04:00
/*
2020-01-06 19:42:52 -05:00
* Copyright (C) 2019-2020 Scoopta
2019-08-17 21:19:32 -04:00
* This file is part of Wofi
* Wofi is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Wofi is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Wofi. If not, see <http://www.gnu.org/licenses/>.
*/
#include <wofi.h>
static const char* terminals[] = {"kitty", "termite", "gnome-terminal", "weston-terminal"};
2019-11-21 04:01:27 -05:00
enum matching_mode {
MATCHING_MODE_CONTAINS,
MATCHING_MODE_FUZZY
};
enum locations {
LOCATION_CENTER,
LOCATION_TOP_LEFT,
LOCATION_TOP,
LOCATION_TOP_RIGHT,
LOCATION_RIGHT,
LOCATION_BOTTOM_RIGHT,
LOCATION_BOTTOM,
LOCATION_BOTTOM_LEFT,
LOCATION_LEFT
};
2020-02-07 21:04:37 -05:00
enum sort_order {
SORT_ORDER_DEFAULT,
SORT_ORDER_ALPHABETICAL
};
2019-08-17 21:19:32 -04:00
static uint64_t width, height;
static char* x, *y;
2019-08-17 21:19:32 -04:00
static struct zwlr_layer_shell_v1* shell;
static GtkWidget* window, *outer_box, *scroll, *entry, *inner_box, *previous_selection = NULL;
static gchar* filter = NULL;
static char* mode = NULL;
2019-08-28 03:58:45 -04:00
static bool allow_images, allow_markup;
2019-08-28 20:36:20 -04:00
static uint64_t image_size;
static char* cache_file = NULL;
static char* config_dir;
static bool mod_shift;
static bool mod_ctrl;
static char* terminal;
static GtkOrientation outer_orientation;
static bool exec_search;
static struct map* modes;
2019-11-21 04:01:27 -05:00
static enum matching_mode matching;
2019-11-25 17:56:46 -05:00
static bool insensitive;
static bool parse_search;
static GtkAlign content_halign;
static struct map* config;
static enum locations location;
2020-01-10 17:34:49 -05:00
static bool no_actions;
2020-02-06 21:22:50 -05:00
static uint64_t columns;
2020-02-07 21:04:37 -05:00
static bool user_moved = false;
2020-02-07 00:50:22 -05:00
static uint16_t widget_count = 0;
2020-02-07 21:04:37 -05:00
static enum sort_order sort_order;
2020-02-08 21:04:38 -05:00
static int64_t min_height = INT64_MAX;
static uint64_t lines;
2020-02-16 00:53:02 -05:00
static char* key_up, *key_down, *key_left, *key_right, *key_forward, *key_backward, *key_submit, *key_exit;
static char* mod_up, *mod_down, *mod_left, *mod_right, *mod_forward, *mod_backward, *mod_exit;
2020-02-08 21:04:38 -05:00
static struct wl_display* wl = NULL;
static struct wl_surface* wl_surface;
static struct zwlr_layer_surface_v1* wlr_surface;
struct mode {
void (*mode_exec)(const gchar* cmd);
struct widget* (*mode_get_widget)(void);
char* name;
struct wl_list link;
};
struct widget {
size_t action_count;
char* mode, **text, *search_text, **actions;
2019-08-18 23:49:12 -04:00
};
2019-08-17 21:19:32 -04:00
static void nop() {}
static void add_interface(void* data, struct wl_registry* registry, uint32_t name, const char* interface, uint32_t version) {
(void) data;
if(strcmp(interface, zwlr_layer_shell_v1_interface.name) == 0) {
shell = wl_registry_bind(registry, name, &zwlr_layer_shell_v1_interface, version);
}
}
static void config_surface(void* data, struct zwlr_layer_surface_v1* surface, uint32_t serial, uint32_t _width, uint32_t _height) {
(void) data;
(void) _width;
(void) _height;
zwlr_layer_surface_v1_ack_configure(surface, serial);
zwlr_layer_surface_v1_set_size(surface, width, height);
zwlr_layer_surface_v1_set_keyboard_interactivity(surface, true);
if(location > 8) {
location -= 9;
}
if(x != NULL || y != NULL) {
int64_t ix = x == NULL ? 0 : strtol(x, NULL, 10);
int64_t iy = y == NULL ? 0 : strtol(y, NULL, 10);
if(location == LOCATION_CENTER) {
location = LOCATION_TOP_LEFT;
}
zwlr_layer_surface_v1_set_margin(surface, iy, -ix, -iy, ix);
}
if(location > 0) {
2020-01-06 03:40:56 -05:00
enum zwlr_layer_surface_v1_anchor anchor = ZWLR_LAYER_SURFACE_V1_ANCHOR_TOP | ZWLR_LAYER_SURFACE_V1_ANCHOR_LEFT;
switch(location) {
case LOCATION_CENTER:
break;
case LOCATION_TOP_LEFT:
anchor = ZWLR_LAYER_SURFACE_V1_ANCHOR_TOP | ZWLR_LAYER_SURFACE_V1_ANCHOR_LEFT;
break;
case LOCATION_TOP:
anchor = ZWLR_LAYER_SURFACE_V1_ANCHOR_TOP;
break;
case LOCATION_TOP_RIGHT:
anchor = ZWLR_LAYER_SURFACE_V1_ANCHOR_TOP | ZWLR_LAYER_SURFACE_V1_ANCHOR_RIGHT;
break;
case LOCATION_LEFT:
anchor = ZWLR_LAYER_SURFACE_V1_ANCHOR_LEFT;
break;
case LOCATION_RIGHT:
anchor = ZWLR_LAYER_SURFACE_V1_ANCHOR_RIGHT;
break;
case LOCATION_BOTTOM_LEFT:
anchor = ZWLR_LAYER_SURFACE_V1_ANCHOR_BOTTOM | ZWLR_LAYER_SURFACE_V1_ANCHOR_LEFT;
break;
case LOCATION_BOTTOM:
anchor = ZWLR_LAYER_SURFACE_V1_ANCHOR_BOTTOM;
break;
case LOCATION_BOTTOM_RIGHT:
anchor = ZWLR_LAYER_SURFACE_V1_ANCHOR_BOTTOM | ZWLR_LAYER_SURFACE_V1_ANCHOR_RIGHT;
break;
}
zwlr_layer_surface_v1_set_anchor(surface, anchor);
2019-08-17 21:19:32 -04:00
}
}
static gboolean do_search(gpointer data) {
(void) data;
const gchar* new_filter = gtk_entry_get_text(GTK_ENTRY(entry));
if(filter == NULL || strcmp(new_filter, filter) != 0) {
if(filter != NULL) {
free(filter);
}
filter = strdup(new_filter);
gtk_flow_box_invalidate_filter(GTK_FLOW_BOX(inner_box));
2019-11-21 04:01:27 -05:00
gtk_flow_box_invalidate_sort(GTK_FLOW_BOX(inner_box));
GtkFlowBoxChild* child = gtk_flow_box_get_child_at_index(GTK_FLOW_BOX(inner_box), 0);
if(child != NULL) {
gtk_flow_box_select_child(GTK_FLOW_BOX(inner_box), child);
}
}
return G_SOURCE_CONTINUE;
2019-08-17 21:19:32 -04:00
}
2019-12-16 22:15:16 -05:00
static char* parse_images(WofiPropertyBox* box, const char* text, bool create_widgets) {
char* ret = strdup("");
struct map* mode_map = map_init();
map_put(mode_map, "img", "true");
map_put(mode_map, "text", "true");
char* tmp = strdup(text);
struct wl_list modes;
struct node {
char* str;
struct wl_list link;
};
wl_list_init(&modes);
bool data = false;
char* save_ptr;
char* str = strtok_r(tmp, ":", &save_ptr);
do {
2019-12-17 03:15:28 -05:00
if(str == NULL) {
break;
}
if(map_contains(mode_map, str) || data) {
struct node* node = malloc(sizeof(struct node));
node->str = str;
wl_list_insert(&modes, &node->link);
data = !data;
}
} while((str = strtok_r(NULL, ":", &save_ptr)) != NULL);
char* tmp2 = strdup(text);
char* start = tmp2;
char* mode = NULL;
struct node* node = wl_container_of(modes.prev, node, link);
while(true) {
if(mode == NULL) {
if(start == NULL) {
break;
}
char* tmp_start = (start - tmp2) + tmp;
if(!wl_list_empty(&modes) && tmp_start == node->str) {
if(node->link.prev == &modes) {
break;
}
mode = node->str;
node = wl_container_of(node->link.prev, node, link);
str = node->str;
start = ((str + strlen(str) + 1) - tmp) + tmp2;
if(((start - tmp2) + text) > (text + strlen(text))) {
start = NULL;
}
if(node->link.prev != &modes) {
node = wl_container_of(node->link.prev, node, link);
}
} else {
mode = "text";
str = start;
if(!wl_list_empty(&modes)) {
start = (node->str - tmp - 1) + tmp2;
*start = 0;
++start;
}
}
} else {
if(strcmp(mode, "img") == 0 && create_widgets) {
GdkPixbuf* buf = gdk_pixbuf_new_from_file(str, NULL);
int width = gdk_pixbuf_get_width(buf);
int height = gdk_pixbuf_get_height(buf);
if(height > width) {
float percent = (float) image_size / height;
GdkPixbuf* tmp = gdk_pixbuf_scale_simple(buf, width * percent, image_size, GDK_INTERP_BILINEAR);
g_object_unref(buf);
buf = tmp;
} else {
float percent = (float) image_size / width;
GdkPixbuf* tmp = gdk_pixbuf_scale_simple(buf, image_size, height * percent, GDK_INTERP_BILINEAR);
g_object_unref(buf);
buf = tmp;
}
GtkWidget* img = gtk_image_new_from_pixbuf(buf);
gtk_widget_set_name(img, "img");
gtk_container_add(GTK_CONTAINER(box), img);
} else if(strcmp(mode, "text") == 0) {
if(create_widgets) {
GtkWidget* label = gtk_label_new(str);
gtk_widget_set_name(label, "text");
2019-08-28 03:58:45 -04:00
gtk_label_set_use_markup(GTK_LABEL(label), allow_markup);
gtk_label_set_xalign(GTK_LABEL(label), 0);
gtk_container_add(GTK_CONTAINER(box), label);
} else {
char* tmp = ret;
ret = utils_concat(2, ret, str);
free(tmp);
}
}
mode = NULL;
if(wl_list_empty(&modes)) {
break;
}
}
}
free(tmp);
free(tmp2);
map_free(mode_map);
struct node* tmp_node;
wl_list_for_each_safe(node, tmp_node, &modes, link) {
wl_list_remove(&node->link);
free(node);
}
if(create_widgets) {
free(ret);
return NULL;
} else {
return ret;
}
}
2019-12-16 22:15:16 -05:00
char* wofi_parse_image_escapes(const char* text) {
return parse_images(NULL, text, false);
}
static GtkWidget* create_label(char* mode, char* text, char* search_text, char* action) {
GtkWidget* box = wofi_property_box_new(GTK_ORIENTATION_HORIZONTAL, 0);
gtk_widget_set_name(box, "unselected");
GtkStyleContext* style = gtk_widget_get_style_context(box);
gtk_style_context_add_class(style, "entry");
wofi_property_box_add_property(WOFI_PROPERTY_BOX(box), "mode", mode);
wofi_property_box_add_property(WOFI_PROPERTY_BOX(box), "action", action);
2020-02-07 00:47:59 -05:00
char index[6];
2020-02-07 00:50:22 -05:00
snprintf(index, sizeof(index), "%u", ++widget_count);
2020-02-07 00:47:59 -05:00
wofi_property_box_add_property(WOFI_PROPERTY_BOX(box), "index", index);
if(allow_images) {
parse_images(WOFI_PROPERTY_BOX(box), text, true);
} else {
GtkWidget* label = gtk_label_new(text);
gtk_widget_set_name(label, "text");
2019-08-28 03:58:45 -04:00
gtk_label_set_use_markup(GTK_LABEL(label), allow_markup);
gtk_label_set_xalign(GTK_LABEL(label), 0);
gtk_container_add(GTK_CONTAINER(box), label);
}
if(parse_search) {
search_text = strdup(search_text);
if(allow_images) {
char* tmp = search_text;
search_text = parse_images(WOFI_PROPERTY_BOX(box), search_text, false);
free(tmp);
}
if(allow_markup) {
char* out;
pango_parse_markup(search_text, -1, 0, NULL, &out, NULL, NULL);
free(search_text);
search_text = out;
}
}
wofi_property_box_add_property(WOFI_PROPERTY_BOX(box), "filter", search_text);
if(parse_search) {
free(search_text);
}
return box;
2019-08-18 23:49:12 -04:00
}
static char* get_cache_path(const gchar* mode) {
if(cache_file != NULL) {
return strdup(cache_file);
}
2019-08-18 23:49:12 -04:00
char* cache_path = getenv("XDG_CACHE_HOME");
if(cache_path == NULL) {
cache_path = utils_concat(3, getenv("HOME"), "/.cache/wofi-", mode);
} else {
cache_path = utils_concat(3, cache_path, "/wofi-", mode);
}
return cache_path;
}
static void execute_action(const gchar* mode, const gchar* cmd) {
struct mode* mode_ptr = map_get(modes, mode);
mode_ptr->mode_exec(cmd);
}
static void activate_item(GtkFlowBox* flow_box, GtkFlowBoxChild* row, gpointer data) {
(void) flow_box;
(void) data;
GtkWidget* box = gtk_bin_get_child(GTK_BIN(row));
bool primary_action = GTK_IS_EXPANDER(box);
if(primary_action) {
box = gtk_expander_get_label_widget(GTK_EXPANDER(box));
}
execute_action(wofi_property_box_get_property(WOFI_PROPERTY_BOX(box), "mode"), wofi_property_box_get_property(WOFI_PROPERTY_BOX(box), "action"));
}
static void expand(GtkExpander* expander, gpointer data) {
(void) data;
GtkWidget* box = gtk_bin_get_child(GTK_BIN(expander));
gtk_widget_set_visible(box, !gtk_expander_get_expanded(expander));
}
2020-02-08 21:04:38 -05:00
static void widget_allocate(GtkWidget* widget, GdkRectangle* allocation, gpointer data) {
(void) widget;
(void) data;
2020-02-08 21:13:05 -05:00
min_height = utils_min(min_height, allocation->height);
2020-02-08 21:04:38 -05:00
if(wl != NULL) {
zwlr_layer_surface_v1_set_size(wlr_surface, width, min_height * lines);
wl_surface_commit(wl_surface);
wl_display_roundtrip(wl);
}
gtk_window_resize(GTK_WINDOW(window), width, min_height * lines);
gtk_widget_set_size_request(scroll, width, min_height * lines);
}
static gboolean _insert_widget(gpointer data) {
struct mode* mode = data;
struct widget* node;
if(mode->mode_get_widget == NULL) {
return FALSE;
} else {
node = mode->mode_get_widget();
}
if(node == NULL) {
return FALSE;
}
GtkWidget* parent;
2020-01-10 17:34:49 -05:00
if(node->action_count > 1 && !no_actions) {
parent = gtk_expander_new("");
g_signal_connect(parent, "activate", G_CALLBACK(expand), NULL);
GtkWidget* box = create_label(node->mode, node->text[0], node->search_text, node->actions[0]);
gtk_expander_set_label_widget(GTK_EXPANDER(parent), box);
GtkWidget* exp_box = gtk_list_box_new();
gtk_list_box_set_activate_on_single_click(GTK_LIST_BOX(exp_box), FALSE);
g_signal_connect(exp_box, "row-activated", G_CALLBACK(activate_item), NULL);
gtk_container_add(GTK_CONTAINER(parent), exp_box);
for(size_t count = 1; count < node->action_count; ++count) {
box = create_label(node->mode, node->text[count], node->search_text, node->actions[count]);
GtkWidget* row = gtk_list_box_row_new();
gtk_widget_set_name(row, "entry");
gtk_container_add(GTK_CONTAINER(row), box);
gtk_container_add(GTK_CONTAINER(exp_box), row);
}
} else {
parent = create_label(node->mode, node->text[0], node->search_text, node->actions[0]);
}
gtk_widget_set_halign(parent, content_halign);
GtkWidget* child = gtk_flow_box_child_new();
gtk_widget_set_name(child, "entry");
2020-02-08 21:04:38 -05:00
if(lines > 0) {
g_signal_connect(child, "size-allocate", G_CALLBACK(widget_allocate), NULL);
}
2020-02-03 01:29:44 -05:00
size_t lf_count = 1;
size_t text_len = strlen(node->text[0]);
for(size_t count = 0; count < text_len; ++count) {
if(node->text[0][count] == '\n') {
++lf_count;
}
}
gtk_container_add(GTK_CONTAINER(child), parent);
gtk_container_add(GTK_CONTAINER(inner_box), child);
gtk_widget_show_all(child);
2020-02-07 21:04:37 -05:00
if(!user_moved) {
gtk_flow_box_select_child(GTK_FLOW_BOX(inner_box), gtk_flow_box_get_child_at_index(GTK_FLOW_BOX(inner_box), 0));
}
if(GTK_IS_EXPANDER(parent)) {
GtkWidget* box = gtk_bin_get_child(GTK_BIN(parent));
gtk_widget_set_visible(box, FALSE);
}
free(node->mode);
for(size_t count = 0; count < node->action_count; ++count) {
free(node->text[count]);
}
free(node->text);
free(node->search_text);
for(size_t count = 0; count < node->action_count; ++count) {
free(node->actions[count]);
}
free(node->actions);
free(node);
return TRUE;
}
static gboolean insert_all_widgets(gpointer data) {
struct wl_list* modes = data;
if(modes->prev == modes) {
free(modes);
return FALSE;
} else {
struct mode* mode = wl_container_of(modes->prev, mode, link);
if(!_insert_widget(mode)) {
wl_list_remove(&mode->link);
}
return TRUE;
}
}
static char* escape_lf(const char* cmd) {
size_t len = strlen(cmd);
char* buffer = calloc(1, (len + 1) * 2);
size_t buf_count = 0;
for(size_t count = 0; count < len; ++count) {
char chr = cmd[count];
if(chr == '\n') {
buffer[buf_count++] = '\\';
buffer[buf_count++] = 'n';
} else if(chr == '\\') {
buffer[buf_count++] = '\\';
buffer[buf_count++] = '\\';
} else {
buffer[buf_count++] = chr;
}
}
return buffer;
}
static char* remove_escapes(const char* cmd) {
size_t len = strlen(cmd);
char* buffer = calloc(1, len + 1);
size_t buf_count = 0;
for(size_t count = 0; count < len; ++count) {
char chr = cmd[count];
if(chr == '\\') {
chr = cmd[++count];
if(chr == 'n') {
buffer[buf_count++] = '\n';
} else if(chr == '\\') {
buffer[buf_count++] = '\\';
}
} else {
buffer[buf_count++] = chr;
}
}
return buffer;
}
void wofi_write_cache(struct mode* mode, const char* _cmd) {
char* cmd = escape_lf(_cmd);
char* cache_path = get_cache_path(mode->name);
struct wl_list lines;
wl_list_init(&lines);
bool inc_count = false;
if(access(cache_path, R_OK) == 0) {
FILE* file = fopen(cache_path, "r");
char* line = NULL;
size_t size = 0;
while(getline(&line, &size, file) != -1) {
char* space = strchr(line, ' ');
2020-01-02 17:36:54 -05:00
char* lf = strchr(line, '\n');
if(lf != NULL) {
*lf = 0;
}
if(space != NULL && strcmp(cmd, space + 1) == 0) {
struct cache_line* node = malloc(sizeof(struct cache_line));
uint64_t count = strtol(line, NULL, 10) + 1;
char num[6];
snprintf(num, 5, "%" PRIu64, count);
node->line = utils_concat(4, num, " ", cmd, "\n");
inc_count = true;
wl_list_insert(&lines, &node->link);
}
}
free(line);
line = NULL;
size = 0;
fseek(file, 0, SEEK_SET);
while(getline(&line, &size, file) != -1) {
char* space = strchr(line, ' ');
char* nl = strchr(line, '\n');
if(nl != NULL) {
*nl = 0;
}
if(space == NULL || strcmp(cmd, space + 1) != 0) {
struct cache_line* node = malloc(sizeof(struct cache_line));
node->line = utils_concat(2, line, "\n");
wl_list_insert(&lines, &node->link);
}
}
free(line);
fclose(file);
}
char* tmp_path = strdup(cache_path);
char* dir = dirname(tmp_path);
if(access(dir, W_OK) == 0) {
2020-01-16 19:56:08 -05:00
if(!inc_count) {
struct cache_line* node = malloc(sizeof(struct cache_line));
node->line = utils_concat(3, "1 ", cmd, "\n");
wl_list_insert(&lines, &node->link);
}
FILE* file = fopen(cache_path, "w");
struct cache_line* node, *tmp;
wl_list_for_each_safe(node, tmp, &lines, link) {
fwrite(node->line, 1, strlen(node->line), file);
free(node->line);
wl_list_remove(&node->link);
free(node);
}
fclose(file);
}
free(cache_path);
free(tmp_path);
free(cmd);
}
void wofi_remove_cache(struct mode* mode, const char* _cmd) {
char* cmd = escape_lf(_cmd);
char* cache_path = get_cache_path(mode->name);
if(access(cache_path, R_OK | W_OK) == 0) {
2020-01-02 17:36:54 -05:00
struct wl_list lines;
wl_list_init(&lines);
FILE* file = fopen(cache_path, "r");
char* line = NULL;
size_t size = 0;
while(getline(&line, &size, file) != -1) {
char* space = strchr(line, ' ');
char* lf = strchr(line, '\n');
if(lf != NULL) {
*lf = 0;
}
if(space == NULL || strcmp(cmd, space + 1) != 0) {
struct cache_line* node = malloc(sizeof(struct cache_line));
node->line = utils_concat(2, line, "\n");
wl_list_insert(&lines, &node->link);
}
}
free(line);
fclose(file);
file = fopen(cache_path, "w");
struct cache_line* node, *tmp;
wl_list_for_each_safe(node, tmp, &lines, link) {
fwrite(node->line, 1, strlen(node->line), file);
free(node->line);
wl_list_remove(&node->link);
free(node);
}
fclose(file);
}
free(cache_path);
2020-01-30 00:51:25 -05:00
free(cmd);
2020-01-02 17:36:54 -05:00
}
struct wl_list* wofi_read_cache(struct mode* mode) {
char* cache_path = get_cache_path(mode->name);
2019-08-18 23:49:12 -04:00
struct wl_list* cache = malloc(sizeof(struct wl_list));
wl_list_init(cache);
struct wl_list lines;
wl_list_init(&lines);
if(access(cache_path, R_OK) == 0) {
FILE* file = fopen(cache_path, "r");
char* line = NULL;
size_t size = 0;
while(getline(&line, &size, file) != -1) {
struct cache_line* node = malloc(sizeof(struct cache_line));
char* lf = strchr(line, '\n');
if(lf != NULL) {
*lf = 0;
}
node->line = remove_escapes(line);
2019-08-18 23:49:12 -04:00
wl_list_insert(&lines, &node->link);
}
free(line);
fclose(file);
}
while(wl_list_length(&lines) > 0) {
uint64_t smallest = UINT64_MAX;
struct cache_line* node, *smallest_node = NULL;
2019-08-18 23:49:12 -04:00
wl_list_for_each(node, &lines, link) {
uint64_t num = strtol(node->line, NULL, 10);
if(num < smallest) {
smallest = num;
smallest_node = node;
2019-08-18 23:49:12 -04:00
}
}
char* tmp = strdup(strchr(smallest_node->line, ' ') + 1);
free(smallest_node->line);
smallest_node->line = tmp;
wl_list_remove(&smallest_node->link);
wl_list_insert(cache, &smallest_node->link);
2019-08-18 23:49:12 -04:00
}
free(cache_path);
return cache;
}
struct widget* wofi_create_widget(struct mode* mode, char* text[], char* search_text, char* actions[], size_t action_count) {
struct widget* widget = malloc(sizeof(struct widget));
widget->mode = strdup(mode->name);
widget->text = malloc(action_count * sizeof(char*));
for(size_t count = 0; count < action_count; ++count) {
widget->text[count] = strdup(text[count]);
}
widget->search_text = strdup(search_text);
widget->action_count = action_count;
widget->actions = malloc(action_count * sizeof(char*));
for(size_t count = 0; count < action_count; ++count) {
widget->actions[count] = strdup(actions[count]);
}
return widget;
}
void wofi_insert_widgets(struct mode* mode) {
gdk_threads_add_idle(_insert_widget, mode);
}
2020-01-06 03:39:47 -05:00
bool wofi_allow_images(void) {
return allow_images;
2019-08-17 23:21:52 -04:00
}
2020-01-06 03:39:47 -05:00
bool wofi_allow_markup(void) {
return allow_markup;
}
2020-01-06 03:39:47 -05:00
uint64_t wofi_get_image_size(void) {
return image_size;
}
2020-01-06 03:39:47 -05:00
bool wofi_mod_shift(void) {
return mod_shift;
}
2020-01-06 03:39:47 -05:00
bool wofi_mod_control(void) {
return mod_ctrl;
}
void wofi_term_run(const char* cmd) {
if(terminal != NULL) {
execlp(terminal, terminal, "--", cmd, NULL);
}
size_t term_count = sizeof(terminals) / sizeof(char*);
for(size_t count = 0; count < term_count; ++count) {
execlp(terminals[count], terminals[count], "--", cmd, NULL);
}
fprintf(stderr, "No terminal emulator found please set term in config or use --term\n");
exit(1);
}
static void select_item(GtkFlowBox* flow_box, gpointer data) {
(void) data;
if(previous_selection != NULL) {
gtk_widget_set_name(previous_selection, "unselected");
}
GList* selected_children = gtk_flow_box_get_selected_children(flow_box);
GtkWidget* box = gtk_bin_get_child(GTK_BIN(selected_children->data));
g_list_free(selected_children);
gtk_widget_set_name(box, "selected");
previous_selection = box;
}
2019-08-17 21:19:32 -04:00
static void activate_search(GtkEntry* entry, gpointer data) {
(void) data;
GtkFlowBoxChild* child = gtk_flow_box_get_child_at_index(GTK_FLOW_BOX(inner_box), 0);
gboolean is_visible = gtk_widget_get_visible(GTK_WIDGET(child));
if(mode != NULL && (exec_search || child == NULL || !is_visible)) {
execute_action(mode, gtk_entry_get_text(entry));
} else if(child != NULL) {
GtkWidget* box = gtk_bin_get_child(GTK_BIN(child));
bool primary_action = GTK_IS_EXPANDER(box);
if(primary_action) {
box = gtk_expander_get_label_widget(GTK_EXPANDER(box));
}
execute_action(wofi_property_box_get_property(WOFI_PROPERTY_BOX(box), "mode"), wofi_property_box_get_property(WOFI_PROPERTY_BOX(box), "action"));
}
2019-08-17 21:19:32 -04:00
}
static gboolean filter_proxy(GtkFlowBoxChild* row) {
GtkWidget* box = gtk_bin_get_child(GTK_BIN(row));
if(GTK_IS_EXPANDER(box)) {
box = gtk_expander_get_label_widget(GTK_EXPANDER(box));
}
const gchar* text = wofi_property_box_get_property(WOFI_PROPERTY_BOX(box), "filter");
2019-08-17 21:19:32 -04:00
if(filter == NULL || strcmp(filter, "") == 0) {
return TRUE;
}
if(text == NULL) {
return FALSE;
}
2019-11-25 17:56:46 -05:00
if(insensitive) {
return strcasestr(text, filter) != NULL;
} else {
return strstr(text, filter) != NULL;
}
2019-11-21 04:01:27 -05:00
}
static gboolean do_filter(GtkFlowBoxChild* row, gpointer data) {
(void) data;
gboolean ret = filter_proxy(row);
gtk_widget_set_visible(GTK_WIDGET(row), ret);
return ret;
}
static gint fuzzy_sort(const gchar* text1, const gchar* text2) {
char* _filter = strdup(filter);
size_t len = strlen(_filter);
char* t1 = strdup(text1);
size_t t1l = strlen(t1);
char* t2 = strdup(text2);
size_t t2l = strlen(t2);
if(insensitive) {
for(size_t count = 0; count < len; ++count) {
char chr = _filter[count];
if(isalpha(chr)) {
_filter[count] = tolower(chr);
}
}
for(size_t count = 0; count < t1l; ++count) {
char chr = t1[count];
if(isalpha(chr)) {
t1[count] = tolower(chr);
}
}
for(size_t count = 0; count < t2l; ++count) {
char chr = t2[count];
if(isalpha(chr)) {
t2[count] = tolower(chr);
}
}
}
size_t dist1 = utils_distance(t1, _filter);
size_t dist2 = utils_distance(t2, _filter);
free(_filter);
free(t1);
free(t2);
return dist1 - dist2;
2019-08-17 21:19:32 -04:00
}
static gint contains_sort(const gchar* text1, const gchar* text2) {
char* str1, *str2;
if(insensitive) {
str1 = strcasestr(text1, filter);
str2 = strcasestr(text2, filter);
} else {
str1 = strstr(text1, filter);
str2 = strstr(text2, filter);
}
bool tx1 = str1 == text1;
bool tx2 = str2 == text2;
bool txc1 = str1 != NULL;
bool txc2 = str2 != NULL;
if(tx1 && tx2) {
return 0;
} else if(tx1) {
return -1;
} else if(tx2) {
return 1;
} else if(txc1 && txc2) {
return 0;
} else if(txc1) {
return -1;
} else if(txc2) {
return 1;
} else {
return 0;
}
}
static gint do_sort(GtkFlowBoxChild* child1, GtkFlowBoxChild* child2, gpointer data) {
(void) data;
gtk_flow_box_get_child_at_index(GTK_FLOW_BOX(inner_box), 0);
GtkWidget* box1 = gtk_bin_get_child(GTK_BIN(child1));
GtkWidget* box2 = gtk_bin_get_child(GTK_BIN(child2));
if(GTK_IS_EXPANDER(box1)) {
box1 = gtk_expander_get_label_widget(GTK_EXPANDER(box1));
}
if(GTK_IS_EXPANDER(box2)) {
box2 = gtk_expander_get_label_widget(GTK_EXPANDER(box2));
}
const gchar* text1 = wofi_property_box_get_property(WOFI_PROPERTY_BOX(box1), "filter");
const gchar* text2 = wofi_property_box_get_property(WOFI_PROPERTY_BOX(box2), "filter");
2020-02-07 00:47:59 -05:00
uint64_t index1 = strtol(wofi_property_box_get_property(WOFI_PROPERTY_BOX(box1), "index"), NULL, 10);
uint64_t index2 = strtol(wofi_property_box_get_property(WOFI_PROPERTY_BOX(box2), "index"), NULL, 10);
2020-02-07 21:10:06 -05:00
if(text1 == NULL || text2 == NULL) {
return index1 - index2;
}
if(filter == NULL || strcmp(filter, "") == 0) {
2020-02-07 21:04:37 -05:00
switch(sort_order) {
case SORT_ORDER_DEFAULT:
return index1 - index2;
case SORT_ORDER_ALPHABETICAL:
return strcmp(text1, text2);
}
}
switch(matching) {
case MATCHING_MODE_CONTAINS:
return contains_sort(text1, text2);
case MATCHING_MODE_FUZZY:
return fuzzy_sort(text1, text2);
default:
return 0;
}
}
2020-02-16 00:53:02 -05:00
static void select_first(void) {
GtkFlowBoxChild* child = gtk_flow_box_get_child_at_index(GTK_FLOW_BOX(inner_box), 0);
gtk_widget_grab_focus(GTK_WIDGET(child));
gtk_flow_box_select_child(GTK_FLOW_BOX(inner_box), GTK_FLOW_BOX_CHILD(child));
}
static GdkModifierType get_mask_from_keyval(guint keyval) {
switch(keyval) {
case GDK_KEY_Shift_L:
case GDK_KEY_Shift_R:
return GDK_SHIFT_MASK;
case GDK_KEY_Control_L:
case GDK_KEY_Control_R:
return GDK_CONTROL_MASK;
default:
return 0;
}
}
static GdkModifierType get_mask_from_name(char* name) {
return get_mask_from_keyval(gdk_keyval_from_name(name));
}
static void move_up(void) {
user_moved = true;
gtk_widget_child_focus(window, GTK_DIR_UP);
}
static void move_down(void) {
user_moved = true;
if(outer_orientation == GTK_ORIENTATION_VERTICAL) {
if(gtk_widget_has_focus(entry) || gtk_widget_has_focus(scroll)) {
select_first();
return;
}
}
gtk_widget_child_focus(window, GTK_DIR_DOWN);
}
static void move_left(void) {
user_moved = true;
gtk_widget_child_focus(window, GTK_DIR_LEFT);
}
static void move_right(void) {
user_moved = true;
if(outer_orientation == GTK_ORIENTATION_HORIZONTAL) {
if(gtk_widget_has_focus(entry) || gtk_widget_has_focus(scroll)) {
select_first();
return;
}
}
gtk_widget_child_focus(window, GTK_DIR_RIGHT);
}
static void move_forward(void) {
user_moved = true;
if(gtk_widget_has_focus(entry) || gtk_widget_has_focus(scroll)) {
select_first();
return;
}
gtk_widget_child_focus(window, GTK_DIR_TAB_FORWARD);
}
static void move_backward(void) {
user_moved = true;
gtk_widget_child_focus(window, GTK_DIR_TAB_BACKWARD);
}
static void do_exit(void) {
exit(1);
}
static void do_key_action(GdkEvent* event, char* mod, void (*action)(void)) {
if(mod != NULL) {
GdkModifierType mask = get_mask_from_name(mod);
if((event->key.state & mask) == mask) {
event->key.state &= ~mask;
action();
}
} else {
action();
}
}
static bool has_mod(guint state) {
return (state & GDK_SHIFT_MASK) == GDK_SHIFT_MASK || (state & GDK_CONTROL_MASK) == GDK_CONTROL_MASK;
}
static gboolean key_press(GtkWidget* widget, GdkEvent* event, gpointer data) {
2019-08-17 21:19:32 -04:00
(void) widget;
(void) data;
2020-02-16 00:53:02 -05:00
gchar* name = gdk_keyval_name(event->key.keyval);
bool printable = strlen(name) == 1 && isprint(name[0]) && !has_mod(event->key.state);
2020-02-16 00:53:02 -05:00
if(gtk_widget_has_focus(entry) && printable) {
return FALSE;
}
if(event->key.keyval == gdk_keyval_from_name(key_up)) {
do_key_action(event, mod_up, move_up);
2020-02-16 00:53:02 -05:00
} else if(event->key.keyval == gdk_keyval_from_name(key_down)) {
do_key_action(event, mod_down, move_down);
2020-02-16 00:53:02 -05:00
} else if(event->key.keyval == gdk_keyval_from_name(key_left)) {
do_key_action(event, mod_left, move_left);
2020-02-16 00:53:02 -05:00
} else if(event->key.keyval == gdk_keyval_from_name(key_right)) {
do_key_action(event, mod_right, move_right);
2020-02-16 00:53:02 -05:00
} else if(event->key.keyval == gdk_keyval_from_name(key_forward)) {
do_key_action(event, mod_forward, move_forward);
2020-02-16 00:53:02 -05:00
} else if(event->key.keyval == gdk_keyval_from_name(key_backward)) {
do_key_action(event, mod_backward, move_backward);
2020-02-16 00:53:02 -05:00
} else if(event->key.keyval == gdk_keyval_from_name(key_submit)) {
mod_shift = (event->key.state & GDK_SHIFT_MASK) == GDK_SHIFT_MASK;
mod_ctrl = (event->key.state & GDK_CONTROL_MASK) == GDK_CONTROL_MASK;
if(mod_shift) {
event->key.state &= ~GDK_SHIFT_MASK;
}
if(mod_ctrl) {
event->key.state &= ~GDK_CONTROL_MASK;
}
if(gtk_widget_has_focus(scroll)) {
gtk_entry_grab_focus_without_selecting(GTK_ENTRY(entry));
}
2020-02-16 00:53:02 -05:00
GList* children = gtk_flow_box_get_selected_children(GTK_FLOW_BOX(inner_box));
if(gtk_widget_has_focus(entry)) {
g_signal_emit_by_name(entry, "activate", entry, NULL);
} else if(gtk_widget_has_focus(inner_box) || (children->data != NULL && gtk_widget_has_focus(children->data))) {
if(children->data != NULL) {
g_signal_emit_by_name(children->data, "activate", children->data, NULL);
}
}
2020-02-16 00:53:02 -05:00
g_list_free(children);
} else if(event->key.keyval == gdk_keyval_from_name(key_exit)) {
do_key_action(event, mod_exit, do_exit);
2020-02-16 00:53:02 -05:00
} else if(event->key.keyval == GDK_KEY_Shift_L || event->key.keyval == GDK_KEY_Control_L) {
} else if(event->key.keyval == GDK_KEY_Shift_R || event->key.keyval == GDK_KEY_Control_R) {
} else {
if(!gtk_widget_has_focus(entry)) {
gtk_entry_grab_focus_without_selecting(GTK_ENTRY(entry));
}
2020-02-16 00:53:02 -05:00
return FALSE;
2019-08-17 21:19:32 -04:00
}
2020-02-16 00:53:02 -05:00
return TRUE;
2019-08-17 21:19:32 -04:00
}
static gboolean focus(GtkWidget* widget, GdkEvent* event, gpointer data) {
(void) data;
if(event->focus_change.in) {
gtk_widget_set_state_flags(widget, GTK_STATE_FLAG_FOCUSED, TRUE);
} else {
gtk_widget_set_state_flags(widget, GTK_STATE_FLAG_NORMAL, TRUE);
}
return FALSE;
}
static void* get_plugin_proc(const char* prefix, const char* suffix) {
char* proc_name = utils_concat(3, "wofi_", prefix, suffix);
void* proc = dlsym(RTLD_DEFAULT, proc_name);
free(proc_name);
return proc;
}
static void* load_mode(char* _mode, struct mode* mode_ptr, struct map* props) {
char* dso = strstr(_mode, ".so");
mode_ptr->name = strdup(_mode);
void (*init)(struct mode* _mode, struct map* props);
const char** (*get_arg_names)(void);
size_t (*get_arg_count)(void);
bool (*no_entry)(void);
if(dso == NULL) {
init = get_plugin_proc(_mode, "_init");
get_arg_names = get_plugin_proc(_mode, "_get_arg_names");
get_arg_count = get_plugin_proc(_mode, "_get_arg_count");
mode_ptr->mode_exec = get_plugin_proc(_mode, "_exec");
mode_ptr->mode_get_widget = get_plugin_proc(_mode, "_get_widget");
no_entry = get_plugin_proc(_mode, "_no_entry");
} else {
char* plugins_dir = utils_concat(2, config_dir, "/plugins/");
char* full_name = utils_concat(2, plugins_dir, _mode);
void* plugin = dlopen(full_name, RTLD_LAZY | RTLD_LOCAL);
free(full_name);
free(plugins_dir);
init = dlsym(plugin, "init");
get_arg_names = dlsym(plugin, "get_arg_names");
get_arg_count = dlsym(plugin, "get_arg_count");
mode_ptr->mode_exec = dlsym(plugin, "exec");
mode_ptr->mode_get_widget = dlsym(plugin, "get_widget");
no_entry = dlsym(plugin, "no_entry");
}
const char** arg_names = NULL;
size_t arg_count = 0;
if(get_arg_names != NULL && get_arg_count != NULL) {
arg_names = get_arg_names();
arg_count = get_arg_count();
}
if(mode == NULL && no_entry != NULL && no_entry()) {
mode = _mode;
}
for(size_t count = 0; count < arg_count; ++count) {
const char* arg = arg_names[count];
char* full_name = utils_concat(3, _mode, "-", arg);
map_put(props, arg, config_get(config, full_name, NULL));
free(full_name);
}
return init;
}
static struct mode* add_mode(char* _mode) {
struct mode* mode_ptr = calloc(1, sizeof(struct mode));
struct map* props = map_init();
void (*init)(struct mode* _mode, struct map* props) = load_mode(_mode, mode_ptr, props);
if(init == NULL) {
free(mode_ptr->name);
free(mode_ptr);
map_free(props);
mode_ptr = calloc(1, sizeof(struct mode));
props = map_init();
init = load_mode("external", mode_ptr, props);
map_put(props, "exec", _mode);
if(init == NULL) {
fprintf(stderr, "I would love to show %s but Idk what it is\n", _mode);
exit(1);
}
}
map_put_void(modes, _mode, mode_ptr);
init(mode_ptr, props);
map_free(props);
return mode_ptr;
}
static void* start_thread(void* data) {
char* mode = data;
struct wl_list* modes = malloc(sizeof(struct wl_list));
wl_list_init(modes);
if(strchr(mode, ',') != NULL) {
char* save_ptr;
char* str = strtok_r(mode, ",", &save_ptr);
do {
struct mode* mode_ptr = add_mode(str);
wl_list_insert(modes, &mode_ptr->link);
} while((str = strtok_r(NULL, ",", &save_ptr)) != NULL);
} else {
struct mode* mode_ptr = add_mode(mode);
wl_list_insert(modes, &mode_ptr->link);
}
gdk_threads_add_idle(insert_all_widgets, modes);
return NULL;
}
static void parse_mods(char** key, char** mod) {
char* hyphen = strchr(*key, '-');
if(hyphen != NULL) {
*hyphen = 0;
guint key1 = gdk_keyval_from_name(*key);
guint key2 = gdk_keyval_from_name(hyphen + 1);
if(get_mask_from_keyval(key1) != 0) {
*mod = *key;
*key = hyphen + 1;
} else if(get_mask_from_keyval(key2) != 0) {
*mod = hyphen + 1;
} else {
fprintf(stderr, "Neither %s nor %s is a modifier, this is not supported\n", *key, hyphen + 1);
*mod = NULL;
}
} else {
*mod = NULL;
}
}
void wofi_init(struct map* _config) {
config = _config;
2019-08-17 21:19:32 -04:00
width = strtol(config_get(config, "width", "1000"), NULL, 10);
height = strtol(config_get(config, "height", "400"), NULL, 10);
x = map_get(config, "x");
y = map_get(config, "y");
bool normal_window = strcmp(config_get(config, "normal_window", "false"), "true") == 0;
char* mode = map_get(config, "mode");
GtkOrientation orientation = config_get_mnemonic(config, "orientation", "vertical", 2, "vertical", "horizontal");
outer_orientation = config_get_mnemonic(config, "orientation", "vertical", 2, "horizontal", "vertical");
GtkAlign halign = config_get_mnemonic(config, "halign", "fill", 4, "fill", "start", "end", "center");
2019-12-23 04:27:49 -05:00
content_halign = config_get_mnemonic(config, "content_halign", "fill", 4, "fill", "start", "end", "center");
char* default_valign = "start";
if(outer_orientation == GTK_ORIENTATION_HORIZONTAL) {
default_valign = "center";
}
GtkAlign valign = config_get_mnemonic(config, "valign", default_valign, 4, "fill", "start", "end", "center");
2019-08-17 21:19:32 -04:00
char* prompt = config_get(config, "prompt", mode);
uint64_t filter_rate = strtol(config_get(config, "filter_rate", "100"), NULL, 10);
allow_images = strcmp(config_get(config, "allow_images", "false"), "true") == 0;
2019-08-28 03:58:45 -04:00
allow_markup = strcmp(config_get(config, "allow_markup", "false"), "true") == 0;
2019-08-28 20:36:20 -04:00
image_size = strtol(config_get(config, "image_size", "32"), NULL, 10);
cache_file = map_get(config, "cache_file");
config_dir = map_get(config, "config_dir");
terminal = map_get(config, "term");
2019-10-23 00:19:57 -04:00
char* password_char = map_get(config, "password_char");
exec_search = strcmp(config_get(config, "exec_search", "false"), "true") == 0;
2019-11-18 16:42:40 -05:00
bool hide_scroll = strcmp(config_get(config, "hide_scroll", "false"), "true") == 0;
2019-11-21 04:01:27 -05:00
matching = config_get_mnemonic(config, "matching", "contains", 2, "contains", "fuzzy");
2019-11-25 17:56:46 -05:00
insensitive = strcmp(config_get(config, "insensitive", "false"), "true") == 0;
parse_search = strcmp(config_get(config, "parse_search", "false"), "true") == 0;
2020-01-07 21:30:34 -05:00
location = config_get_mnemonic(config, "location", "center", 18,
"center", "top_left", "top", "top_right", "right", "bottom_right", "bottom", "bottom_left", "left",
"0", "1", "2", "3", "4", "5", "6", "7", "8");
2020-01-10 17:34:49 -05:00
no_actions = strcmp(config_get(config, "no_actions", "false"), "true") == 0;
2020-02-08 21:04:38 -05:00
lines = strtol(config_get(config, "lines", "0"), NULL, 10);
2020-02-06 21:22:50 -05:00
columns = strtol(config_get(config, "columns", "1"), NULL, 10);
2020-02-07 21:04:37 -05:00
sort_order = config_get_mnemonic(config, "sort_order", "default", 2, "default", "alphabetical");
2020-02-16 00:53:02 -05:00
key_up = config_get(config, "key_up", "Up");
key_down = config_get(config, "key_down", "Down");
key_left = config_get(config, "key_left", "Left");
key_right = config_get(config, "key_right", "Right");
key_forward = config_get(config, "key_forward", "Tab");
key_backward = config_get(config, "key_backward", "ISO_Left_Tab");
key_submit = config_get(config, "key_submit", "Return");
key_exit = config_get(config, "key_exit", "Escape");
parse_mods(&key_up, &mod_up);
parse_mods(&key_down, &mod_down);
parse_mods(&key_left, &mod_left);
parse_mods(&key_right, &mod_right);
parse_mods(&key_forward, &mod_forward);
parse_mods(&key_backward, &mod_backward);
parse_mods(&key_exit, &mod_exit);
modes = map_init_void();
2019-08-17 21:19:32 -04:00
2020-02-03 01:29:44 -05:00
if(lines > 0) {
2020-02-08 21:04:38 -05:00
height = 1;
2020-02-03 01:29:44 -05:00
}
2019-08-17 21:19:32 -04:00
window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
gtk_widget_realize(window);
gtk_widget_set_name(window, "window");
gtk_window_set_default_size(GTK_WINDOW(window), width, height);
gtk_window_resize(GTK_WINDOW(window), width, height);
gtk_window_set_resizable(GTK_WINDOW(window), FALSE);
gtk_window_set_decorated(GTK_WINDOW(window), FALSE);
if(!normal_window) {
GdkDisplay* disp = gdk_display_get_default();
2020-02-08 21:04:38 -05:00
wl = gdk_wayland_display_get_wl_display(disp);
struct wl_registry* registry = wl_display_get_registry(wl);
struct wl_registry_listener listener = {
.global = add_interface,
.global_remove = nop
};
wl_registry_add_listener(registry, &listener, NULL);
wl_display_roundtrip(wl);
GdkWindow* gdk_win = gtk_widget_get_window(window);
gdk_wayland_window_set_use_custom_surface(gdk_win);
2020-02-08 21:04:38 -05:00
wl_surface = gdk_wayland_window_get_wl_surface(gdk_win);
wlr_surface = zwlr_layer_shell_v1_get_layer_surface(shell, wl_surface, NULL, ZWLR_LAYER_SHELL_V1_LAYER_TOP, "wofi");
struct zwlr_layer_surface_v1_listener* surface_listener = malloc(sizeof(struct zwlr_layer_surface_v1_listener));
surface_listener->configure = config_surface;
surface_listener->closed = nop;
2020-02-08 21:04:38 -05:00
zwlr_layer_surface_v1_add_listener(wlr_surface, surface_listener, NULL);
wl_surface_commit(wl_surface);
wl_display_roundtrip(wl);
}
2019-08-17 21:19:32 -04:00
outer_box = gtk_box_new(outer_orientation, 0);
gtk_widget_set_name(outer_box, "outer-box");
gtk_container_add(GTK_CONTAINER(window), outer_box);
entry = gtk_search_entry_new();
2020-02-03 01:29:44 -05:00
2019-08-17 21:19:32 -04:00
gtk_widget_set_name(entry, "input");
gtk_entry_set_placeholder_text(GTK_ENTRY(entry), prompt);
gtk_container_add(GTK_CONTAINER(outer_box), entry);
2019-10-23 00:19:57 -04:00
if(password_char != NULL) {
gtk_entry_set_visibility(GTK_ENTRY(entry), FALSE);
gtk_entry_set_invisible_char(GTK_ENTRY(entry), password_char[0]);
}
2019-08-17 21:19:32 -04:00
scroll = gtk_scrolled_window_new(NULL, NULL);
2019-08-17 21:19:32 -04:00
gtk_widget_set_name(scroll, "scroll");
gtk_container_add(GTK_CONTAINER(outer_box), scroll);
2019-08-17 21:19:32 -04:00
gtk_widget_set_size_request(scroll, width, height);
2019-11-18 16:42:40 -05:00
if(hide_scroll) {
gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scroll), GTK_POLICY_EXTERNAL, GTK_POLICY_EXTERNAL);
}
2019-08-17 21:19:32 -04:00
inner_box = gtk_flow_box_new();
2020-02-06 21:22:50 -05:00
gtk_flow_box_set_max_children_per_line(GTK_FLOW_BOX(inner_box), columns);
gtk_orientable_set_orientation(GTK_ORIENTABLE(inner_box), orientation);
gtk_widget_set_halign(inner_box, halign);
gtk_widget_set_valign(inner_box, valign);
2019-08-17 21:19:32 -04:00
gtk_widget_set_name(inner_box, "inner-box");
gtk_flow_box_set_activate_on_single_click(GTK_FLOW_BOX(inner_box), FALSE);
GtkWidget* wrapper_box = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
gtk_box_set_homogeneous(GTK_BOX(wrapper_box), TRUE);
gtk_container_add(GTK_CONTAINER(wrapper_box), inner_box);
gtk_container_add(GTK_CONTAINER(scroll), wrapper_box);
2019-08-17 21:19:32 -04:00
2019-11-21 04:01:27 -05:00
switch(matching) {
case MATCHING_MODE_CONTAINS:
gtk_flow_box_set_filter_func(GTK_FLOW_BOX(inner_box), do_filter, NULL, NULL);
gtk_flow_box_set_sort_func(GTK_FLOW_BOX(inner_box), do_sort, NULL, NULL);
2019-11-21 04:01:27 -05:00
break;
case MATCHING_MODE_FUZZY:
gtk_flow_box_set_sort_func(GTK_FLOW_BOX(inner_box), do_sort, NULL, NULL);
break;
}
2019-08-17 21:19:32 -04:00
g_signal_connect(inner_box, "child-activated", G_CALLBACK(activate_item), NULL);
g_signal_connect(inner_box, "selected-children-changed", G_CALLBACK(select_item), NULL);
g_signal_connect(entry, "activate", G_CALLBACK(activate_search), NULL);
g_signal_connect(window, "key-press-event", G_CALLBACK(key_press), NULL);
g_signal_connect(window, "focus-in-event", G_CALLBACK(focus), NULL);
g_signal_connect(window, "focus-out-event", G_CALLBACK(focus), NULL);
2019-08-17 21:19:32 -04:00
g_timeout_add(filter_rate, do_search, NULL);
pthread_t thread;
pthread_create(&thread, NULL, start_thread, mode);
gtk_widget_grab_focus(scroll);
gtk_window_set_title(GTK_WINDOW(window), prompt);
gtk_widget_show_all(window);
2019-08-17 21:19:32 -04:00
}