summaryrefslogtreecommitdiff
path: root/test/fltk-versions.cxx
blob: ed80c7b1f61b3ed3690203788a75d0e445283c6e (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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
//
// Library version test program for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-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
//

#include <FL/Fl.H>
#include <FL/Fl_Window.H>
#include <FL/Fl_Box.H>
#include <FL/fl_ask.H>

#include <stdio.h>

static char version[8][80] = { "","","","","","","","" };

int main(int argc, char **argv) {

  int versions = 0;

  sprintf(version[versions++],"FL_VERSION        = %6.4f",FL_VERSION);
  sprintf(version[versions++],"Fl::version()     = %6.4f  %s",Fl::version(),
    (FL_VERSION == Fl::version()) ? "" : "***");

#ifdef FL_API_VERSION
  sprintf(version[versions++],"FL_API_VERSION    = %6d",FL_API_VERSION);
  sprintf(version[versions++],"Fl::api_version() = %6d  %s",Fl::api_version(),
    (FL_API_VERSION == Fl::api_version()) ? "" : "***");
#endif

#ifdef FL_ABI_VERSION
  sprintf(version[versions++],"FL_ABI_VERSION    = %6d",FL_ABI_VERSION);
  sprintf(version[versions++],"Fl::abi_version() = %6d  %s",Fl::abi_version(),
    (FL_ABI_VERSION == Fl::abi_version()) ? "" : "***");
#endif

  for (int i=0; i<versions; i++) {
    printf("%s\n",version[i]);
  }
  fflush(stdout);

#ifdef FL_ABI_VERSION
  if (FL_ABI_VERSION != Fl::abi_version()) {
    printf("*** FLTK ABI version mismatch: headers = %d, lib = %d ***\n",
      FL_ABI_VERSION, Fl::abi_version());
    fflush(stdout);
    fl_message("*** FLTK ABI version mismatch: headers = %d, lib = %d ***",
      FL_ABI_VERSION, Fl::abi_version());
    // exit(1);
  }
#endif

  Fl_Window *window = new Fl_Window(670,300);

  Fl_Box *box[8];
  for (int i=0; i<4; i++) {
    box[2*i]   = new Fl_Box( 10,40+40*i,320,30,version[2*i]);
    box[2*i+1] = new Fl_Box(340,40+40*i,320,30,version[2*i+1]);
  }

  for (int i=0; i<8; i++) {
    box[i]->labelfont(FL_COURIER);
    box[i]->align(FL_ALIGN_LEFT | FL_ALIGN_INSIDE);
  }

  window->end();
  window->show(argc, argv);
  return Fl::run();
}