// Generated by gmmproc 2.82.0 -- DO NOT MODIFY! #ifndef _GTKMM_SHORTCUTSGROUP_H #define _GTKMM_SHORTCUTSGROUP_H #include #include /* Copyright (C) 2016 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 GtkShortcutsGroup = struct _GtkShortcutsGroup; using GtkShortcutsGroupClass = struct _GtkShortcutsGroupClass; #endif /* DOXYGEN_SHOULD_SKIP_THIS */ #ifndef DOXYGEN_SHOULD_SKIP_THIS namespace Gtk { class GTKMM_API ShortcutsGroup_Class; } // namespace Gtk #endif //DOXYGEN_SHOULD_SKIP_THIS namespace Gtk { class ShortcutsShortcut; /** Represents a group of shortcuts in a ShortcutsWindow. * * A ShortcutsGroup represents a group of related keyboard shortcuts * or gestures. The group has a title. It may optionally be associated with * a view of the application, which can be used to show only relevant shortcuts * depending on the application context. * * This widget is only meant to be used with ShortcutsWindow. * * @newin{3,20} * * @ingroup Widgets */ class GTKMM_API ShortcutsGroup : public Box { public: #ifndef DOXYGEN_SHOULD_SKIP_THIS typedef ShortcutsGroup CppObjectType; typedef ShortcutsGroup_Class CppClassType; typedef GtkShortcutsGroup BaseObjectType; typedef GtkShortcutsGroupClass BaseClassType; #endif /* DOXYGEN_SHOULD_SKIP_THIS */ ShortcutsGroup(ShortcutsGroup&& src) noexcept; ShortcutsGroup& operator=(ShortcutsGroup&& src) noexcept; // noncopyable ShortcutsGroup(const ShortcutsGroup&) = delete; ShortcutsGroup& operator=(const ShortcutsGroup&) = delete; ~ShortcutsGroup() noexcept override; #ifndef DOXYGEN_SHOULD_SKIP_THIS private: friend GTKMM_API class ShortcutsGroup_Class; static CppClassType shortcutsgroup_class_; protected: explicit ShortcutsGroup(const Glib::ConstructParams& construct_params); explicit ShortcutsGroup(GtkShortcutsGroup* castitem); #endif /* DOXYGEN_SHOULD_SKIP_THIS */ public: /** 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. GtkShortcutsGroup* gobj() { return reinterpret_cast(gobject_); } /// Provides access to the underlying C GObject. const GtkShortcutsGroup* gobj() const { return reinterpret_cast(gobject_); } private: public: ShortcutsGroup(); /** Adds a shortcut to the shortcuts group. * * This is the programmatic equivalent to using Gtk::Builder and a * `` tag to add the child. Adding children with other API is not * appropriate as `Gtk::ShortcutsGroup` manages its children internally. * * @newin{4,14} * * @param shortcut The `Gtk::ShortcutsShortcut` to add. */ void add_shortcut(ShortcutsShortcut& shortcut); /** Unsets the property_view() of this shortcuts group. * The group will then always be visible, regardless of the value of * Gtk::ShortcutsWindow::property_view_name(). * * This is a convenience method that calls property_view().reset_value(). */ void unset_view(); /** The title for this group of shortcuts. * * Default value: "" * * @return A PropertyProxy that allows you to get or set the value of the property, * or receive notification when the value of the property changes. */ Glib::PropertyProxy< Glib::ustring > property_title() ; /** The title for this group of shortcuts. * * 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_title() const; /** An optional view that the shortcuts in this group are relevant for. * * The group will be hidden if the Gtk::ShortcutsWindow::property_view_name() * property does not match the view of this group. * * Set this to nullptr to make the group always visible. * * Default value: "" * * @return A PropertyProxy that allows you to get or set the value of the property, * or receive notification when the value of the property changes. */ Glib::PropertyProxy< Glib::ustring > property_view() ; /** An optional view that the shortcuts in this group are relevant for. * * The group will be hidden if the Gtk::ShortcutsWindow::property_view_name() * property does not match the view of this group. * * Set this to nullptr to make the group always visible. * * 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_view() 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 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::ShortcutsGroup */ GTKMM_API Gtk::ShortcutsGroup* wrap(GtkShortcutsGroup* object, bool take_copy = false); } //namespace Glib #endif /* _GTKMM_SHORTCUTSGROUP_H */