// Generated by gmmproc 2.82.0 -- DO NOT MODIFY! #ifndef _GDKMM_DRAWCONTEXT_H #define _GDKMM_DRAWCONTEXT_H #include #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 #include #ifndef DOXYGEN_SHOULD_SKIP_THIS using GdkDrawContext = struct _GdkDrawContext; using GdkDrawContextClass = struct _GdkDrawContextClass; #endif /* DOXYGEN_SHOULD_SKIP_THIS */ #ifndef DOXYGEN_SHOULD_SKIP_THIS namespace Gdk { class GDKMM_API DrawContext_Class; } // namespace Gdk #endif //DOXYGEN_SHOULD_SKIP_THIS namespace Gdk { class GDKMM_API Display; class GDKMM_API Surface; /** Drawing context base class. * * %Gdk::DrawContext is the base object used by contexts implementing different * rendering methods, such as GLContext or VulkanContext. It provides * shared functionality between those contexts. * * You will always interact with one of those subclasses. * * @newin{3,90} */ class GDKMM_API DrawContext : public Glib::Object { #ifndef DOXYGEN_SHOULD_SKIP_THIS public: using CppObjectType = DrawContext; using CppClassType = DrawContext_Class; using BaseObjectType = GdkDrawContext; using BaseClassType = GdkDrawContextClass; // noncopyable DrawContext(const DrawContext&) = delete; DrawContext& operator=(const DrawContext&) = delete; private: friend class DrawContext_Class; static CppClassType drawcontext_class_; protected: explicit DrawContext(const Glib::ConstructParams& construct_params); explicit DrawContext(GdkDrawContext* castitem); #endif /* DOXYGEN_SHOULD_SKIP_THIS */ public: DrawContext(DrawContext&& src) noexcept; DrawContext& operator=(DrawContext&& src) noexcept; ~DrawContext() 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. GdkDrawContext* gobj() { return reinterpret_cast(gobject_); } ///Provides access to the underlying C GObject. const GdkDrawContext* 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. GdkDrawContext* gobj_copy(); private: protected: /// This constructor is protected because only derived classes shall be instantiated. DrawContext(); public: /** Retrieves the `Gdk::Display` the @a context is created for * * @return The `Gdk::Display`. */ Glib::RefPtr get_display(); /** Retrieves the `Gdk::Display` the @a context is created for * * @return The `Gdk::Display`. */ Glib::RefPtr get_display() const; /** Retrieves the surface that @a context is bound to. * * @return A `Gdk::Surface`. */ Glib::RefPtr get_surface(); /** Retrieves the surface that @a context is bound to. * * @return A `Gdk::Surface`. */ Glib::RefPtr get_surface() const; #ifndef GDKMM_DISABLE_DEPRECATED /** Indicates that you are beginning the process of redrawing @a region * on the @a context's surface. * * Calling this function begins a drawing operation using @a context on the * surface that @a context was created from. The actual requirements and * guarantees for the drawing operation vary for different implementations * of drawing, so a Gdk::CairoContext and a Gdk::GLContext * need to be treated differently. * * A call to this function is a requirement for drawing and must be * followed by a call to end_frame(), which will * complete the drawing operation and ensure the contents become visible * on screen. * * Note that the @a region passed to this function is the minimum region that * needs to be drawn and depending on implementation, windowing system and * hardware in use, it might be necessary to draw a larger region. Drawing * implementation must use get_frame_region() to * query the region that must be drawn. * * When using GTK, the widget system automatically places calls to * begin_frame() and end_frame() via the * use of [GskRenderer](../gsk4/class.Renderer.html)s, so application code * does not need to call these functions explicitly. * * Deprecated: 4.16: Drawing directly to the surface is no longer recommended. * Use `Gsk::RenderNode` and `Gsk::Renderer`. * * @deprecated 4.16: Drawing directly to the surface is no longer recommended. Use GskRenderNode and GskRenderer (no C++ equivalents). * * @param region Minimum region that should be drawn. */ void begin_frame(const ::Cairo::RefPtr& region); #endif // GDKMM_DISABLE_DEPRECATED #ifndef GDKMM_DISABLE_DEPRECATED /** Ends a drawing operation started with begin_frame(). * * This makes the drawing available on screen. * See begin_frame() for more details about drawing. * * When using a Gdk::GLContext, this function may call `glFlush()` * implicitly before returning; it is not recommended to call `glFlush()` * explicitly before calling this function. * * Deprecated: 4.16: Drawing directly to the surface is no longer recommended. * Use `Gsk::RenderNode` and `Gsk::Renderer`. * * @deprecated 4.16: Drawing directly to the surface is no longer recommended. Use GskRenderNode and GskRenderer (no C++ equivalents). */ void end_frame(); #endif // GDKMM_DISABLE_DEPRECATED #ifndef GDKMM_DISABLE_DEPRECATED /** Returns true if @a context is in the process of drawing to its surface. * * This is the case between calls to begin_frame() * and end_frame(). In this situation, drawing commands * may be effecting the contents of the @a context's surface. * * Deprecated: 4.16: Drawing directly to the surface is no longer recommended. * Use `Gsk::RenderNode` and `Gsk::Renderer`. * * @deprecated 4.16: Drawing directly to the surface is no longer recommended. Use GskRenderNode and GskRenderer (no C++ equivalents). * * @return true if the context is between begin_frame() * and end_frame() calls. */ bool is_in_frame() const; #endif // GDKMM_DISABLE_DEPRECATED #ifndef GDKMM_DISABLE_DEPRECATED /** Retrieves the region that is currently being repainted. * * After a call to begin_frame() this function will * return a union of the region passed to that function and the area of the * surface that the @a context determined needs to be repainted. * * If @a context is not in between calls to begin_frame() * and end_frame(), nullptr will be returned. * * Deprecated: 4.16: Drawing directly to the surface is no longer recommended. * Use `Gsk::RenderNode` and `Gsk::Renderer`. * * @deprecated 4.16: Drawing directly to the surface is no longer recommended. Use GskRenderNode and GskRenderer (no C++ equivalents). * * @return A Cairo region. */ ::Cairo::RefPtr get_frame_region() const; #endif // GDKMM_DISABLE_DEPRECATED /** The `Gdk::Display` used to create the `Gdk::DrawContext`. * * @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_display() const; /** The `Gdk::Surface` the context is bound to. * * @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_surface() const; // There are no signals or vfuncs. 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::DrawContext */ GDKMM_API Glib::RefPtr wrap(GdkDrawContext* object, bool take_copy = false); } #endif /* _GDKMM_DRAWCONTEXT_H */