mirror of
https://github.com/transmission/transmission
synced 2024-12-26 09:37:56 +00:00
c75c6bf5c8
* 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
46 lines
1.2 KiB
C++
46 lines
1.2 KiB
C++
// This file Copyright © 2022 Mnemosyne LLC.
|
|
// It may be used under GPLv2 (SPDX: GPL-2.0-only), GPLv3 (SPDX: GPL-3.0-only),
|
|
// or any future license endorsed by Mnemosyne LLC.
|
|
// License text can be found in the licenses/ folder.
|
|
|
|
#pragma once
|
|
|
|
#include <list>
|
|
#include <memory>
|
|
#include <string>
|
|
|
|
#include <gtkmm.h>
|
|
|
|
#include <libtransmission/tr-macros.h>
|
|
|
|
#include "Utils.h"
|
|
|
|
class PathButton : public IF_GTKMM4(Gtk::Button, Gtk::FileChooserButton)
|
|
{
|
|
using BaseWidgetType = IF_GTKMM4(Gtk::Button, Gtk::FileChooserButton);
|
|
|
|
public:
|
|
PathButton();
|
|
PathButton(BaseObjectType* cast_item, Glib::RefPtr<Gtk::Builder> const& builder);
|
|
~PathButton() override;
|
|
|
|
TR_DISABLE_COPY_MOVE(PathButton)
|
|
|
|
void set_shortcut_folders(std::list<std::string> const& value);
|
|
|
|
#if GTKMM_CHECK_VERSION(4, 0, 0)
|
|
std::string get_filename() const;
|
|
void set_filename(std::string const& value);
|
|
|
|
void add_filter(Glib::RefPtr<Gtk::FileFilter> const& value);
|
|
|
|
Glib::PropertyProxy<Gtk::FileChooser::Action> property_action();
|
|
Glib::PropertyProxy<Glib::ustring> property_title();
|
|
|
|
sigc::signal<void()>& signal_selection_changed();
|
|
#endif
|
|
|
|
private:
|
|
class Impl;
|
|
std::unique_ptr<Impl> const impl_;
|
|
};
|