transmission/gtk/ui/gtk4/FilterBar.ui

35 lines
1.2 KiB
Plaintext
Raw Normal View History

Add support for GTK 4 (#3916) * Make compact mode switch work for both GTK 3 and 4 * Implement GTK 4-specific view gesture handling * Fix torrents view context menu on GTK 4 * Explicitly show/hide menubar on startup/teardown * Switch from `Gtk::Pixbuf` to `Gio::Icon` for views * Support GTK 4 exceptions based on `std::exception` * Fix options menu setup with GTK 4 * Use `delete-event` (GTK 3) and `close-request` (GTK 4) signals to handle window clousure * Add custom file chooser button implementation GTK 4 drops FileChooserButton widget and suggests implementing it using Button. * Add helpers to set X11 hints with GTK 4 * Remove `HigWorkarea` class that's no longer used * Make main menu shortcuts work with GTK 4 * Make drops work in main window and make dialog with GTK 4 * Remove unused `gtr_action_get_widget()` helper * Fix text direction mark setup with GTK 4 (due to switch to enum class) * Fix file tree font size calculation with GTK 4 * Fix crash during shutdown with GTK 4 * Switch from `RadioButton` to `CheckButton` for compatibility with GTK 4 * Fix opening files with GTK 4 * Rework torrent cell renderer to support both GTK 3 and 4 * Disable system tray icon support with GTK 4 * Fix windows positioning with GTK 4 * Fix focus event handling with GTK 4 * Adapt to tree model row/iterator changes in GTK 4 * Adapt to toplevel/root window changes in GTK 4 * Adapt to clipboard changes in GTK 4 * Adapt to icon/theme changes in GTK 4 * Adapt to file/path changes in GTK 4 * Random leftover fixes for GTK 4 compatibility * Clean up unused code * Move GTK 3 *.ui files into a subdirectory * Add GTK 4 *.ui files * Search for both GTK 3 and 4 during configuration
2022-10-08 22:50:03 +00:00
<?xml version="1.0" encoding="UTF-8"?>
<interface domain="transmission-gtk">
<requires lib="gtk" version="4.0"/>
<template class="gtkmm__CustomObject_9FilterBar" parent="GtkBox">
<property name="spacing">3</property>
<child>
<object class="GtkLabel" id="show_label">
<property name="label" translatable="1">_Show:</property>
<property name="use-underline">1</property>
<property name="mnemonic-widget">activity_combo</property>
</object>
</child>
<child>
<object class="GtkComboBox" id="activity_combo">
<property name="hexpand">1</property>
<property name="margin-end">6</property>
</object>
</child>
<child>
<object class="GtkComboBox" id="tracker_combo">
<property name="hexpand">1</property>
<property name="width-request">170</property>
<property name="margin-end">6</property>
</object>
</child>
<child>
<object class="GtkEntry" id="text_entry">
<property name="hexpand">1</property>
<property name="focusable">1</property>
<property name="secondary-icon-name">edit-clear</property>
</object>
</child>
</template>
</interface>