mirror of
https://github.com/transmission/transmission
synced 2025-01-01 12:35:22 +00:00
a0305a3a12
The torrent list hotkeys include `CTR + A` and were always active, swallowing text edit hotkeys in the filter entry. Now they are only active when the torrent list is focused.
44 lines
1.1 KiB
C++
44 lines
1.1 KiB
C++
// This file Copyright © 2005-2022 Transmission authors and contributors.
|
|
// It may be used under the MIT (SPDX: MIT) license.
|
|
// License text can be found in the licenses/ folder.
|
|
|
|
#pragma once
|
|
|
|
#include <memory>
|
|
|
|
#include <glibmm.h>
|
|
#include <gtkmm.h>
|
|
|
|
#include <libtransmission/tr-macros.h>
|
|
|
|
class Session;
|
|
|
|
class MainWindow : public Gtk::ApplicationWindow
|
|
{
|
|
public:
|
|
~MainWindow() override;
|
|
|
|
TR_DISABLE_COPY_MOVE(MainWindow)
|
|
|
|
static std::unique_ptr<MainWindow> create(
|
|
Gtk::Application& app,
|
|
Glib::RefPtr<Gio::ActionGroup> const& actions_window,
|
|
Glib::RefPtr<Gio::ActionGroup> const& actions_torrent,
|
|
Glib::RefPtr<Session> const& core);
|
|
|
|
Glib::RefPtr<Gtk::TreeSelection> get_selection() const;
|
|
|
|
void set_busy(bool isBusy);
|
|
void refresh();
|
|
|
|
protected:
|
|
MainWindow(
|
|
Gtk::Application& app,
|
|
Glib::RefPtr<Gio::ActionGroup> const& actions_window,
|
|
Glib::RefPtr<Gio::ActionGroup> const& actions_torrent,
|
|
Glib::RefPtr<Session> const& core);
|
|
|
|
private:
|
|
class Impl;
|
|
std::unique_ptr<Impl> const impl_;
|
|
};
|