diff options
author | Jedidiah Barber <contact@jedbarber.id.au> | 2025-01-12 01:14:58 +1300 |
---|---|---|
committer | Jedidiah Barber <contact@jedbarber.id.au> | 2025-01-12 01:14:58 +1300 |
commit | e93b9bbc02e2791f3a35b6f077fcbb8514c28aed (patch) | |
tree | 3661530027db6809a9cbad7b2477416009e00787 /src/fltk-widgets-groups-windows-opengl.ads | |
parent | 53aa8144851913994b963ed611cca8885b8f9a9e (diff) |
Refactored draw/handle methods in Widgets hierarchy, improved docs, added a few minor method bindings here and there
Diffstat (limited to 'src/fltk-widgets-groups-windows-opengl.ads')
-rw-r--r-- | src/fltk-widgets-groups-windows-opengl.ads | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/fltk-widgets-groups-windows-opengl.ads b/src/fltk-widgets-groups-windows-opengl.ads index 63762fb..9c8d1c9 100644 --- a/src/fltk-widgets-groups-windows-opengl.ads +++ b/src/fltk-widgets-groups-windows-opengl.ads @@ -16,10 +16,6 @@ private with package FLTK.Widgets.Groups.Windows.OpenGL is - ------------- - -- Types -- - ------------- - type GL_Window is new Window with private; type GL_Window_Reference (Data : not null access GL_Window'Class) is @@ -44,10 +40,6 @@ package FLTK.Widgets.Groups.Windows.OpenGL is - -------------------- - -- Constructors -- - -------------------- - package Forge is function Create @@ -100,6 +92,10 @@ package FLTK.Widgets.Groups.Windows.OpenGL is (This : in GL_Window) return Float; + procedure Resize + (This : in out GL_Window; + X, Y, W, H : in Integer); + @@ -195,6 +191,9 @@ private type GL_Window is new Window with null record; + overriding procedure Initialize + (This : in out GL_Window); + overriding procedure Finalize (This : in out GL_Window); @@ -260,3 +259,4 @@ private end FLTK.Widgets.Groups.Windows.OpenGL; + |