// Generated by gmmproc 2.84.0 -- DO NOT MODIFY! #ifndef _GTKMM_SHORTCUTACTION_H #define _GTKMM_SHORTCUTACTION_H #include #include #include /* Copyright (C) 2020 The gtkmm Development Team * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library. If not, see . */ #include #ifndef DOXYGEN_SHOULD_SKIP_THIS using GtkShortcutAction = struct _GtkShortcutAction; using GtkShortcutActionClass = struct _GtkShortcutActionClass; #endif /* DOXYGEN_SHOULD_SKIP_THIS */ #ifndef DOXYGEN_SHOULD_SKIP_THIS namespace Gtk { class GTKMM_API ShortcutAction_Class; } // namespace Gtk #endif //DOXYGEN_SHOULD_SKIP_THIS #ifndef DOXYGEN_SHOULD_SKIP_THIS using GtkNothingAction = struct _GtkNothingAction; using GtkNothingActionClass = struct _GtkNothingActionClass; #endif /* DOXYGEN_SHOULD_SKIP_THIS */ #ifndef DOXYGEN_SHOULD_SKIP_THIS namespace Gtk { class GTKMM_API NothingAction_Class; } // namespace Gtk #endif //DOXYGEN_SHOULD_SKIP_THIS #ifndef DOXYGEN_SHOULD_SKIP_THIS using GtkCallbackAction = struct _GtkCallbackAction; using GtkCallbackActionClass = struct _GtkCallbackActionClass; #endif /* DOXYGEN_SHOULD_SKIP_THIS */ #ifndef DOXYGEN_SHOULD_SKIP_THIS namespace Gtk { class GTKMM_API CallbackAction_Class; } // namespace Gtk #endif //DOXYGEN_SHOULD_SKIP_THIS #ifndef DOXYGEN_SHOULD_SKIP_THIS using GtkMnemonicAction = struct _GtkMnemonicAction; using GtkMnemonicActionClass = struct _GtkMnemonicActionClass; #endif /* DOXYGEN_SHOULD_SKIP_THIS */ #ifndef DOXYGEN_SHOULD_SKIP_THIS namespace Gtk { class GTKMM_API MnemonicAction_Class; } // namespace Gtk #endif //DOXYGEN_SHOULD_SKIP_THIS #ifndef DOXYGEN_SHOULD_SKIP_THIS using GtkActivateAction = struct _GtkActivateAction; using GtkActivateActionClass = struct _GtkActivateActionClass; #endif /* DOXYGEN_SHOULD_SKIP_THIS */ #ifndef DOXYGEN_SHOULD_SKIP_THIS namespace Gtk { class GTKMM_API ActivateAction_Class; } // namespace Gtk #endif //DOXYGEN_SHOULD_SKIP_THIS #ifndef DOXYGEN_SHOULD_SKIP_THIS using GtkSignalAction = struct _GtkSignalAction; using GtkSignalActionClass = struct _GtkSignalActionClass; #endif /* DOXYGEN_SHOULD_SKIP_THIS */ #ifndef DOXYGEN_SHOULD_SKIP_THIS namespace Gtk { class GTKMM_API SignalAction_Class; } // namespace Gtk #endif //DOXYGEN_SHOULD_SKIP_THIS #ifndef DOXYGEN_SHOULD_SKIP_THIS using GtkNamedAction = struct _GtkNamedAction; using GtkNamedActionClass = struct _GtkNamedActionClass; #endif /* DOXYGEN_SHOULD_SKIP_THIS */ #ifndef DOXYGEN_SHOULD_SKIP_THIS namespace Gtk { class GTKMM_API NamedAction_Class; } // namespace Gtk #endif //DOXYGEN_SHOULD_SKIP_THIS namespace Gtk { class GTKMM_API Widget; /** Tracking if shortcuts should be activated. * * %Gtk::ShortcutAction is the object used to describe what a Gtk::Shortcut should * do when triggered. To activate a %ShortcutAction manually, activate() can be called. * * ShortcutActions contain methods that allow easy presentation to end * users as well as being printed for debugging. * * All ShortcutActions are immutable, you can only specify their properties * during construction. If you want to change an action, you have to replace it * with a new one. If you need to pass arguments to an action, these are specified * by the higher-level Gtk::Shortcut object. * * GTK provides various actions: * * - Gtk::MnemonicAction: a shortcut action that calls Gtk::Widget::mnemonic_activate() * - Gtk::CallbackAction: a shortcut action that invokes a given callback * - Gtk::SignalAction: a shortcut action that emits a given signal * - Gtk::ActivateAction: a shortcut action that calls Gtk::Widget::activate() * - Gtk::NamedAction: a shortcut action that calls Gtk::Widget::activate_action() * - Gtk::NothingAction: a shortcut action that does nothing * * @see Gtk::Shortcut * @ingroup Gestures * @newin{3,98} */ class GTKMM_API ShortcutAction : public Glib::Object { #ifndef DOXYGEN_SHOULD_SKIP_THIS public: using CppObjectType = ShortcutAction; using CppClassType = ShortcutAction_Class; using BaseObjectType = GtkShortcutAction; using BaseClassType = GtkShortcutActionClass; // noncopyable ShortcutAction(const ShortcutAction&) = delete; ShortcutAction& operator=(const ShortcutAction&) = delete; private: friend class ShortcutAction_Class; static CppClassType shortcutaction_class_; protected: explicit ShortcutAction(const Glib::ConstructParams& construct_params); explicit ShortcutAction(GtkShortcutAction* castitem); #endif /* DOXYGEN_SHOULD_SKIP_THIS */ public: ShortcutAction(ShortcutAction&& src) noexcept; ShortcutAction& operator=(ShortcutAction&& src) noexcept; ~ShortcutAction() noexcept override; /** Get the GType for this class, for use with the underlying GObject type system. */ static GType get_type() G_GNUC_CONST; #ifndef DOXYGEN_SHOULD_SKIP_THIS static GType get_base_type() G_GNUC_CONST; #endif ///Provides access to the underlying C GObject. GtkShortcutAction* gobj() { return reinterpret_cast(gobject_); } ///Provides access to the underlying C GObject. const GtkShortcutAction* gobj() const { return reinterpret_cast(gobject_); } ///Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs. GtkShortcutAction* gobj_copy(); private: protected: ShortcutAction(); public: /** @addtogroup gtkmmEnums gtkmm Enums and Flags */ /** * @var Flags::EXCLUSIVE * The action is the only * action that can be activated. If this flag is not set, * a future activation may select a different action. */ /** Flags that can be passed to action activation. * * More flags may be added in the future. * * @ingroup gtkmmEnums * @par Bitwise operators: * ShortcutAction::Flags operator|(ShortcutAction::Flags, ShortcutAction::Flags)
* ShortcutAction::Flags operator&(ShortcutAction::Flags, ShortcutAction::Flags)
* ShortcutAction::Flags operator^(ShortcutAction::Flags, ShortcutAction::Flags)
* ShortcutAction::Flags operator~(ShortcutAction::Flags)
* ShortcutAction::Flags& operator|=(ShortcutAction::Flags&, ShortcutAction::Flags)
* ShortcutAction::Flags& operator&=(ShortcutAction::Flags&, ShortcutAction::Flags)
* ShortcutAction::Flags& operator^=(ShortcutAction::Flags&, ShortcutAction::Flags)
*/ enum class Flags { EXCLUSIVE = 1 << 0 }; /** Tries to parse the given string into an action. * * On success, the parsed action is returned. When parsing * failed, nullptr is returned. * * The accepted strings are: * * - `nothing`, for `Gtk::NothingAction` * - `activate`, for `Gtk::ActivateAction` * - `mnemonic-activate`, for `Gtk::MnemonicAction` * - `action(NAME)`, for a `Gtk::NamedAction` for the action named `NAME` * - `signal(NAME)`, for a `Gtk::SignalAction` for the signal `NAME` * * @param string The string to parse. * @return A new `Gtk::ShortcutAction`. */ static Glib::RefPtr parse_string(const Glib::ustring& string); /** Prints the given action into a human-readable string. * * This is meant for debugging and logging. * The form of the representation may change at any time and is * not guaranteed to stay identical. * * @return A new string. */ Glib::ustring to_string() const; /** Activates the action on the @a widget with the given @a args. * * Note that some actions ignore the passed in @a flags, @a widget or @a args. * * Activation of an action can fail for various reasons. If the action * is not supported by the @a widget, if the @a args don't match the action * or if the activation otherwise had no effect, false will be returned. * * @param flags Flags to activate with. * @param widget Target of the activation. * @param args Arguments to pass. * @return true if this action was activated successfully. */ bool activate(Widget& widget, Flags flags = static_cast(0), const Glib::VariantBase& args = {}); public: public: //C++ methods used to invoke GTK+ virtual functions: protected: //GTK+ Virtual Functions (override these to change behaviour): //Default Signal Handlers:: }; /** A Gtk::ShortcutAction that does nothing. */ class GTKMM_API NothingAction : public ShortcutAction { #ifndef DOXYGEN_SHOULD_SKIP_THIS public: using CppObjectType = NothingAction; using CppClassType = NothingAction_Class; using BaseObjectType = GtkNothingAction; using BaseClassType = GtkNothingActionClass; // noncopyable NothingAction(const NothingAction&) = delete; NothingAction& operator=(const NothingAction&) = delete; private: friend class NothingAction_Class; static CppClassType nothingaction_class_; protected: explicit NothingAction(const Glib::ConstructParams& construct_params); explicit NothingAction(GtkNothingAction* castitem); #endif /* DOXYGEN_SHOULD_SKIP_THIS */ public: NothingAction(NothingAction&& src) noexcept; NothingAction& operator=(NothingAction&& src) noexcept; ~NothingAction() noexcept override; /** Get the GType for this class, for use with the underlying GObject type system. */ static GType get_type() G_GNUC_CONST; #ifndef DOXYGEN_SHOULD_SKIP_THIS static GType get_base_type() G_GNUC_CONST; #endif ///Provides access to the underlying C GObject. GtkNothingAction* gobj() { return reinterpret_cast(gobject_); } ///Provides access to the underlying C GObject. const GtkNothingAction* gobj() const { return reinterpret_cast(gobject_); } ///Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs. GtkNothingAction* gobj_copy(); private: protected: NothingAction(); public: /** Gets the nothing action. * * This is an action that does nothing and where * activating it always fails. * * @return The nothing action. */ static Glib::RefPtr get(); public: public: //C++ methods used to invoke GTK+ virtual functions: protected: //GTK+ Virtual Functions (override these to change behaviour): //Default Signal Handlers:: }; /** A Gtk::ShortcutAction that invokes a callback. */ class GTKMM_API CallbackAction : public ShortcutAction { #ifndef DOXYGEN_SHOULD_SKIP_THIS public: using CppObjectType = CallbackAction; using CppClassType = CallbackAction_Class; using BaseObjectType = GtkCallbackAction; using BaseClassType = GtkCallbackActionClass; // noncopyable CallbackAction(const CallbackAction&) = delete; CallbackAction& operator=(const CallbackAction&) = delete; private: friend class CallbackAction_Class; static CppClassType callbackaction_class_; protected: explicit CallbackAction(const Glib::ConstructParams& construct_params); explicit CallbackAction(GtkCallbackAction* castitem); #endif /* DOXYGEN_SHOULD_SKIP_THIS */ public: CallbackAction(CallbackAction&& src) noexcept; CallbackAction& operator=(CallbackAction&& src) noexcept; ~CallbackAction() noexcept override; /** Get the GType for this class, for use with the underlying GObject type system. */ static GType get_type() G_GNUC_CONST; #ifndef DOXYGEN_SHOULD_SKIP_THIS static GType get_base_type() G_GNUC_CONST; #endif ///Provides access to the underlying C GObject. GtkCallbackAction* gobj() { return reinterpret_cast(gobject_); } ///Provides access to the underlying C GObject. const GtkCallbackAction* gobj() const { return reinterpret_cast(gobject_); } ///Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs. GtkCallbackAction* gobj_copy(); private: public: /** Slot for shortcuts based on user callbacks. * * For instance: * @code * void on_shortcut(Widget& widget, const Glib::VariantBase& args); * @endcode * * @param widget The widget passed to the activation. * @param args The arguments passed to the activation. Can be empty, * if there are no arguments. */ using SlotShortcut = sigc::slot; static Glib::RefPtr create(const SlotShortcut& slot); protected: explicit CallbackAction(const SlotShortcut& slot); public: public: //C++ methods used to invoke GTK+ virtual functions: protected: //GTK+ Virtual Functions (override these to change behaviour): //Default Signal Handlers:: }; /** A Gtk::ShortcutAction that calls Gtk::Widget::mnemonic_activate(). */ class GTKMM_API MnemonicAction : public ShortcutAction { #ifndef DOXYGEN_SHOULD_SKIP_THIS public: using CppObjectType = MnemonicAction; using CppClassType = MnemonicAction_Class; using BaseObjectType = GtkMnemonicAction; using BaseClassType = GtkMnemonicActionClass; // noncopyable MnemonicAction(const MnemonicAction&) = delete; MnemonicAction& operator=(const MnemonicAction&) = delete; private: friend class MnemonicAction_Class; static CppClassType mnemonicaction_class_; protected: explicit MnemonicAction(const Glib::ConstructParams& construct_params); explicit MnemonicAction(GtkMnemonicAction* castitem); #endif /* DOXYGEN_SHOULD_SKIP_THIS */ public: MnemonicAction(MnemonicAction&& src) noexcept; MnemonicAction& operator=(MnemonicAction&& src) noexcept; ~MnemonicAction() noexcept override; /** Get the GType for this class, for use with the underlying GObject type system. */ static GType get_type() G_GNUC_CONST; #ifndef DOXYGEN_SHOULD_SKIP_THIS static GType get_base_type() G_GNUC_CONST; #endif ///Provides access to the underlying C GObject. GtkMnemonicAction* gobj() { return reinterpret_cast(gobject_); } ///Provides access to the underlying C GObject. const GtkMnemonicAction* gobj() const { return reinterpret_cast(gobject_); } ///Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs. GtkMnemonicAction* gobj_copy(); private: protected: MnemonicAction(); public: /** Gets the mnemonic action. * * This is an action that calls Gtk::Widget::mnemonic_activate() * on the given widget upon activation. * * @return The mnemonic action. */ static Glib::RefPtr get(); public: public: //C++ methods used to invoke GTK+ virtual functions: protected: //GTK+ Virtual Functions (override these to change behaviour): //Default Signal Handlers:: }; /** A Gtk::ShortcutAction that calls Gtk::Widget::activate(). */ class GTKMM_API ActivateAction : public ShortcutAction { #ifndef DOXYGEN_SHOULD_SKIP_THIS public: using CppObjectType = ActivateAction; using CppClassType = ActivateAction_Class; using BaseObjectType = GtkActivateAction; using BaseClassType = GtkActivateActionClass; // noncopyable ActivateAction(const ActivateAction&) = delete; ActivateAction& operator=(const ActivateAction&) = delete; private: friend class ActivateAction_Class; static CppClassType activateaction_class_; protected: explicit ActivateAction(const Glib::ConstructParams& construct_params); explicit ActivateAction(GtkActivateAction* castitem); #endif /* DOXYGEN_SHOULD_SKIP_THIS */ public: ActivateAction(ActivateAction&& src) noexcept; ActivateAction& operator=(ActivateAction&& src) noexcept; ~ActivateAction() noexcept override; /** Get the GType for this class, for use with the underlying GObject type system. */ static GType get_type() G_GNUC_CONST; #ifndef DOXYGEN_SHOULD_SKIP_THIS static GType get_base_type() G_GNUC_CONST; #endif ///Provides access to the underlying C GObject. GtkActivateAction* gobj() { return reinterpret_cast(gobject_); } ///Provides access to the underlying C GObject. const GtkActivateAction* gobj() const { return reinterpret_cast(gobject_); } ///Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs. GtkActivateAction* gobj_copy(); private: protected: ActivateAction(); public: /** Gets the activate action. * * This is an action that calls Gtk::Widget::activate() * on the given widget upon activation. * * @return The activate action. */ static Glib::RefPtr get(); public: public: //C++ methods used to invoke GTK+ virtual functions: protected: //GTK+ Virtual Functions (override these to change behaviour): //Default Signal Handlers:: }; /** A Gtk::ShortcutAction that emits a signal. */ class GTKMM_API SignalAction : public ShortcutAction { #ifndef DOXYGEN_SHOULD_SKIP_THIS public: using CppObjectType = SignalAction; using CppClassType = SignalAction_Class; using BaseObjectType = GtkSignalAction; using BaseClassType = GtkSignalActionClass; // noncopyable SignalAction(const SignalAction&) = delete; SignalAction& operator=(const SignalAction&) = delete; private: friend class SignalAction_Class; static CppClassType signalaction_class_; protected: explicit SignalAction(const Glib::ConstructParams& construct_params); explicit SignalAction(GtkSignalAction* castitem); #endif /* DOXYGEN_SHOULD_SKIP_THIS */ public: SignalAction(SignalAction&& src) noexcept; SignalAction& operator=(SignalAction&& src) noexcept; ~SignalAction() noexcept override; /** Get the GType for this class, for use with the underlying GObject type system. */ static GType get_type() G_GNUC_CONST; #ifndef DOXYGEN_SHOULD_SKIP_THIS static GType get_base_type() G_GNUC_CONST; #endif ///Provides access to the underlying C GObject. GtkSignalAction* gobj() { return reinterpret_cast(gobject_); } ///Provides access to the underlying C GObject. const GtkSignalAction* gobj() const { return reinterpret_cast(gobject_); } ///Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs. GtkSignalAction* gobj_copy(); private: protected: explicit SignalAction(const Glib::ustring& signal_name); public: static Glib::RefPtr create(const Glib::ustring& signal_name); /** Returns the name of the signal that will be emitted. * * @return The name of the signal to emit. */ Glib::ustring get_signal_name() const; /** The name of the signal to emit. * * Default value: "" * * @return A PropertyProxy_ReadOnly that allows you to get the value of the property, * or receive notification when the value of the property changes. */ Glib::PropertyProxy_ReadOnly< Glib::ustring > property_signal_name() const; public: public: //C++ methods used to invoke GTK+ virtual functions: protected: //GTK+ Virtual Functions (override these to change behaviour): //Default Signal Handlers:: }; /** A Gtk::ShortcutAction that activates an action by name. */ class GTKMM_API NamedAction : public ShortcutAction { #ifndef DOXYGEN_SHOULD_SKIP_THIS public: using CppObjectType = NamedAction; using CppClassType = NamedAction_Class; using BaseObjectType = GtkNamedAction; using BaseClassType = GtkNamedActionClass; // noncopyable NamedAction(const NamedAction&) = delete; NamedAction& operator=(const NamedAction&) = delete; private: friend class NamedAction_Class; static CppClassType namedaction_class_; protected: explicit NamedAction(const Glib::ConstructParams& construct_params); explicit NamedAction(GtkNamedAction* castitem); #endif /* DOXYGEN_SHOULD_SKIP_THIS */ public: NamedAction(NamedAction&& src) noexcept; NamedAction& operator=(NamedAction&& src) noexcept; ~NamedAction() noexcept override; /** Get the GType for this class, for use with the underlying GObject type system. */ static GType get_type() G_GNUC_CONST; #ifndef DOXYGEN_SHOULD_SKIP_THIS static GType get_base_type() G_GNUC_CONST; #endif ///Provides access to the underlying C GObject. GtkNamedAction* gobj() { return reinterpret_cast(gobject_); } ///Provides access to the underlying C GObject. const GtkNamedAction* gobj() const { return reinterpret_cast(gobject_); } ///Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs. GtkNamedAction* gobj_copy(); private: protected: explicit NamedAction(const Glib::ustring& action_name); public: static Glib::RefPtr create(const Glib::ustring& action_name); /** Returns the name of the action that will be activated. * * @return The name of the action to activate. */ Glib::ustring get_action_name() const; /** The name of the action to activate. * * Default value: "" * * @return A PropertyProxy_ReadOnly that allows you to get the value of the property, * or receive notification when the value of the property changes. */ Glib::PropertyProxy_ReadOnly< Glib::ustring > property_action_name() const; public: public: //C++ methods used to invoke GTK+ virtual functions: protected: //GTK+ Virtual Functions (override these to change behaviour): //Default Signal Handlers:: }; } //namespace Gtk namespace Gtk { /** @ingroup gtkmmEnums */ inline constexpr ShortcutAction::Flags operator|(ShortcutAction::Flags lhs, ShortcutAction::Flags rhs) { return static_cast(static_cast(lhs) | static_cast(rhs)); } /** @ingroup gtkmmEnums */ inline constexpr ShortcutAction::Flags operator&(ShortcutAction::Flags lhs, ShortcutAction::Flags rhs) { return static_cast(static_cast(lhs) & static_cast(rhs)); } /** @ingroup gtkmmEnums */ inline constexpr ShortcutAction::Flags operator^(ShortcutAction::Flags lhs, ShortcutAction::Flags rhs) { return static_cast(static_cast(lhs) ^ static_cast(rhs)); } /** @ingroup gtkmmEnums */ inline constexpr ShortcutAction::Flags operator~(ShortcutAction::Flags flags) { return static_cast(~static_cast(flags)); } /** @ingroup gtkmmEnums */ inline ShortcutAction::Flags& operator|=(ShortcutAction::Flags& lhs, ShortcutAction::Flags rhs) { return (lhs = static_cast(static_cast(lhs) | static_cast(rhs))); } /** @ingroup gtkmmEnums */ inline ShortcutAction::Flags& operator&=(ShortcutAction::Flags& lhs, ShortcutAction::Flags rhs) { return (lhs = static_cast(static_cast(lhs) & static_cast(rhs))); } /** @ingroup gtkmmEnums */ inline ShortcutAction::Flags& operator^=(ShortcutAction::Flags& lhs, ShortcutAction::Flags rhs) { return (lhs = static_cast(static_cast(lhs) ^ static_cast(rhs))); } } // namespace Gtk #ifndef DOXYGEN_SHOULD_SKIP_THIS namespace Glib { template <> class GTKMM_API Value : public Glib::Value_Flags { public: static GType value_type() G_GNUC_CONST; }; } // namespace Glib #endif /* DOXYGEN_SHOULD_SKIP_THIS */ namespace Glib { /** A Glib::wrap() method for this object. * * @param object The C instance. * @param take_copy False if the result should take ownership of the C instance. True if it should take a new copy or ref. * @result A C++ instance that wraps this C instance. * * @relates Gtk::ShortcutAction */ GTKMM_API Glib::RefPtr wrap(GtkShortcutAction* object, bool take_copy = false); } namespace Glib { /** A Glib::wrap() method for this object. * * @param object The C instance. * @param take_copy False if the result should take ownership of the C instance. True if it should take a new copy or ref. * @result A C++ instance that wraps this C instance. * * @relates Gtk::NothingAction */ GTKMM_API Glib::RefPtr wrap(GtkNothingAction* object, bool take_copy = false); } namespace Glib { /** A Glib::wrap() method for this object. * * @param object The C instance. * @param take_copy False if the result should take ownership of the C instance. True if it should take a new copy or ref. * @result A C++ instance that wraps this C instance. * * @relates Gtk::CallbackAction */ GTKMM_API Glib::RefPtr wrap(GtkCallbackAction* object, bool take_copy = false); } namespace Glib { /** A Glib::wrap() method for this object. * * @param object The C instance. * @param take_copy False if the result should take ownership of the C instance. True if it should take a new copy or ref. * @result A C++ instance that wraps this C instance. * * @relates Gtk::MnemonicAction */ GTKMM_API Glib::RefPtr wrap(GtkMnemonicAction* object, bool take_copy = false); } namespace Glib { /** A Glib::wrap() method for this object. * * @param object The C instance. * @param take_copy False if the result should take ownership of the C instance. True if it should take a new copy or ref. * @result A C++ instance that wraps this C instance. * * @relates Gtk::ActivateAction */ GTKMM_API Glib::RefPtr wrap(GtkActivateAction* object, bool take_copy = false); } namespace Glib { /** A Glib::wrap() method for this object. * * @param object The C instance. * @param take_copy False if the result should take ownership of the C instance. True if it should take a new copy or ref. * @result A C++ instance that wraps this C instance. * * @relates Gtk::SignalAction */ GTKMM_API Glib::RefPtr wrap(GtkSignalAction* object, bool take_copy = false); } namespace Glib { /** A Glib::wrap() method for this object. * * @param object The C instance. * @param take_copy False if the result should take ownership of the C instance. True if it should take a new copy or ref. * @result A C++ instance that wraps this C instance. * * @relates Gtk::NamedAction */ GTKMM_API Glib::RefPtr wrap(GtkNamedAction* object, bool take_copy = false); } #endif /* _GTKMM_SHORTCUTACTION_H */