// Copyright 2012-2022 David Robillard // SPDX-License-Identifier: ISC #ifndef PUGL_SRC_TYPES_H #define PUGL_SRC_TYPES_H #include "attributes.h" #include "pugl/pugl.h" #include #include #include /// Platform-specific world internals typedef struct PuglWorldInternalsImpl PuglWorldInternals; /// Platform-specific view internals typedef struct PuglInternalsImpl PuglInternals; /// View hints typedef int PuglHints[PUGL_NUM_VIEW_HINTS]; /// View size (both X and Y coordinates) typedef struct { PuglSpan width; PuglSpan height; } PuglViewSize; /// Blob of arbitrary data typedef struct { void* data; ///< Dynamically allocated data size_t len; ///< Length of data in bytes } PuglBlob; /// Cross-platform view definition struct PuglViewImpl { PuglWorld* world; const PuglBackend* backend; PuglInternals* impl; PuglHandle handle; PuglEventFunc eventFunc; char* title; PuglNativeView parent; uintptr_t transientParent; PuglRect frame; PuglConfigureEvent lastConfigure; PuglHints hints; PuglViewSize sizeHints[PUGL_NUM_SIZE_HINTS]; bool visible; }; /// Cross-platform world definition struct PuglWorldImpl { PuglWorldInternals* impl; PuglWorldHandle handle; char* className; double startTime; size_t numViews; PuglView** views; }; /// Opaque surface used by graphics backend typedef void PuglSurface; /// Graphics backend interface struct PuglBackendImpl { /// Get visual information from display and setup view as necessary PUGL_WARN_UNUSED_RESULT PuglStatus (*configure)(PuglView*); /// Create surface and drawing context PUGL_WARN_UNUSED_RESULT PuglStatus (*create)(PuglView*); /// Destroy surface and drawing context void (*destroy)(PuglView*); /// Enter drawing context, for drawing if expose is non-null PUGL_WARN_UNUSED_RESULT PuglStatus (*enter)(PuglView*, const PuglExposeEvent*); /// Leave drawing context, after drawing if expose is non-null PUGL_WARN_UNUSED_RESULT PuglStatus (*leave)(PuglView*, const PuglExposeEvent*); /// Return the puglGetContext() handle for the application, if any void* (*getContext)(PuglView*); }; #endif // PUGL_SRC_TYPES_H