summaryrefslogtreecommitdiff
path: root/test/buttons.cxx
diff options
context:
space:
mode:
authorMatthias Melcher <github@matthiasm.com>2023-09-03 00:09:32 +0200
committerMatthias Melcher <github@matthiasm.com>2023-09-03 00:09:40 +0200
commit5e8adebac2899d60fffc53d4692bc4972abcf795 (patch)
treeb79581c85dc80c4d132390de42c15faee8f3d4c9 /test/buttons.cxx
parent502fa72eb472382cc47964874893085fb88116f5 (diff)
Adds compact buttons feature to create keypads.
See test/buttons for an example.
Diffstat (limited to 'test/buttons.cxx')
-rw-r--r--test/buttons.cxx21
1 files changed, 20 insertions, 1 deletions
diff --git a/test/buttons.cxx b/test/buttons.cxx
index e93f4dc8e..f5a945994 100644
--- a/test/buttons.cxx
+++ b/test/buttons.cxx
@@ -25,7 +25,7 @@
#include <FL/Fl_Scheme_Choice.H>
int main(int argc, char **argv) {
- Fl_Window *window = new Fl_Window(320, 170);
+ Fl_Window *window = new Fl_Window(420, 170);
Fl_Button *b1 = new Fl_Button(10, 10, 130, 30, "Fl_Button");
b1->tooltip("Fl_Button");
Fl_Button *b2 = new Fl_Return_Button(150, 10, 160, 30, "Fl_Return_Button");
@@ -39,6 +39,25 @@ int main(int argc, char **argv) {
Fl_Button *b6 = new Fl_Check_Button(150, 90, 160, 30, "Fl_Check_Button");
b6->tooltip("Fl_Check_Button");
+ Fl_Group *keypad = new Fl_Group(320, 10, 90, 120);
+ Fl_Button *kp[11];
+ kp[7] = new Fl_Button(320, 10, 30, 30, "7");
+ kp[8] = new Fl_Button(350, 10, 30, 30, "8");
+ kp[9] = new Fl_Button(380, 10, 30, 30, "9");
+ kp[4] = new Fl_Button(320, 40, 30, 30, "4");
+ kp[5] = new Fl_Button(350, 40, 30, 30, "5");
+ kp[6] = new Fl_Button(380, 40, 30, 30, "6");
+ kp[1] = new Fl_Button(320, 70, 30, 30, "1");
+ kp[2] = new Fl_Button(350, 70, 30, 30, "2");
+ kp[3] = new Fl_Button(380, 70, 30, 30, "3");
+ kp[0] = new Fl_Button(320, 100, 60, 30, "0");
+ kp[10] = new Fl_Button(380, 100, 30, 30, ".");
+ for (int i=0; i<11; i++) {
+ kp[i]->compact(1);
+ kp[i]->selection_color(FL_SELECTION_COLOR);
+ }
+ keypad->end();
+
// Add a scheme choice widget for easier testing. Position the widget at
// the right window border so the menu popup doesn't cover the check boxes etc.
Fl_Scheme_Choice *scheme_choice = new Fl_Scheme_Choice(180, 130, 130, 30, "Active FLTK Scheme:");