summaryrefslogtreecommitdiff
path: root/src/c_fl_tile.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/c_fl_tile.cpp')
-rw-r--r--src/c_fl_tile.cpp73
1 files changed, 35 insertions, 38 deletions
diff --git a/src/c_fl_tile.cpp b/src/c_fl_tile.cpp
index 3214502..2708d55 100644
--- a/src/c_fl_tile.cpp
+++ b/src/c_fl_tile.cpp
@@ -6,62 +6,44 @@
#include <FL/Fl_Tile.H>
#include "c_fl_tile.h"
-#include "c_fl_type.h"
-class My_Tile : public Fl_Tile {
- public:
- using Fl_Tile::Fl_Tile;
- friend void tile_set_draw_hook(TILE n, void * d);
- friend void fl_tile_draw(TILE n);
- friend void tile_set_handle_hook(TILE n, void * h);
- friend int fl_tile_handle(TILE n, 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;
-};
+// Exports from Ada
-void My_Tile::draw() {
- (*draw_hook)(this->user_data());
-}
+extern "C" void widget_draw_hook(void * ud);
+extern "C" int widget_handle_hook(void * ud, int e);
-void My_Tile::real_draw() {
- Fl_Tile::draw();
-}
-int My_Tile::handle(int e) {
- return (*handle_hook)(this->user_data(), e);
-}
-int My_Tile::real_handle(int e) {
- return Fl_Tile::handle(e);
-}
-void tile_set_draw_hook(TILE n, void * d) {
- reinterpret_cast<My_Tile*>(n)->draw_hook = reinterpret_cast<d_hook_p>(d);
-}
+// Attaching all relevant hooks and friends
-void fl_tile_draw(TILE n) {
- reinterpret_cast<My_Tile*>(n)->real_draw();
-}
+class My_Tile : public Fl_Tile {
+public:
+ using Fl_Tile::Fl_Tile;
+
+ friend void fl_tile_draw(TILE n);
+ friend int fl_tile_handle(TILE n, int e);
+
+ void draw();
+ int handle(int e);
+};
-void tile_set_handle_hook(TILE n, void * h) {
- reinterpret_cast<My_Tile*>(n)->handle_hook = reinterpret_cast<h_hook_p>(h);
+void My_Tile::draw() {
+ widget_draw_hook(this->user_data());
}
-int fl_tile_handle(TILE n, int e) {
- return reinterpret_cast<My_Tile*>(n)->real_handle(e);
+int My_Tile::handle(int e) {
+ return widget_handle_hook(this->user_data(), e);
}
+// Flattened C API
+
TILE new_fl_tile(int x, int y, int w, int h, char* label) {
My_Tile *b = new My_Tile(x, y, w, h, label);
return b;
@@ -78,4 +60,19 @@ void fl_tile_position(TILE t, int ox, int oy, int nx, int ny) {
reinterpret_cast<Fl_Tile*>(t)->position(ox,oy,nx,ny);
}
+void fl_tile_resize(TILE t, int x, int y, int w, int h) {
+ reinterpret_cast<Fl_Tile*>(t)->resize(x, y, w, h);
+}
+
+
+
+
+void fl_tile_draw(TILE n) {
+ reinterpret_cast<My_Tile*>(n)->Fl_Tile::draw();
+}
+
+int fl_tile_handle(TILE n, int e) {
+ return reinterpret_cast<My_Tile*>(n)->Fl_Tile::handle(e);
+}
+