From c900dd24f43e33171f007f67ea645628e3fb3d21 Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Sun, 4 Mar 2018 01:08:31 +1100 Subject: Added FLTK.Widgets.Valuators.Sliders.Hor_Nice --- src/c_fl_hor_nice_slider.cpp | 70 +++++++++++++++ src/c_fl_hor_nice_slider.h | 27 ++++++ src/fltk-widgets-valuators-sliders-hor_nice.adb | 109 ++++++++++++++++++++++++ src/fltk-widgets-valuators-sliders-hor_nice.ads | 38 +++++++++ 4 files changed, 244 insertions(+) create mode 100644 src/c_fl_hor_nice_slider.cpp create mode 100644 src/c_fl_hor_nice_slider.h create mode 100644 src/fltk-widgets-valuators-sliders-hor_nice.adb create mode 100644 src/fltk-widgets-valuators-sliders-hor_nice.ads (limited to 'src') diff --git a/src/c_fl_hor_nice_slider.cpp b/src/c_fl_hor_nice_slider.cpp new file mode 100644 index 0000000..d17d700 --- /dev/null +++ b/src/c_fl_hor_nice_slider.cpp @@ -0,0 +1,70 @@ + + +#include +#include "c_fl_hor_nice_slider.h" +#include "c_fl_type.h" + + + + +class My_Hor_Nice_Slider : public Fl_Hor_Nice_Slider { + public: + using Fl_Hor_Nice_Slider::Fl_Hor_Nice_Slider; + friend void hor_nice_slider_set_draw_hook(HOR_NICE_SLIDER s, void * d); + friend void fl_hor_nice_slider_draw(HOR_NICE_SLIDER s); + friend void hor_nice_slider_set_handle_hook(HOR_NICE_SLIDER s, void * h); + friend int fl_hor_nice_slider_handle(HOR_NICE_SLIDER s, int e); + protected: + void draw(); + void real_draw(); + int handle(int e); + int real_handle(int e); + d_hook_p draw_hook; + h_hook_p handle_hook; +}; + +void My_Hor_Nice_Slider::draw() { + (*draw_hook)(this->user_data()); +} + +void My_Hor_Nice_Slider::real_draw() { + Fl_Hor_Nice_Slider::draw(); +} + +int My_Hor_Nice_Slider::handle(int e) { + return (*handle_hook)(this->user_data(), e); +} + +int My_Hor_Nice_Slider::real_handle(int e) { + return Fl_Hor_Nice_Slider::handle(e); +} + +void hor_nice_slider_set_draw_hook(HOR_NICE_SLIDER s, void * d) { + reinterpret_cast(s)->draw_hook = reinterpret_cast(d); +} + +void fl_hor_nice_slider_draw(HOR_NICE_SLIDER s) { + reinterpret_cast(s)->real_draw(); +} + +void hor_nice_slider_set_handle_hook(HOR_NICE_SLIDER s, void * h) { + reinterpret_cast(s)->handle_hook = reinterpret_cast(h); +} + +int fl_hor_nice_slider_handle(HOR_NICE_SLIDER s, int e) { + return reinterpret_cast(s)->real_handle(e); +} + + + + +HOR_NICE_SLIDER new_fl_hor_nice_slider(int x, int y, int w, int h, char* label) { + My_Hor_Nice_Slider *s = new My_Hor_Nice_Slider(x, y, w, h, label); + return s; +} + +void free_fl_hor_nice_slider(HOR_NICE_SLIDER s) { + delete reinterpret_cast(s); +} + + diff --git a/src/c_fl_hor_nice_slider.h b/src/c_fl_hor_nice_slider.h new file mode 100644 index 0000000..990fc76 --- /dev/null +++ b/src/c_fl_hor_nice_slider.h @@ -0,0 +1,27 @@ + + +#ifndef FL_HOR_NICE_SLIDER_GUARD +#define FL_HOR_NICE_SLIDER_GUARD + + + + +typedef void* HOR_NICE_SLIDER; + + + + +extern "C" void hor_nice_slider_set_draw_hook(HOR_NICE_SLIDER s, void * d); +extern "C" void fl_hor_nice_slider_draw(HOR_NICE_SLIDER s); +extern "C" void hor_nice_slider_set_handle_hook(HOR_NICE_SLIDER s, void * h); +extern "C" int fl_hor_nice_slider_handle(HOR_NICE_SLIDER s, int e); + + + + +extern "C" HOR_NICE_SLIDER new_fl_hor_nice_slider(int x, int y, int w, int h, char* label); +extern "C" void free_fl_hor_nice_slider(HOR_NICE_SLIDER s); + + +#endif + diff --git a/src/fltk-widgets-valuators-sliders-hor_nice.adb b/src/fltk-widgets-valuators-sliders-hor_nice.adb new file mode 100644 index 0000000..1ec8254 --- /dev/null +++ b/src/fltk-widgets-valuators-sliders-hor_nice.adb @@ -0,0 +1,109 @@ + + +with + + Interfaces.C.Strings, + System; + +use type + + System.Address; + + +package body FLTK.Widgets.Valuators.Sliders.Hor_Nice is + + + procedure hor_nice_slider_set_draw_hook + (W, D : in System.Address); + pragma Import (C, hor_nice_slider_set_draw_hook, "hor_nice_slider_set_draw_hook"); + + procedure hor_nice_slider_set_handle_hook + (W, H : in System.Address); + pragma Import (C, hor_nice_slider_set_handle_hook, "hor_nice_slider_set_handle_hook"); + + + + + function new_fl_hor_nice_slider + (X, Y, W, H : in Interfaces.C.int; + Text : in Interfaces.C.char_array) + return System.Address; + pragma Import (C, new_fl_hor_nice_slider, "new_fl_hor_nice_slider"); + + procedure free_fl_hor_nice_slider + (D : in System.Address); + pragma Import (C, free_fl_hor_nice_slider, "free_fl_hor_nice_slider"); + + + + + procedure fl_hor_nice_slider_draw + (W : in System.Address); + pragma Import (C, fl_hor_nice_slider_draw, "fl_hor_nice_slider_draw"); + + function fl_hor_nice_slider_handle + (W : in System.Address; + E : in Interfaces.C.int) + return Interfaces.C.int; + pragma Import (C, fl_hor_nice_slider_handle, "fl_hor_nice_slider_handle"); + + + + + procedure Finalize + (This : in out Hor_Nice_Slider) is + begin + if This.Void_Ptr /= System.Null_Address and then + This in Hor_Nice_Slider'Class + then + free_fl_hor_nice_slider (This.Void_Ptr); + This.Void_Ptr := System.Null_Address; + end if; + Finalize (Valuator (This)); + end Finalize; + + + + + function Create + (X, Y, W, H : in Integer; + Text : in String) + return Hor_Nice_Slider is + begin + return This : Hor_Nice_Slider do + This.Void_Ptr := new_fl_hor_nice_slider + (Interfaces.C.int (X), + Interfaces.C.int (Y), + Interfaces.C.int (W), + Interfaces.C.int (H), + Interfaces.C.To_C (Text)); + fl_widget_set_user_data + (This.Void_Ptr, + Widget_Convert.To_Address (This'Unchecked_Access)); + hor_nice_slider_set_draw_hook (This.Void_Ptr, Draw_Hook'Address); + hor_nice_slider_set_handle_hook (This.Void_Ptr, Handle_Hook'Address); + end return; + end Create; + + + + + procedure Draw + (This : in out Hor_Nice_Slider) is + begin + fl_hor_nice_slider_draw (This.Void_Ptr); + end Draw; + + + function Handle + (This : in out Hor_Nice_Slider; + Event : in Event_Kind) + return Event_Outcome is + begin + return Event_Outcome'Val + (fl_hor_nice_slider_handle (This.Void_Ptr, Event_Kind'Pos (Event))); + end Handle; + + +end FLTK.Widgets.Valuators.Sliders.Hor_Nice; + diff --git a/src/fltk-widgets-valuators-sliders-hor_nice.ads b/src/fltk-widgets-valuators-sliders-hor_nice.ads new file mode 100644 index 0000000..f86f53b --- /dev/null +++ b/src/fltk-widgets-valuators-sliders-hor_nice.ads @@ -0,0 +1,38 @@ + + +package FLTK.Widgets.Valuators.Sliders.Hor_Nice is + + + type Hor_Nice_Slider is new Slider with private; + + + + + function Create + (X, Y, W, H : in Integer; + Text : in String) + return Hor_Nice_Slider; + + + + + procedure Draw + (This : in out Hor_Nice_Slider); + + function Handle + (This : in out Hor_Nice_Slider; + Event : in Event_Kind) + return Event_Outcome; + + +private + + + type Hor_Nice_Slider is new Slider with null record; + + overriding procedure Finalize + (This : in out Hor_Nice_Slider); + + +end FLTK.Widgets.Valuators.Sliders.Hor_Nice; + -- cgit