// Generated by gmmproc 2.82.0 -- DO NOT MODIFY! #ifndef _GDKMM_DISPLAYMANAGER_H #define _GDKMM_DISPLAYMANAGER_H #include #include /* * Copyright (C) 2002 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, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ #include #include #include #ifndef DOXYGEN_SHOULD_SKIP_THIS using GdkDisplayManager = struct _GdkDisplayManager; using GdkDisplayManagerClass = struct _GdkDisplayManagerClass; #endif /* DOXYGEN_SHOULD_SKIP_THIS */ #ifndef DOXYGEN_SHOULD_SKIP_THIS namespace Gdk { class GDKMM_API DisplayManager_Class; } // namespace Gdk #endif //DOXYGEN_SHOULD_SKIP_THIS namespace Gdk { /** The purpose of the GdkDisplayManager singleton object is to offer notification when displays appear or disappear or the * default display changes. */ class GDKMM_API DisplayManager : public Glib::Object { #ifndef DOXYGEN_SHOULD_SKIP_THIS public: using CppObjectType = DisplayManager; using CppClassType = DisplayManager_Class; using BaseObjectType = GdkDisplayManager; using BaseClassType = GdkDisplayManagerClass; // noncopyable DisplayManager(const DisplayManager&) = delete; DisplayManager& operator=(const DisplayManager&) = delete; private: friend class DisplayManager_Class; static CppClassType displaymanager_class_; protected: explicit DisplayManager(const Glib::ConstructParams& construct_params); explicit DisplayManager(GdkDisplayManager* castitem); #endif /* DOXYGEN_SHOULD_SKIP_THIS */ public: DisplayManager(DisplayManager&& src) noexcept; DisplayManager& operator=(DisplayManager&& src) noexcept; ~DisplayManager() 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. GdkDisplayManager* gobj() { return reinterpret_cast(gobject_); } ///Provides access to the underlying C GObject. const GdkDisplayManager* 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. GdkDisplayManager* gobj_copy(); private: protected: public: /** Gets the singleton `Gdk::DisplayManager` object. * * When called for the first time, this function consults the * `GDK_BACKEND` environment variable to find out which of the * supported GDK backends to use (in case GDK has been compiled * with multiple backends). * * Applications can use set_allowed_backends() to limit what * backends will be used. * * @return The global `Gdk::DisplayManager` singleton. */ static Glib::RefPtr get(); /** Gets the default `Gdk::Display`. * * @return A `Gdk::Display`. */ Glib::RefPtr get_default_display(); /** Gets the default `Gdk::Display`. * * @return A `Gdk::Display`. */ Glib::RefPtr get_default_display() const; /** Sets @a display as the default display. * * @param display A `Gdk::Display`. */ void set_default_display(const Glib::RefPtr& display); /** List all currently open displays. * * @return A vector of Gdk::Display objects. */ std::vector< Glib::RefPtr > list_displays(); /** Opens a display. * * @param name The name of the display to open. * @return A `Gdk::Display`, or nullptr * if the display could not be opened. */ Glib::RefPtr open_display(const Glib::ustring& name); /** The default display. * * @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::RefPtr > property_default_display() ; /** The default display. * * @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::RefPtr > property_default_display() const; //We use no_default_handler because GdkDisplayManagerClass is private. /** * @par Slot Prototype: * void on_my_%display_opened(const Glib::RefPtr& display) * * Flags: Run Last * * Emitted when a display is opened. * * @param display The opened display. */ Glib::SignalProxy&)> signal_display_opened(); public: public: //C++ methods used to invoke GTK+ virtual functions: protected: //GTK+ Virtual Functions (override these to change behaviour): //Default Signal Handlers:: }; } // namespace Gdk 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 Gdk::DisplayManager */ GDKMM_API Glib::RefPtr wrap(GdkDisplayManager* object, bool take_copy = false); } #endif /* _GDKMM_DISPLAYMANAGER_H */