Bump version numbers, prepare release 1.3.9

Still to do: update bundled libs, maybe more.
This commit is contained in:
Albrecht Schlosser 2023-12-02 22:36:53 +01:00
parent fc6675aa87
commit 5a5baca1e2
52 changed files with 96 additions and 92 deletions

View File

@ -4,13 +4,14 @@ The initial FLTK 1.3.0 is based on the final 1.1.10.
Doxygen based documentation, and several new widgets including
Fl_Native_File_Chooser, Fl_Table, and Fl_Tree.
FLTK 1.3.8 and previous versions contain many improvements and bug fixes.
FLTK 1.3.9 and previous versions contain many improvements and bug fixes.
Please see CHANGES for a list of changes in FLTK 1.3.0 to 1.3.8.
Please see CHANGES for a list of changes in FLTK 1.3.0 to 1.3.9.
FLTK 1.3.8 is a maintenance release with minor enhancements and
some macOS related improvements. One new function 'fl_choice_n()'
has been introduced (please see docs for details).
FLTK 1.3.9 is a maintenance release with minor enhancements and
some macOS related improvements.
macOS is now supported up to macOS 14 (Sonoma).
Open bugs and feature requests can be viewed (offline) in KNOWN_BUGS.html
with your browser. Links in this file direct you to the current state
@ -19,11 +20,11 @@ FLTK 1.3.8 and previous versions contain many improvements and bug fixes.
Note: This file is a snapshot of https://www.fltk.org/roadmap.php
as of release 1.3.6 (May 15, 2021). Please take into account that some
bugs and/or feature requests in this list might have been fixed without
notice.
notice. It is intentional that this is an older version.
Bugs and feature requests for FLTK 1.4.x may also apply to FLTK 1.3.8.
Bugs and feature requests for FLTK 1.4.x may also apply to FLTK 1.3.9.
FLTK 1.3.8 is expected to be the last release in the 1.3.x series.
FLTK 1.3.9 is expected to be the last release in the 1.3.x series.
All bug reports for 1.3.x will be fixed in FLTK 1.4.x if possible.

View File

@ -1,7 +1,9 @@
CHANGES IN FLTK 1.3.9 RELEASED: ??? ?? 2023
CHANGES IN FLTK 1.3.9 RELEASED: Dec ?? 2023
FLTK 1.3.9 is a maintenance release with some fixes and enhancements.
Highlights: this release supports macOS up to macOS 14 "Sonoma".
Details:
Albrecht Schlosser:
@ -26,6 +28,7 @@ Details:
Issue #469: Fl_Sys_Menu_Bar menu item shortcuts using Escape or Tab do not work on Mac
Add support of macOS Ventura 13.0 and macOS Sonoma 14.0
Fix "Focus is lost leaving full screen on macOS 13" (#608)
Add support for macOS Sonoma 14
YX:
Fix IME problem (issue #270)

View File

@ -2,7 +2,7 @@
# Main CMakeLists.txt to build the FLTK project using CMake (www.cmake.org)
# Written by Michael Surette
#
# Copyright 1998-2021 by Bill Spitzak and others.
# Copyright 1998-2023 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
@ -47,7 +47,7 @@ set (OpenGL_GL_PREFERENCE LEGACY)
# define the FLTK project and version
#######################################################################
project (FLTK VERSION 1.3.8)
project (FLTK VERSION 1.3.9)
#######################################################################
# include macro definitions of generally used macros

View File

@ -1,7 +1,7 @@
//
// Enumerations for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2021 by Bill Spitzak and others.
// Copyright 1998-2023 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
@ -73,7 +73,7 @@
FLTK remains binary compatible between patches.
*/
#define FL_PATCH_VERSION 8
#define FL_PATCH_VERSION 9
/**
The FLTK version number as a \em double.

View File

@ -23,7 +23,7 @@
// =======================================================================
//
// generated by Fast Light User Interface Designer (fluid) version 1.0308
// generated by Fast Light User Interface Designer (fluid) version 1.0309
#ifndef Fl_File_Chooser_H
#define Fl_File_Chooser_H

View File

@ -23,7 +23,7 @@
// ========================================================================
//
// generated by Fast Light User Interface Designer (fluid) version 1.0308
// generated by Fast Light User Interface Designer (fluid) version 1.0309
#ifndef Fl_Help_Dialog_H
#define Fl_Help_Dialog_H

2
README
View File

@ -1,4 +1,4 @@
README - Fast Light Tool Kit (FLTK) Version 1.3.8
README - Fast Light Tool Kit (FLTK) Version 1.3.9
-------------------------------------------------
WHAT IS FLTK?

View File

@ -3,7 +3,7 @@ dnl the "configure" script is made from this by running GNU "autoconf"
dnl
dnl Configuration script for the Fast Light Tool Kit (FLTK).
dnl
dnl Copyright 1998-2021 by Bill Spitzak and others.
dnl Copyright 1998-2023 by Bill Spitzak and others.
dnl
dnl This library is free software. Distribution and use rights are outlined in
dnl the file "COPYING" which should have been included with this file. If this
@ -48,10 +48,10 @@ case $host_os in
;;
esac
dnl FLTK library versions...
dnl FLTK library versions, currently 1.3.9
FLTK_VERSION_MAJOR=1
FLTK_VERSION_MINOR=3
FLTK_VERSION_PATCH=8
FLTK_VERSION_PATCH=9
FL_DSO_VERSION=${FLTK_VERSION_MAJOR}.${FLTK_VERSION_MINOR}
FL_ABI_VERSION=${FLTK_VERSION_MAJOR}.${FLTK_VERSION_MINOR}.0
FLTK_VERSION=${FLTK_VERSION_MAJOR}.${FLTK_VERSION_MINOR}.${FLTK_VERSION_PATCH}

View File

@ -11,7 +11,7 @@
\end{DoxyImageNoCaption}\\
\vspace*{2cm}
{\Large
Revision 9.8 by F. Costantini, D. Gibson, M. Melcher, \\
Revision 9.9 by F. Costantini, D. Gibson, M. Melcher, \\
A. Schlosser, B. Spitzak, and M. Sweet.}\\
\vspace*{1.5cm}
{\large Copyright 1998-@YEAR@ by Bill Spitzak and others.}\\

View File

@ -1,7 +1,7 @@
<!--BEGIN GENERATE_TREEVIEW-->
<li class="footer">
<!-- Generated for $projectname by Doxygen -->
Copyright &copy; 1998-2021 by Bill Spitzak and others. &nbsp;&nbsp;&nbsp;
Copyright &copy; 1998-2023 by Bill Spitzak and others. &nbsp;&nbsp;&nbsp;
<a href="https://www.fltk.org"><img src="tiny.png" align="bottom" alt="FLTK"></a>
</li>
</ul>
@ -10,7 +10,7 @@
<!--BEGIN !GENERATE_TREEVIEW-->
<hr class="footer"/><address class="footer"><small>
<!-- Generated for $projectname by Doxygen -->
Copyright &copy; 1998-2021 by Bill Spitzak and others. &nbsp;&nbsp;&nbsp;
Copyright &copy; 1998-2023 by Bill Spitzak and others. &nbsp;&nbsp;&nbsp;
<a href="https://www.fltk.org"><img src="tiny.png" align="bottom" alt="FLTK"></a>
</small></address>
<hr class="footer"/><address class="footer"><small>

View File

@ -8,12 +8,12 @@
\image latex FL200.png "" width=5cm
</CENTER></TD>
<TD><CENTER>
<B>FLTK 1.3.8 Programming Manual</B>
<B>FLTK 1.3.9 Programming Manual</B>
Revision 9.8 by F.&nbsp;Costantini, D.&nbsp;Gibson, M.&nbsp;Melcher,
Revision 9.9 by F.&nbsp;Costantini, D.&nbsp;Gibson, M.&nbsp;Melcher,
A.&nbsp;Schlosser, B.&nbsp;Spitzak and M.&nbsp;Sweet.
Copyright 1998-2021 by Bill Spitzak and others.
Copyright 1998-2023 by Bill Spitzak and others.
</CENTER></TD>
</TR>
</TABLE>

View File

@ -3,7 +3,7 @@
\page preface Preface
This manual describes the Fast Light Tool Kit ("FLTK")
version 1.3.8, a C++ Graphical User Interface
version 1.3.9, a C++ Graphical User Interface
("GUI") toolkit for UNIX, Microsoft Windows and Apple OS X. Each
of the chapters in this manual is designed as a tutorial for
using FLTK, while the appendices provide a convenient reference
@ -75,7 +75,7 @@ was dropped after FLTK 1.0.10. FLTK uses the preprocessor definition
\section preface_copyrights Copyrights and Trademarks
FLTK is Copyright 1998-2021 by Bill Spitzak and others. Use and
FLTK is Copyright 1998-2023 by Bill Spitzak and others. Use and
distribution of FLTK is governed by the GNU Library General Public
License with 4 exceptions, located in \ref license.

View File

@ -3,7 +3,7 @@
#
# (EPM can be found at https://www.msweet.org/epm/)
#
# Copyright 1998-2021 by Bill Spitzak and others.
# Copyright 1998-2023 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
@ -17,7 +17,7 @@
#
%product Fast Light Tool Kit (FLTK)
%copyright 1998-2021 by Bill Spitzak and others.
%copyright 1998-2023 by Bill Spitzak and others.
%vendor FLTK Development Team
%license COPYING
%readme README

View File

@ -1,7 +1,7 @@
#
# RPM spec file for FLTK.
#
# Copyright 1998-2021 by Bill Spitzak and others.
# Copyright 1998-2023 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

View File

@ -1 +1 @@
1.3.8
1.3.9

View File

@ -3,7 +3,7 @@
//
// About dialog for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2021 by Bill Spitzak and others.
// Copyright 1998-2023 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
@ -16,7 +16,7 @@
// http://www.fltk.org/str.php
//
// generated by Fast Light User Interface Designer (fluid) version 1.0308
// generated by Fast Light User Interface Designer (fluid) version 1.0309
#include "about_panel.h"
void show_help(const char *name);
@ -282,7 +282,7 @@ Fl_Double_Window* make_about_panel() {
snprintf(about,sizeof(about),"FLTK User\nInterface Designer\nVersion %d.%d.%d",FL_MAJOR_VERSION,FL_MINOR_VERSION,FL_PATCH_VERSION);
o->copy_label(about);
} // Fl_Box* o
{ Fl_Box* o = new Fl_Box(135, 90, 200, 45, "Copyright 1998-2021 by\nBill Spitzak and others");
{ Fl_Box* o = new Fl_Box(135, 90, 200, 45, "Copyright 1998-2023 by\nBill Spitzak and others");
o->align(Fl_Align(132|FL_ALIGN_INSIDE));
} // Fl_Box* o
{ Fl_Button* o = new Fl_Button(115, 145, 123, 25, "View License...");

View File

@ -1,5 +1,5 @@
# data file for the Fltk User Interface Designer (fluid)
version 1.0308
version 1.0309
header_name {.h}
code_name {.cxx}
comment {//
@ -7,7 +7,7 @@ comment {//
//
// About dialog for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2021 by Bill Spitzak and others.
// Copyright 1998-2023 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
@ -45,7 +45,7 @@ Version x.x.x}
code2 {o->copy_label(about);}
}
Fl_Box {} {
label {Copyright 1998-2021 by
label {Copyright 1998-2023 by
Bill Spitzak and others}
xywh {135 90 200 45} align 148
}

View File

@ -3,7 +3,7 @@
//
// About dialog for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2021 by Bill Spitzak and others.
// Copyright 1998-2023 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
@ -16,7 +16,7 @@
// http://www.fltk.org/str.php
//
// generated by Fast Light User Interface Designer (fluid) version 1.0308
// generated by Fast Light User Interface Designer (fluid) version 1.0309
#ifndef about_panel_h
#define about_panel_h

View File

@ -3,7 +3,7 @@
//
// Setting and shell dialogs for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2021 by Bill Spitzak and others.
// Copyright 1998-2023 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
@ -16,7 +16,7 @@
// http://www.fltk.org/str.php
//
// generated by Fast Light User Interface Designer (fluid) version 1.0308
// generated by Fast Light User Interface Designer (fluid) version 1.0309
#include "alignment_panel.h"
#include <FL/Fl_Preferences.H>

View File

@ -1,5 +1,5 @@
# data file for the Fltk User Interface Designer (fluid)
version 1.0308
version 1.0309
header_name {.h}
code_name {.cxx}
comment {//
@ -7,7 +7,7 @@ comment {//
//
// Setting and shell dialogs for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2021 by Bill Spitzak and others.
// Copyright 1998-2023 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

View File

@ -3,7 +3,7 @@
//
// Setting and shell dialogs for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2021 by Bill Spitzak and others.
// Copyright 1998-2023 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
@ -16,7 +16,7 @@
// http://www.fltk.org/str.php
//
// generated by Fast Light User Interface Designer (fluid) version 1.0308
// generated by Fast Light User Interface Designer (fluid) version 1.0309
#ifndef alignment_panel_h
#define alignment_panel_h

View File

@ -9,11 +9,11 @@
<key>CFBundleIdentifier</key>
<string>org.fltk.fluid</string>
<key>CFBundleVersion</key>
<string>1.3.8</string>
<string>1.3.9</string>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>NSHumanReadableCopyright</key>
<string>Copyright 1998-2021 by Bill Spitzak and others</string>
<string>Copyright 1998-2023 by Bill Spitzak and others</string>
<key>CFAppleHelpAnchor</key>
<string>help</string>
<key>CFBundleName</key>
@ -25,9 +25,9 @@
<key>CFBundleIconFile</key>
<string>fluid.icns</string>
<key>CFBundleShortVersionString</key>
<string>1.3.8</string>
<string>1.3.9</string>
<key>CFBundleGetInfoString</key>
<string>1.3.8, Copyright 1998-2021 by Bill Spitzak and others</string>
<string>1.3.9, Copyright 1998-2023 by Bill Spitzak and others</string>
<key>CFBundleDocumentTypes</key>
<array>
<dict>

View File

@ -3,7 +3,7 @@
//
// Code dialogs for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2021 by Bill Spitzak and others.
// Copyright 1998-2023 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
@ -16,7 +16,7 @@
// http://www.fltk.org/str.php
//
// generated by Fast Light User Interface Designer (fluid) version 1.0308
// generated by Fast Light User Interface Designer (fluid) version 1.0309
#include "function_panel.h"
#include <FL/Fl_Pixmap.H>

View File

@ -1,5 +1,5 @@
# data file for the Fltk User Interface Designer (fluid)
version 1.0308
version 1.0309
header_name {.h}
code_name {.cxx}
comment {//
@ -7,7 +7,7 @@ comment {//
//
// Code dialogs for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2021 by Bill Spitzak and others.
// Copyright 1998-2023 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

View File

@ -3,7 +3,7 @@
//
// Code dialogs for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2021 by Bill Spitzak and others.
// Copyright 1998-2023 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
@ -16,7 +16,7 @@
// http://www.fltk.org/str.php
//
// generated by Fast Light User Interface Designer (fluid) version 1.0308
// generated by Fast Light User Interface Designer (fluid) version 1.0309
#ifndef function_panel_h
#define function_panel_h

View File

@ -3,7 +3,7 @@
//
// FLUID print panel for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2021 by Bill Spitzak and others.
// Copyright 1998-2023 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
@ -16,7 +16,7 @@
// http://www.fltk.org/str.php
//
// generated by Fast Light User Interface Designer (fluid) version 1.0308
// generated by Fast Light User Interface Designer (fluid) version 1.0309
#include "print_panel.h"
#include <stdio.h>

View File

@ -1,5 +1,5 @@
# data file for the Fltk User Interface Designer (fluid)
version 1.0308
version 1.0309
header_name {.h}
code_name {.cxx}
comment {//
@ -7,7 +7,7 @@ comment {//
//
// FLUID print panel for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2021 by Bill Spitzak and others.
// Copyright 1998-2023 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

View File

@ -3,7 +3,7 @@
//
// FLUID print panel for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2021 by Bill Spitzak and others.
// Copyright 1998-2023 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
@ -16,7 +16,7 @@
// http://www.fltk.org/str.php
//
// generated by Fast Light User Interface Designer (fluid) version 1.0308
// generated by Fast Light User Interface Designer (fluid) version 1.0309
#ifndef print_panel_h
#define print_panel_h

View File

@ -3,7 +3,7 @@
//
// FLUID template support for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2021 by Bill Spitzak and others.
// Copyright 1998-2023 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
@ -16,7 +16,7 @@
// http://www.fltk.org/str.php
//
// generated by Fast Light User Interface Designer (fluid) version 1.0308
// generated by Fast Light User Interface Designer (fluid) version 1.0309
#include "template_panel.h"
#include <stdio.h>

View File

@ -1,5 +1,5 @@
# data file for the Fltk User Interface Designer (fluid)
version 1.0308
version 1.0309
header_name {.h}
code_name {.cxx}
comment {//
@ -7,7 +7,7 @@ comment {//
//
// FLUID template support for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2021 by Bill Spitzak and others.
// Copyright 1998-2023 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

View File

@ -3,7 +3,7 @@
//
// FLUID template support for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2021 by Bill Spitzak and others.
// Copyright 1998-2023 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
@ -16,7 +16,7 @@
// http://www.fltk.org/str.php
//
// generated by Fast Light User Interface Designer (fluid) version 1.0308
// generated by Fast Light User Interface Designer (fluid) version 1.0309
#ifndef template_panel_h
#define template_panel_h

View File

@ -3,7 +3,7 @@
//
// Widget panel for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2021 by Bill Spitzak and others.
// Copyright 1998-2023 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
@ -16,7 +16,7 @@
// http://www.fltk.org/str.php
//
// generated by Fast Light User Interface Designer (fluid) version 1.0308
// generated by Fast Light User Interface Designer (fluid) version 1.0309
#include "widget_panel.h"
extern void comment_cb(Fl_Text_Editor*, void*);

View File

@ -1,5 +1,5 @@
# data file for the Fltk User Interface Designer (fluid)
version 1.0308
version 1.0309
header_name {.h}
code_name {.cxx}
comment {//
@ -7,7 +7,7 @@ comment {//
//
// Widget panel for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2021 by Bill Spitzak and others.
// Copyright 1998-2023 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

View File

@ -3,7 +3,7 @@
//
// Widget panel for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2021 by Bill Spitzak and others.
// Copyright 1998-2023 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
@ -16,7 +16,7 @@
// http://www.fltk.org/str.php
//
// generated by Fast Light User Interface Designer (fluid) version 1.0308
// generated by Fast Light User Interface Designer (fluid) version 1.0309
#ifndef widget_panel_h
#define widget_panel_h

View File

@ -1,5 +1,5 @@
# data file for the Fltk User Interface Designer (fluid)
version 1.0308
version 1.0309
header_name {.h}
code_name {.cxx}
Function {make_window()} {open

View File

@ -40,7 +40,7 @@
<key>CFBundleSignature</key>
<string>FLTK</string>
<key>CFBundleVersion</key>
<string>1.3.8</string>
<string>1.3.9</string>
<key>NSHumanReadableCopyright</key>
<string>Copyright 1998-2021 by Bill Spitzak and others.</string>
<key>CFBundleGetInfoString</key>

View File

@ -23,7 +23,7 @@
// =======================================================================
//
// generated by Fast Light User Interface Designer (fluid) version 1.0308
// generated by Fast Light User Interface Designer (fluid) version 1.0309
#include "../FL/Fl_File_Chooser.H"
#include <FL/fl_draw.H>

View File

@ -1,5 +1,5 @@
# data file for the Fltk User Interface Designer (fluid)
version 1.0308
version 1.0309
header_name {../FL/Fl_File_Chooser.H}
code_name {.cxx}
comment {//

View File

@ -23,7 +23,7 @@
// ========================================================================
//
// generated by Fast Light User Interface Designer (fluid) version 1.0308
// generated by Fast Light User Interface Designer (fluid) version 1.0309
#include "../FL/Fl_Help_Dialog.H"
#include "flstring.h"

View File

@ -1,5 +1,5 @@
# data file for the Fltk User Interface Designer (fluid)
version 1.0308
version 1.0309
header_name {../FL/Fl_Help_Dialog.H}
code_name {.cxx}
comment {//

View File

@ -1,7 +1,7 @@
//
// MacOS-Cocoa specific code for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2021 by Bill Spitzak and others.
// Copyright 1998-2023 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

View File

@ -1,5 +1,5 @@
# data file for the Fltk User Interface Designer (fluid)
version 1.0308
version 1.0309
header_name {.h}
code_name {.cxx}
class CubeViewUI {open

View File

@ -1,5 +1,5 @@
# data file for the Fltk User Interface Designer (fluid)
version 1.0308
version 1.0309
header_name {.h}
code_name {.cxx}
Function {} {open

View File

@ -1,5 +1,5 @@
# data file for the Fltk User Interface Designer (fluid)
version 1.0308
version 1.0309
header_name {.h}
code_name {.cxx}
Function {} {open

View File

@ -1,5 +1,5 @@
# data file for the Fltk User Interface Designer (fluid)
version 1.0308
version 1.0309
header_name {.h}
code_name {.cxx}
Function {make_window()} {open

View File

@ -1,5 +1,5 @@
# data file for the Fltk User Interface Designer (fluid)
version 1.0308
version 1.0309
header_name {.h}
code_name {.cxx}
decl {\#include "mandelbrot.h"} {public local

View File

@ -1,5 +1,5 @@
# data file for the Fltk User Interface Designer (fluid)
version 1.0308
version 1.0309
header_name {.h}
code_name {.cxx}
decl {\#include <FL/Fl_Preferences.H>} {public local

View File

@ -1,5 +1,5 @@
# data file for the Fltk User Interface Designer (fluid)
version 1.0308
version 1.0309
header_name {.h}
code_name {.cxx}
Function {button_cb(Fl_Button *b, void *)} {

View File

@ -1,5 +1,5 @@
# data file for the Fltk User Interface Designer (fluid)
version 1.0308
version 1.0309
header_name {.h}
code_name {.cxx}
Function {} {open

View File

@ -1,5 +1,5 @@
# data file for the Fltk User Interface Designer (fluid)
version 1.0308
version 1.0309
header_name {.h}
code_name {.cxx}
Function {} {open

View File

@ -1,5 +1,5 @@
# data file for the Fltk User Interface Designer (fluid)
version 1.0308
version 1.0309
header_name {.h}
code_name {.cxx}
decl {\#include <stdio.h>} {public global

View File

@ -1,5 +1,5 @@
# data file for the Fltk User Interface Designer (fluid)
version 1.0308
version 1.0309
header_name {.h}
code_name {.cxx}
Function {callback(Fl_Widget* o, void*)} {open private return_type void