summaryrefslogtreecommitdiff
path: root/test/help_dialog.cxx
blob: e7334e8b20173fe352cf759c5d1e9cdbc5e9d04a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
//
// 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/Fl_GIF_Image.H>
#include <FL/filename.H>        /* FL_PATH_MAX */
#include <FL/Fl.H>              /* Fl::first_window(), etc */
#include <string.h>             /* strcpy(), etc */

static void cb_refresh(void *d) {
  // trigger a redraw of the window to see animated GIF's
  if (Fl::first_window())
    Fl::first_window()->redraw();
  Fl::repeat_timeout(1./10, cb_refresh, d);
}

//
// '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_GIF_Image::animate = true; // create animated shared .GIF images
  Fl_Help_Dialog *help = new Fl_Help_Dialog;
  int i;
  Fl::args_to_utf8(argc, argv); // for MSYS2/MinGW
  if (!Fl::args(argc, argv, i)) Fl::fatal(Fl::help);
  const char *fname = (i < argc) ? argv[i] : "help_dialog.html";

  help->load(fname); // TODO: add error check (when load() returns int instead of void)

  help->show(1, argv);

  Fl::add_timeout(1./10, cb_refresh, help); // to animate GIF's
  Fl::run();

  delete help;

  return 0;
}