mirror of
https://github.com/fltk/fltk.git
synced 2026-05-28 11:25:22 +08:00
Bump version numbers for next minor release: FLTK 1.4.0.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11088 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
+2
-2
@@ -22,8 +22,8 @@
|
|||||||
#######################################################################
|
#######################################################################
|
||||||
# The FLTK version
|
# The FLTK version
|
||||||
set(FLTK_VERSION_MAJOR "1")
|
set(FLTK_VERSION_MAJOR "1")
|
||||||
set(FLTK_VERSION_MINOR "3")
|
set(FLTK_VERSION_MINOR "4")
|
||||||
set(FLTK_VERSION_PATCH "4")
|
set(FLTK_VERSION_PATCH "0")
|
||||||
set(FLTK_VERSION "${FLTK_VERSION_MAJOR}.${FLTK_VERSION_MINOR}")
|
set(FLTK_VERSION "${FLTK_VERSION_MAJOR}.${FLTK_VERSION_MINOR}")
|
||||||
set(FLTK_VERSION_FULL "${FLTK_VERSION}.${FLTK_VERSION_PATCH}")
|
set(FLTK_VERSION_FULL "${FLTK_VERSION}.${FLTK_VERSION_PATCH}")
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
CREDITS - Fast Light Tool Kit (FLTK) Version 1.3.4
|
CREDITS - Fast Light Tool Kit (FLTK) Version 1.4.0
|
||||||
--------------------------------------------------
|
--------------------------------------------------
|
||||||
|
|
||||||
This file lists the people responsible for the toolkit you are
|
This file lists the people responsible for the toolkit you are
|
||||||
|
|||||||
+2
-2
@@ -69,14 +69,14 @@
|
|||||||
|
|
||||||
FLTK remains mostly source-code compatible between minor version changes.
|
FLTK remains mostly source-code compatible between minor version changes.
|
||||||
*/
|
*/
|
||||||
#define FL_MINOR_VERSION 3
|
#define FL_MINOR_VERSION 4
|
||||||
|
|
||||||
/**
|
/**
|
||||||
The patch version for this library.
|
The patch version for this library.
|
||||||
|
|
||||||
FLTK remains binary compatible between patches.
|
FLTK remains binary compatible between patches.
|
||||||
*/
|
*/
|
||||||
#define FL_PATCH_VERSION 4
|
#define FL_PATCH_VERSION 0
|
||||||
|
|
||||||
/**
|
/**
|
||||||
The FLTK version number as a \em double.
|
The FLTK version number as a \em double.
|
||||||
|
|||||||
@@ -23,7 +23,7 @@
|
|||||||
// =========================================================================
|
// =========================================================================
|
||||||
//
|
//
|
||||||
|
|
||||||
// generated by Fast Light User Interface Designer (fluid) version 1.0304
|
// generated by Fast Light User Interface Designer (fluid) version 1.0400
|
||||||
|
|
||||||
#ifndef Fl_File_Chooser_H
|
#ifndef Fl_File_Chooser_H
|
||||||
#define Fl_File_Chooser_H
|
#define Fl_File_Chooser_H
|
||||||
|
|||||||
+1
-1
@@ -23,7 +23,7 @@
|
|||||||
// ========================================================================
|
// ========================================================================
|
||||||
//
|
//
|
||||||
|
|
||||||
// generated by Fast Light User Interface Designer (fluid) version 1.0304
|
// generated by Fast Light User Interface Designer (fluid) version 1.0400
|
||||||
|
|
||||||
#ifndef Fl_Help_Dialog_H
|
#ifndef Fl_Help_Dialog_H
|
||||||
#define Fl_Help_Dialog_H
|
#define Fl_Help_Dialog_H
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
README - Fast Light Tool Kit (FLTK) Version 1.3.4
|
README - Fast Light Tool Kit (FLTK) Version 1.4.0
|
||||||
-------------------------------------------------
|
-------------------------------------------------
|
||||||
|
|
||||||
WHAT IS FLTK?
|
WHAT IS FLTK?
|
||||||
|
|||||||
+2
-2
@@ -51,8 +51,8 @@ esac
|
|||||||
|
|
||||||
dnl FLTK library versions...
|
dnl FLTK library versions...
|
||||||
FL_MAJOR_VERSION=1
|
FL_MAJOR_VERSION=1
|
||||||
FL_MINOR_VERSION=3
|
FL_MINOR_VERSION=4
|
||||||
FL_PATCH_VERSION=4
|
FL_PATCH_VERSION=0
|
||||||
FL_DSO_VERSION=${FL_MAJOR_VERSION}.${FL_MINOR_VERSION}
|
FL_DSO_VERSION=${FL_MAJOR_VERSION}.${FL_MINOR_VERSION}
|
||||||
FL_ABI_VERSION=${FL_MAJOR_VERSION}.${FL_MINOR_VERSION}.0
|
FL_ABI_VERSION=${FL_MAJOR_VERSION}.${FL_MINOR_VERSION}.0
|
||||||
FL_VERSION=${FL_MAJOR_VERSION}.${FL_MINOR_VERSION}.${FL_PATCH_VERSION}
|
FL_VERSION=${FL_MAJOR_VERSION}.${FL_MINOR_VERSION}.${FL_PATCH_VERSION}
|
||||||
|
|||||||
@@ -19,16 +19,16 @@ this is often useful to know when programming.
|
|||||||
The FLTK version number is stored in a number of compile-time constants:
|
The FLTK version number is stored in a number of compile-time constants:
|
||||||
|
|
||||||
- FL_MAJOR_VERSION - The major release number, currently 1
|
- FL_MAJOR_VERSION - The major release number, currently 1
|
||||||
- FL_MINOR_VERSION - The minor release number, currently 3
|
- FL_MINOR_VERSION - The minor release number, currently 4
|
||||||
- FL_PATCH_VERSION - The patch release number, currently 4
|
- FL_PATCH_VERSION - The patch release number, currently 0
|
||||||
- FL_VERSION - \b [Deprecated] A combined floating-point version number for
|
- FL_VERSION - \b [Deprecated] A combined floating-point version number for
|
||||||
the major, minor, and patch release numbers, currently 1.0304
|
the major, minor, and patch release numbers, currently 1.0400
|
||||||
- FL_API_VERSION - A combined integer version number for the major, minor,
|
- FL_API_VERSION - A combined integer version number for the major, minor,
|
||||||
and patch release numbers, currently 10304 (use this instead of
|
and patch release numbers, currently 10400 (use this instead of
|
||||||
FL_VERSION, if possible)
|
FL_VERSION, if possible)
|
||||||
- FL_ABI_VERSION - A combined integer version number for the application
|
- FL_ABI_VERSION - A combined integer version number for the application
|
||||||
binary interface (ABI) major, minor, and patch release numbers,
|
binary interface (ABI) major, minor, and patch release numbers,
|
||||||
currently 10300 (default)
|
currently 10400 (default)
|
||||||
|
|
||||||
\note The ABI version (FL_ABI_VERSION) is usually constant throughout one
|
\note The ABI version (FL_ABI_VERSION) is usually constant throughout one
|
||||||
major/minor release version, for instance 10300 if FL_API_VERSION is 10304.
|
major/minor release version, for instance 10300 if FL_API_VERSION is 10304.
|
||||||
|
|||||||
@@ -41,7 +41,7 @@
|
|||||||
\end{ImageNoCaption}\\
|
\end{ImageNoCaption}\\
|
||||||
\vspace*{2cm}
|
\vspace*{2cm}
|
||||||
{\Large
|
{\Large
|
||||||
Revision 9 by F. Costantini, D. Gibson, M. Melcher, \\
|
Revision 10 by F. Costantini, D. Gibson, M. Melcher, \\
|
||||||
A. Schlosser, B. Spitzak, and M. Sweet.}\\
|
A. Schlosser, B. Spitzak, and M. Sweet.}\\
|
||||||
\vspace*{1.5cm}
|
\vspace*{1.5cm}
|
||||||
{\large Copyright 1998-@YEAR@ by Bill Spitzak and others.}\\
|
{\large Copyright 1998-@YEAR@ by Bill Spitzak and others.}\\
|
||||||
|
|||||||
@@ -8,9 +8,9 @@
|
|||||||
\image latex FL200.png "" width=5cm
|
\image latex FL200.png "" width=5cm
|
||||||
</CENTER></TD>
|
</CENTER></TD>
|
||||||
<TD><CENTER>
|
<TD><CENTER>
|
||||||
<B>FLTK 1.3.4 Programming Manual</B>
|
<B>FLTK 1.4.0 Programming Manual</B>
|
||||||
|
|
||||||
Revision 9 by F. Costantini, D. Gibson, M. Melcher,
|
Revision 10 by F. Costantini, D. Gibson, M. Melcher,
|
||||||
A. Schlosser, B. Spitzak and M. Sweet.
|
A. Schlosser, B. Spitzak and M. Sweet.
|
||||||
|
|
||||||
Copyright 1998-2015 by Bill Spitzak and others.
|
Copyright 1998-2015 by Bill Spitzak and others.
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
\page preface Preface
|
\page preface Preface
|
||||||
|
|
||||||
This manual describes the Fast Light Tool Kit ("FLTK")
|
This manual describes the Fast Light Tool Kit ("FLTK")
|
||||||
version 1.3.4, a C++ Graphical User Interface
|
version 1.4.0, a C++ Graphical User Interface
|
||||||
("GUI") toolkit for UNIX, Microsoft Windows and Apple OS X. Each
|
("GUI") toolkit for UNIX, Microsoft Windows and Apple OS X. Each
|
||||||
of the chapters in this manual is designed as a tutorial for
|
of the chapters in this manual is designed as a tutorial for
|
||||||
using FLTK, while the appendices provide a convenient reference
|
using FLTK, while the appendices provide a convenient reference
|
||||||
|
|||||||
@@ -16,7 +16,7 @@
|
|||||||
// http://www.fltk.org/str.php
|
// http://www.fltk.org/str.php
|
||||||
//
|
//
|
||||||
|
|
||||||
// generated by Fast Light User Interface Designer (fluid) version 1.0304
|
// generated by Fast Light User Interface Designer (fluid) version 1.0400
|
||||||
|
|
||||||
#include "about_panel.h"
|
#include "about_panel.h"
|
||||||
void show_help(const char *name);
|
void show_help(const char *name);
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
# data file for the Fltk User Interface Designer (fluid)
|
# data file for the Fltk User Interface Designer (fluid)
|
||||||
version 1.0304
|
version 1.0400
|
||||||
header_name {.h}
|
header_name {.h}
|
||||||
code_name {.cxx}
|
code_name {.cxx}
|
||||||
comment {//
|
comment {//
|
||||||
|
|||||||
+1
-1
@@ -16,7 +16,7 @@
|
|||||||
// http://www.fltk.org/str.php
|
// http://www.fltk.org/str.php
|
||||||
//
|
//
|
||||||
|
|
||||||
// generated by Fast Light User Interface Designer (fluid) version 1.0304
|
// generated by Fast Light User Interface Designer (fluid) version 1.0400
|
||||||
|
|
||||||
#ifndef about_panel_h
|
#ifndef about_panel_h
|
||||||
#define about_panel_h
|
#define about_panel_h
|
||||||
|
|||||||
@@ -16,7 +16,7 @@
|
|||||||
// http://www.fltk.org/str.php
|
// http://www.fltk.org/str.php
|
||||||
//
|
//
|
||||||
|
|
||||||
// generated by Fast Light User Interface Designer (fluid) version 1.0304
|
// generated by Fast Light User Interface Designer (fluid) version 1.0400
|
||||||
|
|
||||||
#include "alignment_panel.h"
|
#include "alignment_panel.h"
|
||||||
#include <FL/Fl_Preferences.H>
|
#include <FL/Fl_Preferences.H>
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
# data file for the Fltk User Interface Designer (fluid)
|
# data file for the Fltk User Interface Designer (fluid)
|
||||||
version 1.0304
|
version 1.0400
|
||||||
header_name {.h}
|
header_name {.h}
|
||||||
code_name {.cxx}
|
code_name {.cxx}
|
||||||
comment {//
|
comment {//
|
||||||
|
|||||||
@@ -16,7 +16,7 @@
|
|||||||
// http://www.fltk.org/str.php
|
// http://www.fltk.org/str.php
|
||||||
//
|
//
|
||||||
|
|
||||||
// generated by Fast Light User Interface Designer (fluid) version 1.0304
|
// generated by Fast Light User Interface Designer (fluid) version 1.0400
|
||||||
|
|
||||||
#ifndef alignment_panel_h
|
#ifndef alignment_panel_h
|
||||||
#define alignment_panel_h
|
#define alignment_panel_h
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
<key>CFBundleIdentifier</key>
|
<key>CFBundleIdentifier</key>
|
||||||
<string>org.fltk.fluid</string>
|
<string>org.fltk.fluid</string>
|
||||||
<key>CFBundleVersion</key>
|
<key>CFBundleVersion</key>
|
||||||
<string>1.3.4</string>
|
<string>1.4.0</string>
|
||||||
<key>CFBundleDevelopmentRegion</key>
|
<key>CFBundleDevelopmentRegion</key>
|
||||||
<string>English</string>
|
<string>English</string>
|
||||||
<key>NSHumanReadableCopyright</key>
|
<key>NSHumanReadableCopyright</key>
|
||||||
@@ -25,9 +25,9 @@
|
|||||||
<key>CFBundleIconFile</key>
|
<key>CFBundleIconFile</key>
|
||||||
<string>fluid.icns</string>
|
<string>fluid.icns</string>
|
||||||
<key>CFBundleShortVersionString</key>
|
<key>CFBundleShortVersionString</key>
|
||||||
<string>1.3.4</string>
|
<string>1.4.0</string>
|
||||||
<key>CFBundleGetInfoString</key>
|
<key>CFBundleGetInfoString</key>
|
||||||
<string>1.3.4, Copyright 1998-2015 by Bill Spitzak and others</string>
|
<string>1.4.0, Copyright 1998-2015 by Bill Spitzak and others</string>
|
||||||
<key>CFBundleDocumentTypes</key>
|
<key>CFBundleDocumentTypes</key>
|
||||||
<array>
|
<array>
|
||||||
<dict>
|
<dict>
|
||||||
|
|||||||
@@ -16,7 +16,7 @@
|
|||||||
// http://www.fltk.org/str.php
|
// http://www.fltk.org/str.php
|
||||||
//
|
//
|
||||||
|
|
||||||
// generated by Fast Light User Interface Designer (fluid) version 1.0304
|
// generated by Fast Light User Interface Designer (fluid) version 1.0400
|
||||||
|
|
||||||
#include "function_panel.h"
|
#include "function_panel.h"
|
||||||
#include <FL/Fl_Pixmap.H>
|
#include <FL/Fl_Pixmap.H>
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
# data file for the Fltk User Interface Designer (fluid)
|
# data file for the Fltk User Interface Designer (fluid)
|
||||||
version 1.0304
|
version 1.0400
|
||||||
header_name {.h}
|
header_name {.h}
|
||||||
code_name {.cxx}
|
code_name {.cxx}
|
||||||
comment {//
|
comment {//
|
||||||
|
|||||||
@@ -16,7 +16,7 @@
|
|||||||
// http://www.fltk.org/str.php
|
// http://www.fltk.org/str.php
|
||||||
//
|
//
|
||||||
|
|
||||||
// generated by Fast Light User Interface Designer (fluid) version 1.0304
|
// generated by Fast Light User Interface Designer (fluid) version 1.0400
|
||||||
|
|
||||||
#ifndef function_panel_h
|
#ifndef function_panel_h
|
||||||
#define function_panel_h
|
#define function_panel_h
|
||||||
|
|||||||
@@ -16,7 +16,7 @@
|
|||||||
// http://www.fltk.org/str.php
|
// http://www.fltk.org/str.php
|
||||||
//
|
//
|
||||||
|
|
||||||
// generated by Fast Light User Interface Designer (fluid) version 1.0304
|
// generated by Fast Light User Interface Designer (fluid) version 1.0400
|
||||||
|
|
||||||
#include "print_panel.h"
|
#include "print_panel.h"
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
# data file for the Fltk User Interface Designer (fluid)
|
# data file for the Fltk User Interface Designer (fluid)
|
||||||
version 1.0304
|
version 1.0400
|
||||||
header_name {.h}
|
header_name {.h}
|
||||||
code_name {.cxx}
|
code_name {.cxx}
|
||||||
comment {//
|
comment {//
|
||||||
|
|||||||
+1
-1
@@ -16,7 +16,7 @@
|
|||||||
// http://www.fltk.org/str.php
|
// http://www.fltk.org/str.php
|
||||||
//
|
//
|
||||||
|
|
||||||
// generated by Fast Light User Interface Designer (fluid) version 1.0304
|
// generated by Fast Light User Interface Designer (fluid) version 1.0400
|
||||||
|
|
||||||
#ifndef print_panel_h
|
#ifndef print_panel_h
|
||||||
#define print_panel_h
|
#define print_panel_h
|
||||||
|
|||||||
@@ -16,7 +16,7 @@
|
|||||||
// http://www.fltk.org/str.php
|
// http://www.fltk.org/str.php
|
||||||
//
|
//
|
||||||
|
|
||||||
// generated by Fast Light User Interface Designer (fluid) version 1.0304
|
// generated by Fast Light User Interface Designer (fluid) version 1.0400
|
||||||
|
|
||||||
#include "template_panel.h"
|
#include "template_panel.h"
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
# data file for the Fltk User Interface Designer (fluid)
|
# data file for the Fltk User Interface Designer (fluid)
|
||||||
version 1.0304
|
version 1.0400
|
||||||
header_name {.h}
|
header_name {.h}
|
||||||
code_name {.cxx}
|
code_name {.cxx}
|
||||||
comment {//
|
comment {//
|
||||||
|
|||||||
@@ -16,7 +16,7 @@
|
|||||||
// http://www.fltk.org/str.php
|
// http://www.fltk.org/str.php
|
||||||
//
|
//
|
||||||
|
|
||||||
// generated by Fast Light User Interface Designer (fluid) version 1.0304
|
// generated by Fast Light User Interface Designer (fluid) version 1.0400
|
||||||
|
|
||||||
#ifndef template_panel_h
|
#ifndef template_panel_h
|
||||||
#define template_panel_h
|
#define template_panel_h
|
||||||
|
|||||||
@@ -16,7 +16,7 @@
|
|||||||
// http://www.fltk.org/str.php
|
// http://www.fltk.org/str.php
|
||||||
//
|
//
|
||||||
|
|
||||||
// generated by Fast Light User Interface Designer (fluid) version 1.0304
|
// generated by Fast Light User Interface Designer (fluid) version 1.0400
|
||||||
|
|
||||||
#include "widget_panel.h"
|
#include "widget_panel.h"
|
||||||
extern void comment_cb(Fl_Text_Editor*, void*);
|
extern void comment_cb(Fl_Text_Editor*, void*);
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
# data file for the Fltk User Interface Designer (fluid)
|
# data file for the Fltk User Interface Designer (fluid)
|
||||||
version 1.0304
|
version 1.0400
|
||||||
header_name {.h}
|
header_name {.h}
|
||||||
code_name {.cxx}
|
code_name {.cxx}
|
||||||
comment {//
|
comment {//
|
||||||
|
|||||||
@@ -16,7 +16,7 @@
|
|||||||
// http://www.fltk.org/str.php
|
// http://www.fltk.org/str.php
|
||||||
//
|
//
|
||||||
|
|
||||||
// generated by Fast Light User Interface Designer (fluid) version 1.0304
|
// generated by Fast Light User Interface Designer (fluid) version 1.0400
|
||||||
|
|
||||||
#ifndef widget_panel_h
|
#ifndef widget_panel_h
|
||||||
#define widget_panel_h
|
#define widget_panel_h
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
# data file for the Fltk User Interface Designer (fluid)
|
# data file for the Fltk User Interface Designer (fluid)
|
||||||
version 1.0304
|
version 1.0400
|
||||||
header_name {.h}
|
header_name {.h}
|
||||||
code_name {.cxx}
|
code_name {.cxx}
|
||||||
Function {make_window()} {open
|
Function {make_window()} {open
|
||||||
|
|||||||
@@ -40,7 +40,7 @@
|
|||||||
<key>CFBundleSignature</key>
|
<key>CFBundleSignature</key>
|
||||||
<string>FLTK</string>
|
<string>FLTK</string>
|
||||||
<key>CFBundleVersion</key>
|
<key>CFBundleVersion</key>
|
||||||
<string>1.3.4</string>
|
<string>1.4.0</string>
|
||||||
<key>NSHumanReadableCopyright</key>
|
<key>NSHumanReadableCopyright</key>
|
||||||
<string>Copyright 1998-2015 by Bill Spitzak and others.</string>
|
<string>Copyright 1998-2015 by Bill Spitzak and others.</string>
|
||||||
<key>CFBundleGetInfoString</key>
|
<key>CFBundleGetInfoString</key>
|
||||||
|
|||||||
@@ -23,7 +23,7 @@
|
|||||||
// =======================================================================
|
// =======================================================================
|
||||||
//
|
//
|
||||||
|
|
||||||
// generated by Fast Light User Interface Designer (fluid) version 1.0304
|
// generated by Fast Light User Interface Designer (fluid) version 1.0400
|
||||||
|
|
||||||
#include "../FL/Fl_File_Chooser.H"
|
#include "../FL/Fl_File_Chooser.H"
|
||||||
#include <FL/fl_draw.H>
|
#include <FL/fl_draw.H>
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
# data file for the Fltk User Interface Designer (fluid)
|
# data file for the Fltk User Interface Designer (fluid)
|
||||||
version 1.0304
|
version 1.0400
|
||||||
header_name {../FL/Fl_File_Chooser.H}
|
header_name {../FL/Fl_File_Chooser.H}
|
||||||
code_name {.cxx}
|
code_name {.cxx}
|
||||||
comment {//
|
comment {//
|
||||||
|
|||||||
@@ -23,7 +23,7 @@
|
|||||||
// ========================================================================
|
// ========================================================================
|
||||||
//
|
//
|
||||||
|
|
||||||
// generated by Fast Light User Interface Designer (fluid) version 1.0304
|
// generated by Fast Light User Interface Designer (fluid) version 1.0400
|
||||||
|
|
||||||
#include "../FL/Fl_Help_Dialog.H"
|
#include "../FL/Fl_Help_Dialog.H"
|
||||||
#include "flstring.h"
|
#include "flstring.h"
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
# data file for the Fltk User Interface Designer (fluid)
|
# data file for the Fltk User Interface Designer (fluid)
|
||||||
version 1.0304
|
version 1.0400
|
||||||
header_name {../FL/Fl_Help_Dialog.H}
|
header_name {../FL/Fl_Help_Dialog.H}
|
||||||
code_name {.cxx}
|
code_name {.cxx}
|
||||||
comment {//
|
comment {//
|
||||||
|
|||||||
+1
-1
@@ -1,5 +1,5 @@
|
|||||||
# data file for the Fltk User Interface Designer (fluid)
|
# data file for the Fltk User Interface Designer (fluid)
|
||||||
version 1.0304
|
version 1.0400
|
||||||
header_name {.h}
|
header_name {.h}
|
||||||
code_name {.cxx}
|
code_name {.cxx}
|
||||||
class CubeViewUI {open
|
class CubeViewUI {open
|
||||||
|
|||||||
+1
-1
@@ -1,5 +1,5 @@
|
|||||||
# data file for the Fltk User Interface Designer (fluid)
|
# data file for the Fltk User Interface Designer (fluid)
|
||||||
version 1.0304
|
version 1.0400
|
||||||
header_name {.h}
|
header_name {.h}
|
||||||
code_name {.cxx}
|
code_name {.cxx}
|
||||||
Function {} {open
|
Function {} {open
|
||||||
|
|||||||
+1
-1
@@ -1,5 +1,5 @@
|
|||||||
# data file for the Fltk User Interface Designer (fluid)
|
# data file for the Fltk User Interface Designer (fluid)
|
||||||
version 1.0304
|
version 1.0400
|
||||||
header_name {.h}
|
header_name {.h}
|
||||||
code_name {.cxx}
|
code_name {.cxx}
|
||||||
Function {} {open
|
Function {} {open
|
||||||
|
|||||||
+1
-1
@@ -1,5 +1,5 @@
|
|||||||
# data file for the Fltk User Interface Designer (fluid)
|
# data file for the Fltk User Interface Designer (fluid)
|
||||||
version 1.0304
|
version 1.0400
|
||||||
header_name {.h}
|
header_name {.h}
|
||||||
code_name {.cxx}
|
code_name {.cxx}
|
||||||
Function {make_window()} {open
|
Function {make_window()} {open
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
# data file for the Fltk User Interface Designer (fluid)
|
# data file for the Fltk User Interface Designer (fluid)
|
||||||
version 1.0304
|
version 1.0400
|
||||||
header_name {.h}
|
header_name {.h}
|
||||||
code_name {.cxx}
|
code_name {.cxx}
|
||||||
decl {\#include "mandelbrot.h"} {public local
|
decl {\#include "mandelbrot.h"} {public local
|
||||||
|
|||||||
+1
-1
@@ -1,5 +1,5 @@
|
|||||||
# data file for the Fltk User Interface Designer (fluid)
|
# data file for the Fltk User Interface Designer (fluid)
|
||||||
version 1.0304
|
version 1.0400
|
||||||
header_name {.h}
|
header_name {.h}
|
||||||
code_name {.cxx}
|
code_name {.cxx}
|
||||||
decl {\#include <FL/Fl_Preferences.H>} {public local
|
decl {\#include <FL/Fl_Preferences.H>} {public local
|
||||||
|
|||||||
+1
-1
@@ -1,5 +1,5 @@
|
|||||||
# data file for the Fltk User Interface Designer (fluid)
|
# data file for the Fltk User Interface Designer (fluid)
|
||||||
version 1.0304
|
version 1.0400
|
||||||
header_name {.h}
|
header_name {.h}
|
||||||
code_name {.cxx}
|
code_name {.cxx}
|
||||||
Function {button_cb(Fl_Button *b, void *)} {
|
Function {button_cb(Fl_Button *b, void *)} {
|
||||||
|
|||||||
+1
-1
@@ -1,5 +1,5 @@
|
|||||||
# data file for the Fltk User Interface Designer (fluid)
|
# data file for the Fltk User Interface Designer (fluid)
|
||||||
version 1.0304
|
version 1.0400
|
||||||
header_name {.h}
|
header_name {.h}
|
||||||
code_name {.cxx}
|
code_name {.cxx}
|
||||||
Function {} {open
|
Function {} {open
|
||||||
|
|||||||
+1
-1
@@ -1,5 +1,5 @@
|
|||||||
# data file for the Fltk User Interface Designer (fluid)
|
# data file for the Fltk User Interface Designer (fluid)
|
||||||
version 1.0304
|
version 1.0400
|
||||||
header_name {.h}
|
header_name {.h}
|
||||||
code_name {.cxx}
|
code_name {.cxx}
|
||||||
Function {} {open
|
Function {} {open
|
||||||
|
|||||||
+1
-1
@@ -1,5 +1,5 @@
|
|||||||
# data file for the Fltk User Interface Designer (fluid)
|
# data file for the Fltk User Interface Designer (fluid)
|
||||||
version 1.0304
|
version 1.0400
|
||||||
header_name {.h}
|
header_name {.h}
|
||||||
code_name {.cxx}
|
code_name {.cxx}
|
||||||
decl {\#include <stdio.h>} {public global
|
decl {\#include <stdio.h>} {public global
|
||||||
|
|||||||
+1
-1
@@ -1,5 +1,5 @@
|
|||||||
# data file for the Fltk User Interface Designer (fluid)
|
# data file for the Fltk User Interface Designer (fluid)
|
||||||
version 1.0304
|
version 1.0400
|
||||||
header_name {.h}
|
header_name {.h}
|
||||||
code_name {.cxx}
|
code_name {.cxx}
|
||||||
Function {callback(Fl_Widget* o, void*)} {open private return_type void
|
Function {callback(Fl_Widget* o, void*)} {open private return_type void
|
||||||
|
|||||||
Reference in New Issue
Block a user