Tweak themes for more color consistency.
[ntk.git] / test / ask.cxx
blobf516da083e192ffd1dd812d404835adefd070804
1 //
2 // "$Id: ask.cxx 8441 2011-02-18 08:52:48Z AlbrechtS $"
3 //
4 // Standard dialog test program for the Fast Light Tool Kit (FLTK).
5 //
6 // Demonstrates how to use readqueue to see if a button has been
7 // pushed, and to see if a window has been closed, thus avoiding
8 // the need to define callbacks.
9 //
10 // This also demonstrates how to trap attempts by the user to
11 // close the last window by overriding Fl::exit
13 // Copyright 1998-2010 by Bill Spitzak and others.
15 // This library is free software; you can redistribute it and/or
16 // modify it under the terms of the GNU Library General Public
17 // License as published by the Free Software Foundation; either
18 // version 2 of the License, or (at your option) any later version.
20 // This library is distributed in the hope that it will be useful,
21 // but WITHOUT ANY WARRANTY; without even the implied warranty of
22 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
23 // Library General Public License for more details.
25 // You should have received a copy of the GNU Library General Public
26 // License along with this library; if not, write to the Free Software
27 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
28 // USA.
30 // Please report all bugs and problems on the following page:
32 // http://www.fltk.org/str.php
35 #include <stdio.h>
36 #include <string.h>
37 #include <FL/Fl.H>
38 #include <FL/Fl_Double_Window.H>
39 #include <FL/Fl_Input.H>
40 #include <FL/Fl_Button.H>
41 #include <FL/Fl_Return_Button.H>
43 #include <FL/fl_ask.H>
44 #include <stdlib.h>
46 void update_input_text(Fl_Widget* o, const char *input) {
47 if (input) {
48 o->copy_label(input);
49 o->redraw();
53 void rename_me(Fl_Widget*o) {
54 const char *input = fl_input("Input:", o->label());
55 update_input_text(o, input);
58 void rename_me_pwd(Fl_Widget*o) {
59 const char *input = fl_password("Input PWD:", o->label());
60 update_input_text(o, input);
63 void window_callback(Fl_Widget*, void*) {
64 int hotspot = fl_message_hotspot();
65 fl_message_hotspot(0);
66 fl_message_title("note: no hotspot set for this dialog");
67 int rep = fl_choice("Are you sure you want to quit?",
68 "Cancel", "Quit", "Dunno");
69 fl_message_hotspot(hotspot);
70 if (rep==1)
71 exit(0);
72 else if (rep==2)
73 fl_message("Well, maybe you should know before we quit.");
76 int main(int argc, char **argv) {
77 char buffer[128] = "Test text";
78 char buffer2[128] = "MyPassword";
80 // this is a test to make sure automatic destructors work. Pop up
81 // the question dialog several times and make sure it doesn't crash.
82 // fc: added more fl_ask common dialogs for test cases purposes.
84 Fl_Double_Window window(200, 105);
85 Fl_Return_Button b(20, 10, 160, 35, buffer); b.callback(rename_me);
86 Fl_Button b2(20, 50, 160, 35, buffer2); b2.callback(rename_me_pwd);
87 window.end();
88 window.resizable(&b);
89 window.show(argc, argv);
91 // Also we test to see if the exit callback works:
92 window.callback(window_callback);
94 // set default message window title
95 // fl_message_title_default("Default Window Title");
97 return Fl::run();
101 // End of "$Id: ask.cxx 8441 2011-02-18 08:52:48Z AlbrechtS $".