mirror of
https://github.com/transmission/transmission
synced 2024-12-26 09:37:56 +00:00
b41501eeb8
* 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.
69 lines
1.9 KiB
C++
69 lines
1.9 KiB
C++
// This file Copyright © 2010-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 <gtkmm.h>
|
|
|
|
#include <libtransmission/tr-macros.h>
|
|
|
|
class Session;
|
|
typedef struct tr_ctor tr_ctor;
|
|
|
|
class TorrentUrlChooserDialog : public Gtk::Dialog
|
|
{
|
|
public:
|
|
TorrentUrlChooserDialog(
|
|
BaseObjectType* cast_item,
|
|
Glib::RefPtr<Gtk::Builder> const& builder,
|
|
Gtk::Window& parent,
|
|
Glib::RefPtr<Session> const& core);
|
|
|
|
TR_DISABLE_COPY_MOVE(TorrentUrlChooserDialog)
|
|
|
|
static std::unique_ptr<TorrentUrlChooserDialog> create(Gtk::Window& parent, Glib::RefPtr<Session> const& core);
|
|
|
|
private:
|
|
void onOpenURLResponse(int response, Gtk::Entry const& entry, Glib::RefPtr<Session> const& core);
|
|
};
|
|
|
|
class TorrentFileChooserDialog : public Gtk::FileChooserDialog
|
|
{
|
|
public:
|
|
TR_DISABLE_COPY_MOVE(TorrentFileChooserDialog)
|
|
|
|
static std::unique_ptr<TorrentFileChooserDialog> create(Gtk::Window& parent, Glib::RefPtr<Session> const& core);
|
|
|
|
protected:
|
|
TorrentFileChooserDialog(Gtk::Window& parent, Glib::RefPtr<Session> const& core);
|
|
|
|
private:
|
|
void onOpenDialogResponse(int response, Glib::RefPtr<Session> const& core);
|
|
};
|
|
|
|
class OptionsDialog : public Gtk::Dialog
|
|
{
|
|
public:
|
|
OptionsDialog(
|
|
BaseObjectType* cast_item,
|
|
Glib::RefPtr<Gtk::Builder> const& builder,
|
|
Gtk::Window& parent,
|
|
Glib::RefPtr<Session> const& core,
|
|
std::unique_ptr<tr_ctor, void (*)(tr_ctor*)> ctor);
|
|
~OptionsDialog() override;
|
|
|
|
TR_DISABLE_COPY_MOVE(OptionsDialog)
|
|
|
|
static std::unique_ptr<OptionsDialog> create(
|
|
Gtk::Window& parent,
|
|
Glib::RefPtr<Session> const& core,
|
|
std::unique_ptr<tr_ctor, void (*)(tr_ctor*)> ctor);
|
|
|
|
private:
|
|
class Impl;
|
|
std::unique_ptr<Impl> const impl_;
|
|
};
|