mirror of
https://github.com/transmission/transmission
synced 2024-12-27 18:18:10 +00:00
3e072f9bd4
* (C++) Macros should not be used to define constants * (C++) Memory should not be managed manually * (C++) "void*" should not be used in typedefs, member variables, function parameters or return type * (C++) When the "Rule-of-Zero" is not applicable, the "Rule-of-Five" should be followed * (C++) "switch" statements should have "default" clauses * (C++) "explicit" should be used on single-parameter constructors and conversiosn operators * (C++) Non-const global variables should not be used
37 lines
1.1 KiB
C++
37 lines
1.1 KiB
C++
/*
|
|
* This file Copyright (C) 2007-2021 Mnemosyne LLC
|
|
*
|
|
* It may be used under the GNU GPL versions 2 or 3
|
|
* or any future license endorsed by Mnemosyne LLC.
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <gtkmm.h>
|
|
|
|
#include "Utils.h"
|
|
|
|
class Session;
|
|
|
|
Glib::RefPtr<Gio::SimpleActionGroup> gtr_actions_init(Glib::RefPtr<Gtk::Builder> const& builder, gpointer callback_user_data);
|
|
void gtr_actions_set_core(Glib::RefPtr<Session> const& core);
|
|
void gtr_actions_handler(Glib::ustring const& action_name, gpointer user_data);
|
|
|
|
void gtr_action_activate(Glib::ustring const& action_name);
|
|
void gtr_action_set_sensitive(Glib::ustring const& action_name, bool is_sensitive);
|
|
void gtr_action_set_toggled(Glib::ustring const& action_name, bool is_toggled);
|
|
Gtk::Widget* gtr_action_get_widget(Glib::ustring const& name);
|
|
Glib::RefPtr<Glib::Object> gtr_action_get_object(Glib::ustring const& name);
|
|
|
|
template<typename T>
|
|
inline T* gtr_action_get_widget(Glib::ustring const& name)
|
|
{
|
|
return static_cast<T*>(gtr_action_get_widget(name));
|
|
}
|
|
|
|
template<typename T>
|
|
inline Glib::RefPtr<T> gtr_action_get_object(Glib::ustring const& name)
|
|
{
|
|
return gtr_ptr_static_cast<T>(gtr_action_get_object(name));
|
|
}
|