10#ifndef __UTILS_GTK_H__
11#define __UTILS_GTK_H__
13#include "zrythm-config.h"
17#include "gui/backend/gtk_widgets/gtk_wrapper.h"
27#define DEFAULT_CLIPBOARD gdk_display_get_clipboard (gdk_display_get_default ())
29#define CREATE_MIDI_LEARN_MENU_ITEM(action) \
30 z_gtk_create_menu_item (_ ("MIDI learn"), "signal-midi", action)
32#define CREATE_CUT_MENU_ITEM(action) \
33 z_gtk_create_menu_item (_ ("Cu_t"), "edit-cut", action)
35#define CREATE_COPY_MENU_ITEM(action) \
36 z_gtk_create_menu_item (_ ("_Copy"), "edit-copy", action)
38#define CREATE_PASTE_MENU_ITEM(action) \
39 z_gtk_create_menu_item (_ ("_Paste"), "edit-paste", action)
41#define CREATE_DELETE_MENU_ITEM(action) \
42 z_gtk_create_menu_item (_ ("_Delete"), "edit-delete", action)
44#define CREATE_CLEAR_SELECTION_MENU_ITEM(action) \
45 z_gtk_create_menu_item ( \
46 _ ("Cle_ar Selection"), "edit-clear", action)
48#define CREATE_SELECT_ALL_MENU_ITEM(action) \
49 z_gtk_create_menu_item (_ ("Select A_ll"), "edit-select-all", action)
51#define CREATE_DUPLICATE_MENU_ITEM(action) \
52 z_gtk_create_menu_item (_ ("Duplicate"), "edit-duplicate", action)
54#define CREATE_MUTE_MENU_ITEM(action) \
55 z_gtk_create_menu_item (_ ("Mute"), "mute", action)
57#define CREATE_UNMUTE_MENU_ITEM(action) \
58 z_gtk_create_menu_item (_ ("Unmute"), nullptr, action)
60#define z_gtk_assistant_set_current_page_complete(assistant, complete) \
61 gtk_assistant_set_page_complete ( \
62 GTK_ASSISTANT (assistant), \
63 gtk_assistant_get_nth_page ( \
64 GTK_ASSISTANT (assistant), \
65 gtk_assistant_get_current_page (GTK_ASSISTANT (assistant))), \
68#define Z_GDK_RGBA_INIT(r, g, b, a) \
69 { .red = static_cast<float> (r), \
70 .green = static_cast<float> (g), \
71 .blue = static_cast<float> (b), \
72 .alpha = static_cast<float> (a) }
74#define Z_GDK_RECTANGLE_INIT(_x, _y, _w, _h) \
75 { .x = _x, .y = _y, .width = _w, .height = _h }
77#define Z_GDK_RECTANGLE_INIT_UNIT(_x, _y) \
78 { .x = _x, .y = _y, .width = 1, .height = 1 }
80#define Z_GRAPHENE_RECT_INIT(_x, _y, _w, _h) \
82 .origin = { .x = (_x), .y = (_y) }, .size = { \
88#define Z_GRAPHENE_POINT_INIT(_x, _y) \
89 { .x = static_cast<float> (_x), .y = static_cast<float> (_y) }
91#define Z_GRAPHENE_SIZE_INIT(_w, _h) \
92 { .width = static_cast<float> (_w), .height = static_cast<float> (_h) }
98typedef struct _ZGObjectImpl
100 GTypeInstance g_type_instance;
119static inline GtkWidget *
120z_gtk_notebook_get_current_page_widget (GtkNotebook * notebook)
122 return gtk_notebook_get_nth_page (
123 notebook, gtk_notebook_get_current_page (notebook));
126static inline GtkWidget *
127z_gtk_notebook_get_current_tab_label_widget (GtkNotebook * notebook)
129 return gtk_notebook_get_tab_label (
130 notebook, z_gtk_notebook_get_current_page_widget (notebook));
134z_gtk_get_primary_monitor (
void);
137z_gtk_get_primary_monitor_scale_factor (
void);
140z_gtk_get_primary_monitor_refresh_rate (
void);
143z_gtk_is_wayland (
void);
146z_gtk_tree_view_remove_all_columns (GtkTreeView * treeview);
149z_gtk_column_view_remove_all_columns (GtkColumnView * column_view);
152z_gtk_column_view_get_list_store (GtkColumnView * column_view);
161 std::is_pointer_v<
typename std::decay_t<
decltype (items)>::value_type>,
162 "items must be a vector of pointers");
163 std::vector<gpointer> additions (items.begin (), items.end ());
164 g_list_store_splice (
165 store, 0, g_list_model_get_n_items (G_LIST_MODEL (store)),
166 additions.data (), additions.size ());
170z_gtk_widget_remove_all_children (GtkWidget * widget);
173z_gtk_widget_destroy_all_children (GtkWidget * widget);
176z_gtk_widget_remove_children_of_type (GtkWidget * widget, GType type);
179z_gtk_overlay_add_if_not_exists (GtkOverlay * overlay, GtkWidget * widget);
190 GtkOrientation orientation,
207 GtkOrientation orientation,
219 GtkOrientation orientation,
222#define z_gtk_create_menu_item(lbl_name, icn_name, action_name) \
223 z_gtk_create_menu_item_full (lbl_name, icn_name, action_name)
230 const gchar * label_name,
231 const gchar * icon_name,
232 const char * detailed_action);
257 const char * detailed_action,
258 const char * tooltip);
266 GtkActionable * actionable,
267 const char * tooltip);
274z_gtk_tool_button_set_icon_size (
275 GtkToolButton * toolbutton,
276 GtkIconSize icon_size);
282static inline GdkDevice *
283z_gtk_widget_get_device (GtkWidget * widget)
285 return (gdk_seat_get_pointer (
286 gdk_display_get_default_seat (gtk_widget_get_display (widget))));
290static inline GdkWindow *
291z_gtk_widget_get_root_gdk_window (
295 z_gtk_widget_get_screen (widget);
297 gdk_screen_get_root_window (screen);
303z_gtk_widget_get_global_coordinates (
309 z_gtk_widget_get_device (widget);
311 z_gtk_widget_get_root_gdk_window (widget);
312 gdk_window_get_device_position (
313 win, dev, x, y,
nullptr);
317z_gtk_widget_get_global_coordinates_double (
323 z_gtk_widget_get_device (widget);
325 z_gtk_widget_get_root_gdk_window (widget);
326 gdk_window_get_device_position_double (
327 win, dev, x, y,
nullptr);
334z_gtk_warp_cursor_to (
335 GtkWidget * widget,
int x,
int y)
338 z_gtk_widget_get_device (widget);
340 z_gtk_widget_get_screen (widget);
341 gdk_device_warp (dev, screen, x, y);
345static inline GdkSurface *
346z_gtk_widget_get_surface (GtkWidget * widget)
348 GtkNative * native = gtk_widget_get_native (widget);
349 return gtk_native_get_surface (native);
359z_gtk_widget_get_mask (GtkWidget * widget, GdkModifierType * mask)
361 gdk_surface_get_device_position (
362 z_gtk_widget_get_surface (widget), z_gtk_widget_get_device (widget),
363 nullptr,
nullptr, mask);
370z_gtk_keyval_is_alt (
const guint keyval)
372 return keyval == GDK_KEY_Alt_L || keyval == GDK_KEY_Alt_R
373 || keyval == GDK_KEY_Meta_L || keyval == GDK_KEY_Meta_R;
380z_gtk_keyval_is_ctrl (
const guint keyval)
382 return keyval == GDK_KEY_Control_L || keyval == GDK_KEY_Control_R;
389z_gtk_keyval_is_arrow (
const guint keyval)
391 return keyval == GDK_KEY_Left || keyval == GDK_KEY_Right
392 || keyval == GDK_KEY_Down || keyval == GDK_KEY_Up;
399z_gtk_keyval_is_shift (
const guint keyval)
401 return keyval == GDK_KEY_Shift_L || keyval == GDK_KEY_Shift_R;
405z_gtk_keyval_is_menu (
const guint keyval)
407 return keyval == GDK_KEY_Menu;
439z_gtk_flow_box_get_selected_child (GtkFlowBox * self);
448GtkSourceLanguageManager *
449z_gtk_source_language_manager_get (
void);
458 GtkNotebook * notebook,
459 GtkWindow * parent_window);
488 char ** option_values,
491 bool accept_fallback);
502 GtkActionable * actionable,
503 GSettings * settings,
507z_gtk_is_event_button (GdkEvent * ev);
515 GtkScrolledWindow * scroll,
516 graphene_rect_t * rect);
519z_gtk_graphene_rect_t_to_gdk_rectangle (
521 graphene_rect_t * grect);
524z_gdk_rectangle_to_graphene_rect_t (graphene_rect_t * grect, GdkRectangle * rect);
527z_gdk_rectangle_print (
const GdkRectangle * rect);
547 GtkPopoverMenu * popover_menu,
560z_gtk_icon_theme_get_default (
void);
573z_gtk_window_get_x11_xid (GtkWindow * window);
578z_gtk_window_get_windows_hwnd (GtkWindow * window);
583z_gtk_window_get_nsview (GtkWindow * window);
595 const char * icon_name,
610 const char * icon_name,
616z_gtk_print_graphene_rect (graphene_rect_t * rect);
625z_gtk_get_gsk_renderer_type (
void);
647z_gtk_list_box_remove_all_children (GtkListBox * list_box);
650z_graphene_rect_print (
const graphene_rect_t * rect);
653z_gtk_string_list_new_from_string_array (
654 const char ** strvals,
659z_gtk_get_first_focusable_child (GtkWidget * parent);
662z_gtk_descendant_has_focus (GtkWidget * parent);
665z_gtk_window_make_escapable (GtkWindow * self);
672 GtkSignalListItemFactory * factory,
677z_gtk_drop_down_factory_setup_common (
678 GtkSignalListItemFactory * factory,
683z_gtk_drop_down_factory_setup_common_ellipsized (
684 GtkSignalListItemFactory * factory,
689z_gtk_get_enum_nick (GType type, gint value);
692z_gtk_snapshot_append_color (
693 GtkSnapshot * snapshot,
695 const graphene_rect_t * rect);
void z_gtk_setup_foldable_notebook(GtkNotebook *notebook)
Makes the given notebook foldable.
void z_gtk_generate_screenshot_image(GtkWidget *widget, const char *type, char **option_keys, char **option_values, char **ret_dir, char **ret_path, bool accept_fallback)
Generates a screenshot image for the given widget.
void z_gtk_notebook_make_detachable(GtkNotebook *notebook, GtkWindow *parent_window)
Makes the given GtkNotebook detachable to a new window.
bool z_gtk_activate_dir_link_func(GtkLabel *label, char *uri, void *data)
Callback to use for simple directory links.
int z_gtk_dialog_run(GtkDialog *dialog, bool destroy_on_close)
Mimics the blocking behavior.
char * z_gdk_clipboard_get_text(GdkClipboard *clipboard)
Returns the text on the clipboard, or NULL if there is nothing or the content is not text.
void z_gtk_button_set_emblem(GtkButton *btn, const char *emblem_icon)
Sets the given emblem to the button, or unsets the emblem if emblem_icon is NULL.
GtkToggleButton * z_gtk_toggle_button_new_with_icon(const char *name)
Creates a toggle button with the given icon name.
void z_gtk_actionable_set_action_from_setting(GtkActionable *actionable, GSettings *settings, const char *key)
Sets the action target of the given GtkActionable to be binded to the given setting.
void z_gtk_show_context_menu_from_g_menu(GtkPopoverMenu *popover_menu, double x, double y, GMenu *menu)
The popover must already exist as a children of its intended widget (or a common parent).
GtkButton * z_gtk_button_new_with_icon_and_text(const char *name, const char *text, bool icon_first, GtkOrientation orientation, int spacing)
Creates a button with the given icon name and text.
void z_gtk_widget_set_tooltip_for_action(GtkWidget *widget, const char *detailed_action, const char *tooltip)
Sets the tooltip for the given action on the given widget.
void z_gtk_widget_set_margin(GtkWidget *widget, int margin)
Sets the margin on all 4 sides on the widget.
GtkWidget * z_gtk_widget_find_child_of_type(GtkWidget *widget, GType type)
Recursively searches the children of widget for a child of type type.
gboolean z_gtk_simple_action_shortcut_func(GtkWidget *widget, GVariant *args, gpointer user_data)
A shortcut callback to use for simple actions.
GdkTexture * z_gdk_texture_new_from_icon_name(const char *icon_name, int width, int height, int scale)
Creates a new texture for the given icon scaled at the given width/height.
GdkDragAction z_gtk_drop_target_get_selected_action(GtkDropTarget *drop_target)
Returns the bitmask of the selected action during a drop (eg, GDK_ACTION_COPY).
char * z_gtk_get_tooltip_for_action(const char *detailed_action, const char *tooltip)
Gets the tooltip for the given action on the given widget.
GdkPixbuf * z_gdk_pixbuf_new_from_icon_name(const char *icon_name, int width, int height, int scale, GError **error)
Creates a new pixbuf for the given icon scaled at the given width/height.
void z_gtk_drop_down_list_item_header_setup_common(GtkSignalListItemFactory *factory, GObject *list_item, gpointer user_data)
A common "setup" signal handler for GtkDropDown header factories.
GMenuItem * z_gtk_create_menu_item_full(const gchar *label_name, const gchar *icon_name, const char *detailed_action)
Creates a menu item.
void z_gtk_scrolled_window_get_visible_rect(GtkScrolledWindow *scroll, graphene_rect_t *rect)
Gets the visible rectangle from the scrolled window's adjustments.
void z_gtk_list_store_splice(GListStore *store, auto &items)
Removes all items and re-populates the list store.
GtkWidget * z_gtk_widget_get_nth_child(GtkWidget *widget, int index)
Returns the nth child of a container.
void z_gtk_button_set_icon_name_and_text(GtkButton *btn, const char *name, const char *text, bool icon_first, GtkOrientation orientation, int spacing)
Sets the icon name and optionally text.
void z_gtk_widget_print_hierarchy(GtkWidget *widget)
Prints the widget's hierarchy (parents).
void z_gtk_set_tooltip_for_actionable(GtkActionable *actionable, const char *tooltip)
Sets the tooltip and finds the accel keys and appends them to the tooltip in small text.
GtkToggleButton * z_gtk_toggle_button_new_with_icon_and_text(const char *name, const char *text, bool icon_first, GtkOrientation orientation, int spacing)
Creates a toggle button with the given icon name.
char * z_gtk_text_buffer_get_full_text(GtkTextBuffer *buffer)
Returns the full text contained in the text buffer.
GObject struct (from GObject source code), used where hacks are needed.