2022-01-20 18:27:56 +00:00
|
|
|
// This file Copyright © 2007-2022 Mnemosyne LLC.
|
|
|
|
// It may be used under GPLv2 (SPDX: GPL-2.0), GPLv3 (SPDX: GPL-3.0),
|
|
|
|
// or any future license endorsed by Mnemosyne LLC.
|
|
|
|
// License text can be found in the licenses/ folder.
|
2007-06-18 03:40:41 +00:00
|
|
|
|
2016-03-29 16:37:21 +00:00
|
|
|
#pragma once
|
2007-06-18 03:40:41 +00:00
|
|
|
|
2021-10-18 20:22:31 +00:00
|
|
|
#include <gtkmm.h>
|
|
|
|
|
2021-11-12 09:12:50 +00:00
|
|
|
#include "Utils.h"
|
|
|
|
|
2021-11-01 00:11:23 +00:00
|
|
|
class Session;
|
2007-06-18 03:40:41 +00:00
|
|
|
|
2021-12-14 08:43:27 +00:00
|
|
|
Glib::RefPtr<Gio::SimpleActionGroup> gtr_actions_init(Glib::RefPtr<Gtk::Builder> const& builder, gpointer callback_user_data);
|
2021-11-01 00:11:23 +00:00
|
|
|
void gtr_actions_set_core(Glib::RefPtr<Session> const& core);
|
2021-12-14 08:43:27 +00:00
|
|
|
void gtr_actions_handler(Glib::ustring const& action_name, gpointer user_data);
|
2021-10-18 20:22:31 +00:00
|
|
|
|
|
|
|
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);
|
2021-11-12 09:12:50 +00:00
|
|
|
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));
|
|
|
|
}
|
2010-01-21 20:51:48 +00:00
|
|
|
|
2021-10-18 20:22:31 +00:00
|
|
|
template<typename T>
|
2021-11-12 09:12:50 +00:00
|
|
|
inline Glib::RefPtr<T> gtr_action_get_object(Glib::ustring const& name)
|
2021-10-18 20:22:31 +00:00
|
|
|
{
|
2021-11-12 09:12:50 +00:00
|
|
|
return gtr_ptr_static_cast<T>(gtr_action_get_object(name));
|
2021-10-18 20:22:31 +00:00
|
|
|
}
|