summaryrefslogtreecommitdiff
path: root/fluid/widgets/custom_widgets.h
diff options
context:
space:
mode:
authorMatthias Melcher <github@matthiasm.com>2025-03-07 16:34:35 +0100
committerMatthias Melcher <github@matthiasm.com>2025-03-07 16:34:48 +0100
commit1985aefc0e502048f92b91beef87c0dfbe669fed (patch)
treeaf62874def4590e437a47784b4428d975ceb262f /fluid/widgets/custom_widgets.h
parent42a04c064d4b31c3a85210311f3ada163c406a25 (diff)
Restructuring Fluid source files.
Diffstat (limited to 'fluid/widgets/custom_widgets.h')
-rw-r--r--fluid/widgets/custom_widgets.h90
1 files changed, 90 insertions, 0 deletions
diff --git a/fluid/widgets/custom_widgets.h b/fluid/widgets/custom_widgets.h
new file mode 100644
index 000000000..875496b8e
--- /dev/null
+++ b/fluid/widgets/custom_widgets.h
@@ -0,0 +1,90 @@
+//
+// Shortcut header file for the Fast Light Tool Kit (FLTK).
+//
+// Copyright 1998-2023 by Bill Spitzak and others.
+//
+// This library is free software. Distribution and use rights are outlined in
+// the file "COPYING" which should have been included with this file. If this
+// file is missing or damaged, see the license at:
+//
+// https://www.fltk.org/COPYING.php
+//
+// Please see the following page on how to report bugs and issues:
+//
+// https://www.fltk.org/bugs.php
+//
+
+#ifndef _FLUID_SHORTCUT_BUTTON_H
+#define _FLUID_SHORTCUT_BUTTON_H
+
+#include <FL/Fl_Button.H>
+#include <FL/Fl_Input.H>
+
+// Adding drag and drop for dragging widgets into windows.
+class Widget_Bin_Button : public Fl_Button {
+public:
+ int handle(int) FL_OVERRIDE;
+ Widget_Bin_Button(int X,int Y,int W,int H, const char* l = 0) :
+ Fl_Button(X,Y,W,H,l) { }
+};
+
+// Adding drag and drop functionality to drag window prototypes onto the desktop.
+class Widget_Bin_Window_Button : public Fl_Button {
+public:
+ int handle(int) FL_OVERRIDE;
+ Widget_Bin_Window_Button(int X,int Y,int W,int H, const char* l = 0) :
+ Fl_Button(X,Y,W,H,l) { }
+};
+
+// Callback signature for function returning the value of a variable.
+typedef int (Fluid_Coord_Callback)(class Fluid_Coord_Input const *, void*);
+
+// Entry for a list of variables available to an input field.
+// Fluid_Coord_Input::variables() expects an array of Fluid_Coord_Input_Vars
+// with the last entry's name_ set to NULL.
+typedef struct Fluid_Coord_Input_Vars {
+ const char *name_;
+ Fluid_Coord_Callback *callback_;
+} Fluid_Coord_Input_Vars;
+
+// A text input widget that understands simple math.
+class Fluid_Coord_Input : public Fl_Input
+{
+ Fl_Callback *user_callback_;
+ Fluid_Coord_Input_Vars *vars_;
+ void *vars_user_data_;
+ static void callback_handler_cb(Fluid_Coord_Input *This, void *v);
+ void callback_handler(void *v);
+ int eval_var(uchar *&s) const;
+ int eval(uchar *&s, int prio) const;
+ int eval(const char *s) const;
+
+public:
+ Fluid_Coord_Input(int x, int y, int w, int h, const char *l=0L);
+
+ /** Return the text in the widget text field. */
+ const char *text() const { return Fl_Input::value(); }
+
+ /** Set the text in the text field */
+ void text(const char *v) { Fl_Input::value(v); }
+
+ int value() const;
+ void value(int v);
+
+ /** Set the general callback for this widget. */
+ void callback(Fl_Callback *cb) {
+ user_callback_ = cb;
+ }
+
+ /** Set the list of the available variables
+ \param vars array of variables, last entry `has name_` set to `NULL`
+ \param user_data is forwarded to the Variable callback */
+ void variables(Fluid_Coord_Input_Vars *vars, void *user_data) {
+ vars_ = vars;
+ vars_user_data_ = user_data;
+ }
+
+ int handle(int) FL_OVERRIDE;
+};
+
+#endif