1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2024-12-26 09:37:56 +00:00
transmission/gtk/FilterBar.h
Mike Gelfand b41501eeb8
Switch to Gtk::Builder for all UI in GTK client (#3781)
* Move CSS definitions to resources

* Add Gtk::Builder helpers

* Switch StatsDialog to Gtk::Builder

* Switch RelocateDialog to Gtk::Builder

* Switch OptionsDialog to Gtk::Builder

* Switch MakeDialog to Gtk::Builder

* Switch FilterBar to Gtk::Builder

* Switch MainWindow to Gtk::Builder

* Switch MessageLogWindow to Gtk::Builder

* Switch DetailsDialog to Gtk::Builder

* Switch PrefsDialog to Gtk::Builder

* Fixup translatable strings

Since this branch was brewing for a while, changes happened in the meantime.
2022-09-08 01:25:04 +03:00

47 lines
1.1 KiB
C++

// This file Copyright © 2012-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 <memory>
#include <glibmm/extraclassinit.h>
#include <gtkmm.h>
#include <libtransmission/tr-macros.h>
typedef struct tr_session tr_session;
class FilterBarExtraInit : public Glib::ExtraClassInit
{
public:
FilterBarExtraInit();
private:
static void class_init(void* klass, void* user_data);
static void instance_init(GTypeInstance* instance, void* klass);
};
class FilterBar
: public FilterBarExtraInit
, public Gtk::Box
{
public:
FilterBar();
FilterBar(
BaseObjectType* cast_item,
Glib::RefPtr<Gtk::Builder> const& builder,
tr_session* session,
Glib::RefPtr<Gtk::TreeModel> const& torrent_model);
~FilterBar() override;
TR_DISABLE_COPY_MOVE(FilterBar)
Glib::RefPtr<Gtk::TreeModel> get_filter_model() const;
private:
class Impl;
std::unique_ptr<Impl> const impl_;
};