summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorGreg Ercolano <erco@seriss.com>2021-11-26 13:13:58 -0800
committerGreg Ercolano <erco@seriss.com>2021-11-26 13:13:58 -0800
commit84c09ae7b2de0ad9142551ebd4f53a7e113902b4 (patch)
tree74a14d008fbcee47c54035aa7acec2ebefd38ab1 /test
parent6fc5c16e1c08d61e34cb4b145663afbbab152e41 (diff)
Fixes #297 - improvements for icon.cxx + icon() docs
Diffstat (limited to 'test')
-rw-r--r--test/icon.cxx24
1 files changed, 17 insertions, 7 deletions
diff --git a/test/icon.cxx b/test/icon.cxx
index f3c60c82d..1c9c507ee 100644
--- a/test/icon.cxx
+++ b/test/icon.cxx
@@ -1,5 +1,5 @@
//
-// Icon test program for the Fast Light Tool Kit (FLTK).
+// Window icon test program for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2021 by Bill Spitzak and others.
//
@@ -23,13 +23,20 @@ static Fl_Double_Window *win;
void choice_cb(Fl_Widget *, void *v) {
Fl_Color c = (Fl_Color)fl_uint(v);
- static uchar buffer[32*32*3]; // static: issue #296
- Fl_RGB_Image icon(buffer, 32, 32, 3);
- icon.color_average(c, 0.0);
- win->icon(&icon);
+ if ( c != 0 ) {
+ // choice was "Red", "Green"..
+ static uchar buffer[32*32*3]; // static: issue #296
+ Fl_RGB_Image rgbicon(buffer, 32, 32, 3);
+ rgbicon.color_average(c, 0.0);
+ win->icon(&rgbicon); // once assigned, 'rgbicon' can go out of scope
+ } else {
+ // choice was "None"..
+ win->icon((Fl_RGB_Image*)0); // reset window icon
+ }
}
Fl_Menu_Item choices[] = {
+ {"None", 0, choice_cb, fl_voidptr(0)},
{"Red", 0, choice_cb, fl_voidptr(FL_RED)},
{"Green", 0, choice_cb, fl_voidptr(FL_GREEN)},
{"Blue", 0, choice_cb, fl_voidptr(FL_BLUE)},
@@ -37,15 +44,18 @@ Fl_Menu_Item choices[] = {
};
int main(int argc, char **argv) {
- Fl_Double_Window window(400,300);
+ Fl_Double_Window window(400,300, "FLTK Window Icon Test");
win = &window;
- Fl_Choice choice(80,100,200,25,"Colour:");
+ Fl_Choice choice(120,100,200,25,"Window icon:");
choice.menu(choices);
choice.callback(choice_cb);
choice.when(FL_WHEN_RELEASE|FL_WHEN_NOT_CHANGED);
+ choice.tooltip("Sets the application icon for window manager. "
+ "Affects e.g. titlebar, toolbar, Dock, Alt-Tab..");
window.end();
window.show(argc,argv);
+ choice.do_callback(); // make default take effect
return Fl::run();
}