![Albrecht Schlosser](/assets/img/avatar_default.png)
- remove obsolete svn '$Id$' tags from all source files - update .fl files and generated files accordingly - replace 'http://www.fltk.org' URL's with 'https://...' - replace bug report URL 'str.php' with 'bugs.php' - remove trailing whitespace - fix other whitespace errors flagged by Git - add and/or fix missing or wrong standard headers - convert tabs to spaces in all source files The only relevant code changes are in the fluid/ folder where some .fl files and other source files were used to generate the '$Id' headers and footers.
69 lines
1.6 KiB
C++
69 lines
1.6 KiB
C++
//
|
|
// 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:
|
|
//
|
|
// https://www.fltk.org/COPYING.php
|
|
//
|
|
// Please see the following page on how to report bugs and issues:
|
|
//
|
|
// https://www.fltk.org/bugs.php
|
|
//
|
|
// Contents:
|
|
//
|
|
// main() - Display the help GUI...
|
|
//
|
|
|
|
//
|
|
// Include necessary headers...
|
|
//
|
|
|
|
#include <FL/Fl_Help_Dialog.H>
|
|
#include <FL/filename.H> /* FL_PATH_MAX */
|
|
#include <string.h> /* strcpy(), etc */
|
|
|
|
//
|
|
// '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;
|
|
char htmlname[FL_PATH_MAX];
|
|
#ifdef __APPLE__
|
|
int i = 1;
|
|
while (i < argc && Fl::arg(argc, argv, i)) i++;
|
|
if (i < argc) {
|
|
strcpy(htmlname, argv[i]);
|
|
} else {
|
|
// bundled apps do not set the current directory
|
|
strcpy(htmlname, argv[0]);
|
|
char *slash = strrchr(htmlname, '/');
|
|
if (slash) strcpy(slash, "/../Resources/help_dialog.html");
|
|
}
|
|
#else
|
|
if (argc > 1) {
|
|
strcpy(htmlname, argv[1]);
|
|
} else {
|
|
strcpy(htmlname, "help_dialog.html");
|
|
}
|
|
#endif
|
|
|
|
help->load(htmlname); // TODO: add error check (when load() returns int instead of void)
|
|
|
|
help->show(1, argv);
|
|
|
|
Fl::run();
|
|
|
|
delete help;
|
|
|
|
return 0;
|
|
}
|