From 5e8adebac2899d60fffc53d4692bc4972abcf795 Mon Sep 17 00:00:00 2001 From: Matthias Melcher Date: Sun, 3 Sep 2023 00:09:32 +0200 Subject: Adds compact buttons feature to create keypads. See test/buttons for an example. --- fluid/Fl_Button_Type.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'fluid/Fl_Button_Type.h') diff --git a/fluid/Fl_Button_Type.h b/fluid/Fl_Button_Type.h index 743c1fdd5..c731ce7e7 100644 --- a/fluid/Fl_Button_Type.h +++ b/fluid/Fl_Button_Type.h @@ -35,6 +35,10 @@ public: int is_button() const FL_OVERRIDE { return 1; } ID id() const FL_OVERRIDE { return ID_Button; } bool is_a(ID inID) const FL_OVERRIDE { return (inID==ID_Button) ? true : super::is_a(inID); } + void write_properties(Fd_Project_Writer &f) FL_OVERRIDE; + void read_property(Fd_Project_Reader &f, const char *) FL_OVERRIDE; + void copy_properties() FL_OVERRIDE; + }; extern Fl_Button_Type Fl_Button_type; -- cgit v1.2.3