1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2024-12-22 15:54:57 +00:00
transmission/gtk/PathButton.h
Mike Gelfand 192a76b621
Move GTK compatibility definitions into a separate header (#4493)
* Move GTK compatibility macros into a separate header

* Fix Cairo compatibility checks

* Move Glib-namespaced definitions to GtkCompat header

* Remove unused stringify definitions since we're using fmtlib
2022-12-29 02:42:20 +00:00

57 lines
1.5 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 "GtkCompat.h"
#include <libtransmission/tr-macros.h>
#include <glibmm/propertyproxy.h>
#include <glibmm/refptr.h>
#include <glibmm/ustring.h>
#include <gtkmm/builder.h>
#include <gtkmm/filechooser.h>
#include <gtkmm/filefilter.h>
#if GTKMM_CHECK_VERSION(4, 0, 0)
#include <gtkmm/button.h>
#else
#include <gtkmm/filechooserbutton.h>
#endif
#include <list>
#include <memory>
#include <string>
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_;
};