1998-10-20 17:25:25 +04:00
|
|
|
//
|
|
|
|
// Another button test program for the Fast Light Tool Kit (FLTK).
|
|
|
|
//
|
2022-07-27 20:44:37 +03:00
|
|
|
// Copyright 1998-2022 by Bill Spitzak and others.
|
1998-10-20 17:25:25 +04:00
|
|
|
//
|
2011-07-19 08:49:30 +04:00
|
|
|
// 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:
|
|
|
|
//
|
2020-07-01 19:03:10 +03:00
|
|
|
// https://www.fltk.org/COPYING.php
|
1998-10-20 17:25:25 +04:00
|
|
|
//
|
2020-07-01 19:03:10 +03:00
|
|
|
// Please see the following page on how to report bugs and issues:
|
2005-04-16 04:13:17 +04:00
|
|
|
//
|
2020-07-01 19:03:10 +03:00
|
|
|
// https://www.fltk.org/bugs.php
|
1998-10-20 17:25:25 +04:00
|
|
|
//
|
1998-10-06 22:21:25 +04:00
|
|
|
|
|
|
|
#include <FL/Fl.H>
|
|
|
|
#include <FL/Fl_Window.H>
|
|
|
|
#include <FL/Fl_Button.H>
|
|
|
|
#include <FL/Fl_Return_Button.H>
|
|
|
|
#include <FL/Fl_Repeat_Button.H>
|
|
|
|
#include <FL/Fl_Check_Button.H>
|
|
|
|
#include <FL/Fl_Light_Button.H>
|
|
|
|
#include <FL/Fl_Round_Button.H>
|
|
|
|
|
2022-07-27 20:44:37 +03:00
|
|
|
int main(int argc, char **argv) {
|
|
|
|
Fl_Window *window = new Fl_Window(320, 130);
|
2010-11-14 14:02:18 +03:00
|
|
|
Fl_Button *b = new Fl_Button(10, 10, 130, 30, "Fl_Button");
|
|
|
|
b->tooltip("This is a Tooltip.");
|
1998-10-06 22:21:25 +04:00
|
|
|
new Fl_Return_Button(150, 10, 160, 30, "Fl_Return_Button");
|
2022-07-27 20:44:37 +03:00
|
|
|
new Fl_Repeat_Button(10, 50, 130, 30, "Fl_Repeat_Button");
|
|
|
|
new Fl_Round_Button(150, 50, 160, 30, "Fl_Round_Button");
|
|
|
|
new Fl_Light_Button(10, 90, 130, 30, "Fl_Light_Button");
|
|
|
|
new Fl_Check_Button(150, 90, 160, 30, "Fl_Check_Button");
|
1998-10-06 22:21:25 +04:00
|
|
|
window->end();
|
2022-07-27 20:44:37 +03:00
|
|
|
window->resizable(window);
|
|
|
|
window->size_range(320, 130);
|
|
|
|
window->show(argc, argv);
|
1998-10-06 22:21:25 +04:00
|
|
|
return Fl::run();
|
|
|
|
}
|