summaryrefslogtreecommitdiff
path: root/test/help_dialog.cxx
diff options
context:
space:
mode:
authorAlbrecht Schlosser <albrechts.fltk@online.de>2017-02-08 02:06:52 +0000
committerAlbrecht Schlosser <albrechts.fltk@online.de>2017-02-08 02:06:52 +0000
commit16774ddc4e000c89e560fde0ced8be9814ef041e (patch)
tree38b8bdd8424070d56889f982591a6c4b413977f7 /test/help_dialog.cxx
parent759d2f1c99560468e17d656d395db87796deea94 (diff)
Rename test/help demo program to test/help_dialog.
This change avoids a name conflict with CMake's auto-generated target 'help' for "Unix Makefiles", "Ninja", and supposedly other generators as well. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.4@12171 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'test/help_dialog.cxx')
-rw-r--r--test/help_dialog.cxx73
1 files changed, 73 insertions, 0 deletions
diff --git a/test/help_dialog.cxx b/test/help_dialog.cxx
new file mode 100644
index 000000000..03f697e8f
--- /dev/null
+++ b/test/help_dialog.cxx
@@ -0,0 +1,73 @@
+//
+// "$Id$"
+//
+// Fl_Help_Dialog test program.
+//
+// Copyright 1999-2010 by Easy Software Products.
+// Copyright 2011-2017 by Bill Spitzak and others.
+//
+// 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:
+//
+// http://www.fltk.org/COPYING.php
+//
+// Please report all bugs and problems on the following page:
+//
+// http://www.fltk.org/str.php
+//
+// Contents:
+//
+// main() - Display the help GUI...
+//
+
+//
+// Include necessary headers...
+//
+
+#include <FL/Fl_Help_Dialog.H>
+#include <stdio.h>
+
+//
+// 'main()' - Display the help GUI...
+//
+
+int // O - Exit status
+main(int argc, // I - Number of command-line arguments
+ char *argv[]) // I - Command-line arguments
+{
+ Fl_Help_Dialog *help = new Fl_Help_Dialog;
+
+#ifdef __APPLE__
+
+ // bundled apps do not set the current directory
+ char htmlname[1000];
+ strcpy(htmlname, argv[0]);
+ char *slash = strrchr(htmlname, '/');
+ if (slash)
+ strcpy(slash, "/../Resources/help_dialog.html");
+ FILE *in = fl_fopen(htmlname, "r");
+ if (in) {
+ fclose(in);
+ help->load(htmlname);
+ } else
+
+#endif
+
+ if (argc <= 1)
+ help->load("help_dialog.html");
+ else
+ help->load(argv[1]);
+
+ help->show(1, argv);
+
+ Fl::run();
+
+ delete help;
+
+ return 0;
+}
+
+//
+// End of "$Id$".
+//