From b4438b2fbe895694be98e6e8426103deefc51448 Mon Sep 17 00:00:00 2001 From: Jedidiah Barber Date: Tue, 21 Jan 2025 21:04:54 +1300 Subject: Split public API and private implementation files into different directories --- src/c_fl_adjuster.cpp | 99 --------------------------------------------------- 1 file changed, 99 deletions(-) delete mode 100644 src/c_fl_adjuster.cpp (limited to 'src/c_fl_adjuster.cpp') diff --git a/src/c_fl_adjuster.cpp b/src/c_fl_adjuster.cpp deleted file mode 100644 index 37a52cd..0000000 --- a/src/c_fl_adjuster.cpp +++ /dev/null @@ -1,99 +0,0 @@ - - -// Programmed by Jedidiah Barber -// Released into the public domain - - -#include -#include "c_fl_adjuster.h" - - - - -// Exports from Ada - -extern "C" void widget_draw_hook(void * ud); -extern "C" int widget_handle_hook(void * ud, int e); - -extern "C" int valuator_format_hook(void * ud, char * buf); - - - - -// Non-friend protected access - -class Friend_Adjuster : Fl_Adjuster { -public: - using Fl_Adjuster::value_damage; -}; - - - - -// Attaching all relevant hooks and friends - -class My_Adjuster : public Fl_Adjuster { -public: - using Fl_Adjuster::Fl_Adjuster; - - friend void fl_adjuster_draw(ADJUSTER a); - friend int fl_adjuster_handle(ADJUSTER a, int e); - - int format(char * buf); - void draw(); - int handle(int e); -}; - -int My_Adjuster::format(char * buf) { - return valuator_format_hook(this->user_data(), buf); -} - -void My_Adjuster::draw() { - widget_draw_hook(this->user_data()); -} - -int My_Adjuster::handle(int e) { - return widget_handle_hook(this->user_data(), e); -} - - - - -// Flattened C API - -ADJUSTER new_fl_adjuster(int x, int y, int w, int h, char* label) { - My_Adjuster *a = new My_Adjuster(x, y, w, h, label); - return a; -} - -void free_fl_adjuster(ADJUSTER a) { - delete static_cast(a); -} - - - - -int fl_adjuster_is_soft(ADJUSTER a) { - return static_cast(a)->soft(); -} - -void fl_adjuster_set_soft(ADJUSTER a, int t) { - static_cast(a)->soft(t); -} - - - - -void fl_adjuster_value_damage(ADJUSTER a) { - (static_cast(a)->*(&Friend_Adjuster::value_damage))(); -} - -void fl_adjuster_draw(ADJUSTER a) { - static_cast(a)->Fl_Adjuster::draw(); -} - -int fl_adjuster_handle(ADJUSTER a, int e) { - return static_cast(a)->Fl_Adjuster::handle(e); -} - - -- cgit