summaryrefslogtreecommitdiff
path: root/fluid
diff options
context:
space:
mode:
authorAlbrecht Schlosser <albrechts.fltk@online.de>2016-09-20 13:31:38 +0000
committerAlbrecht Schlosser <albrechts.fltk@online.de>2016-09-20 13:31:38 +0000
commiteede707852e2a748396f492861faea5fd1a99776 (patch)
treed4019512c640bd765f96f25cf9ad489d0799e2ac /fluid
parent827fa250f3bfd0c9dc68d1483ae3c41b144adfee (diff)
Update fluid files and copyright.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11956 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'fluid')
-rw-r--r--fluid/CMakeLists.txt4
-rw-r--r--fluid/CodeEditor.cxx2
-rw-r--r--fluid/Fl_Function_Type.cxx2
-rw-r--r--fluid/Fl_Type.cxx2
-rw-r--r--fluid/Fl_Type.h2
-rw-r--r--fluid/Fl_Widget_Type.cxx2
-rw-r--r--fluid/about_panel.cxx4
-rw-r--r--fluid/about_panel.fl4
-rw-r--r--fluid/about_panel.h2
-rw-r--r--fluid/alignment_panel.cxx2
-rw-r--r--fluid/alignment_panel.fl10
-rw-r--r--fluid/alignment_panel.h2
-rw-r--r--fluid/file.cxx2
-rw-r--r--fluid/function_panel.cxx2
-rw-r--r--fluid/function_panel.fl8
-rw-r--r--fluid/function_panel.h2
-rw-r--r--fluid/print_panel.cxx2
-rw-r--r--fluid/print_panel.fl2
-rw-r--r--fluid/print_panel.h2
-rw-r--r--fluid/template_panel.cxx2
-rw-r--r--fluid/template_panel.fl2
-rw-r--r--fluid/template_panel.h2
-rw-r--r--fluid/widget_panel.cxx2
-rw-r--r--fluid/widget_panel.fl2
-rw-r--r--fluid/widget_panel.h2
25 files changed, 35 insertions, 35 deletions
diff --git a/fluid/CMakeLists.txt b/fluid/CMakeLists.txt
index 846ae4d5a..647477d1a 100644
--- a/fluid/CMakeLists.txt
+++ b/fluid/CMakeLists.txt
@@ -3,7 +3,7 @@
#
# CMakeLists.txt to build fluid for the FLTK project using CMake (www.cmake.org)
#
-# Copyright 1998-2015 by Bill Spitzak and others.
+# Copyright 1998-2016 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 @@ if(APPLE AND (NOT OPTION_APPLE_X11) AND (NOT OPTION_APPLE_SDL))
set( ICON_PATH "${PROJECT_SOURCE_DIR}/fluid/Fluid.app/Contents/Resources/${ICON_NAME}" )
add_executable(fluid MACOSX_BUNDLE ${CPPFILES} ${ICON_PATH})
else()
- add_executable(fluid ${CPPFILES})
+ add_executable(fluid WIN32 ${CPPFILES})
endif(APPLE AND (NOT OPTION_APPLE_X11) AND (NOT OPTION_APPLE_SDL))
target_link_libraries(fluid fltk fltk_images fltk_forms)
diff --git a/fluid/CodeEditor.cxx b/fluid/CodeEditor.cxx
index e4fbc57f2..689f12855 100644
--- a/fluid/CodeEditor.cxx
+++ b/fluid/CodeEditor.cxx
@@ -3,7 +3,7 @@
//
// Code editor widget for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2010 by Bill Spitzak and others.
+// Copyright 1998-2016 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
diff --git a/fluid/Fl_Function_Type.cxx b/fluid/Fl_Function_Type.cxx
index b9234f3f1..90547c624 100644
--- a/fluid/Fl_Function_Type.cxx
+++ b/fluid/Fl_Function_Type.cxx
@@ -3,7 +3,7 @@
//
// C function type code for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2011 by Bill Spitzak and others.
+// Copyright 1998-2016 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
diff --git a/fluid/Fl_Type.cxx b/fluid/Fl_Type.cxx
index a95fd72c9..db5e04c2b 100644
--- a/fluid/Fl_Type.cxx
+++ b/fluid/Fl_Type.cxx
@@ -15,7 +15,7 @@
// not in the linked list and are not written to files or
// copied or otherwise examined.
//
-// Copyright 1998-2015 by Bill Spitzak and others.
+// Copyright 1998-2016 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
diff --git a/fluid/Fl_Type.h b/fluid/Fl_Type.h
index e56fa02e1..859f98bd1 100644
--- a/fluid/Fl_Type.h
+++ b/fluid/Fl_Type.h
@@ -12,7 +12,7 @@
// but it was easier to implement this by using the file read/write
// that is needed to save the setup anyways.
//
-// Copyright 1998-2010 by Bill Spitzak and others.
+// Copyright 1998-2016 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
diff --git a/fluid/Fl_Widget_Type.cxx b/fluid/Fl_Widget_Type.cxx
index 8cb10c4ad..5552a256e 100644
--- a/fluid/Fl_Widget_Type.cxx
+++ b/fluid/Fl_Widget_Type.cxx
@@ -3,7 +3,7 @@
//
// Widget type code for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2010 by Bill Spitzak and others.
+// Copyright 1998-2016 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
diff --git a/fluid/about_panel.cxx b/fluid/about_panel.cxx
index a48dfad80..6a2c4a4c2 100644
--- a/fluid/about_panel.cxx
+++ b/fluid/about_panel.cxx
@@ -3,7 +3,7 @@
//
// About dialog for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2015 by Bill Spitzak and others.
+// Copyright 1998-2016 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
@@ -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-2015 by\nBill Spitzak and others");
+ { Fl_Box* o = new Fl_Box(135, 90, 200, 45, "Copyright 1998-2016 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...");
diff --git a/fluid/about_panel.fl b/fluid/about_panel.fl
index 0ec6ab721..bbbb7a0a4 100644
--- a/fluid/about_panel.fl
+++ b/fluid/about_panel.fl
@@ -7,7 +7,7 @@ comment {//
//
// About dialog for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2015 by Bill Spitzak and others.
+// Copyright 1998-2016 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-2015 by
+ label {Copyright 1998-2016 by
Bill Spitzak and others}
xywh {135 90 200 45} align 148
}
diff --git a/fluid/about_panel.h b/fluid/about_panel.h
index 39c94c2d4..063dd4ca6 100644
--- a/fluid/about_panel.h
+++ b/fluid/about_panel.h
@@ -3,7 +3,7 @@
//
// About dialog for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2015 by Bill Spitzak and others.
+// Copyright 1998-2016 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
diff --git a/fluid/alignment_panel.cxx b/fluid/alignment_panel.cxx
index 8f3636233..44fcfcaaf 100644
--- a/fluid/alignment_panel.cxx
+++ b/fluid/alignment_panel.cxx
@@ -3,7 +3,7 @@
//
// Setting and shell dialogs for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2015 by Bill Spitzak and others.
+// Copyright 1998-2016 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
diff --git a/fluid/alignment_panel.fl b/fluid/alignment_panel.fl
index 17b4159f5..9eba25baa 100644
--- a/fluid/alignment_panel.fl
+++ b/fluid/alignment_panel.fl
@@ -7,7 +7,7 @@ comment {//
//
// Setting and shell dialogs for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2015 by Bill Spitzak and others.
+// Copyright 1998-2016 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
@@ -68,9 +68,9 @@ Function {make_project_window()} {open
} {
Fl_Window project_window {
label {Project Settings} open
- xywh {396 475 395 250} type Double
+ xywh {396 475 399 252} type Double hide
code0 {\#include <FL/Fl_Preferences.H>}
- code1 {\#include <FL/Fl_Tooltip.H>} modal visible
+ code1 {\#include <FL/Fl_Tooltip.H>} modal
} {
Fl_Button {} {
label Close
@@ -167,8 +167,8 @@ decl {void scheme_cb(Fl_Choice *, void *);} {public local
Function {make_settings_window()} {} {
Fl_Window settings_window {
label {GUI Settings} open
- xywh {355 85 360 355} type Double resizable
- code0 {o->size_range(o->w(), o->h());} non_modal visible
+ xywh {355 85 360 355} type Double hide resizable
+ code0 {o->size_range(o->w(), o->h());} non_modal
} {
Fl_Choice scheme_choice {
label {Scheme: }
diff --git a/fluid/alignment_panel.h b/fluid/alignment_panel.h
index 18ca01dac..a8287d9b7 100644
--- a/fluid/alignment_panel.h
+++ b/fluid/alignment_panel.h
@@ -3,7 +3,7 @@
//
// Setting and shell dialogs for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2015 by Bill Spitzak and others.
+// Copyright 1998-2016 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
diff --git a/fluid/file.cxx b/fluid/file.cxx
index bc0d049bf..10259f267 100644
--- a/fluid/file.cxx
+++ b/fluid/file.cxx
@@ -8,7 +8,7 @@
// They are somewhat similar to tcl, using matching { and }
// to quote strings.
//
-// Copyright 1998-2010 by Bill Spitzak and others.
+// Copyright 1998-2016 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
diff --git a/fluid/function_panel.cxx b/fluid/function_panel.cxx
index 15f6cbf54..6de712c96 100644
--- a/fluid/function_panel.cxx
+++ b/fluid/function_panel.cxx
@@ -3,7 +3,7 @@
//
// Code dialogs for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2015 by Bill Spitzak and others.
+// Copyright 1998-2016 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
diff --git a/fluid/function_panel.fl b/fluid/function_panel.fl
index 62046318a..aaf97b8b1 100644
--- a/fluid/function_panel.fl
+++ b/fluid/function_panel.fl
@@ -7,7 +7,7 @@ comment {//
//
// Code dialogs for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2015 by Bill Spitzak and others.
+// Copyright 1998-2016 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
@@ -421,13 +421,13 @@ Function {make_class_panel()} {open
} {
Fl_Window class_panel {
label {Class Properties} open
- xywh {437 492 342 196} type Double labelsize 11 resizable modal size_range {343 188 0 0} visible
+ xywh {497 585 342 196} type Double labelsize 11 hide resizable modal size_range {343 188 0 0}
} {
Fl_Group {} {open
xywh {10 10 280 20} hide
} {
Fl_Light_Button c_public_button {
- label public selected
+ label public
tooltip {Make the class publicly accessible.} xywh {10 10 60 20} labelsize 11 when 0 hide
}
Fl_Box {} {
@@ -443,7 +443,7 @@ Function {make_class_panel()} {open
tooltip {Name of subclass.} xywh {10 55 320 20} labelfont 1 labelsize 11 align 5 when 0 textfont 4 textsize 11
}
Fl_Text_Editor c_comment_input {
- label {Comment:}
+ label {Comment:} selected
tooltip {Class comment in Doxygen format} xywh {10 90 320 65} box DOWN_BOX labelfont 1 labelsize 11 align 5 textfont 4 textsize 11 resizable
code0 {c_comment_input->buffer(new Fl_Text_Buffer());}
code1 {c_comment_input->add_key_binding(FL_Tab, 0, use_tab_navigation);}
diff --git a/fluid/function_panel.h b/fluid/function_panel.h
index 7cc035176..8456bf8d5 100644
--- a/fluid/function_panel.h
+++ b/fluid/function_panel.h
@@ -3,7 +3,7 @@
//
// Code dialogs for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2015 by Bill Spitzak and others.
+// Copyright 1998-2016 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
diff --git a/fluid/print_panel.cxx b/fluid/print_panel.cxx
index c82857c80..8dc7dcfd7 100644
--- a/fluid/print_panel.cxx
+++ b/fluid/print_panel.cxx
@@ -3,7 +3,7 @@
//
// FLUID print panel for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2015 by Bill Spitzak and others.
+// Copyright 1998-2016 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
diff --git a/fluid/print_panel.fl b/fluid/print_panel.fl
index d3311149e..8434e4fb7 100644
--- a/fluid/print_panel.fl
+++ b/fluid/print_panel.fl
@@ -7,7 +7,7 @@ comment {//
//
// FLUID print panel for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2015 by Bill Spitzak and others.
+// Copyright 1998-2016 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
diff --git a/fluid/print_panel.h b/fluid/print_panel.h
index 6159e80b1..a4cd0a7b0 100644
--- a/fluid/print_panel.h
+++ b/fluid/print_panel.h
@@ -3,7 +3,7 @@
//
// FLUID print panel for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2015 by Bill Spitzak and others.
+// Copyright 1998-2016 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
diff --git a/fluid/template_panel.cxx b/fluid/template_panel.cxx
index 57543f4c3..0ca40c0b6 100644
--- a/fluid/template_panel.cxx
+++ b/fluid/template_panel.cxx
@@ -3,7 +3,7 @@
//
// FLUID template support for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2015 by Bill Spitzak and others.
+// Copyright 1998-2016 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
diff --git a/fluid/template_panel.fl b/fluid/template_panel.fl
index 7743f829d..ccef63c87 100644
--- a/fluid/template_panel.fl
+++ b/fluid/template_panel.fl
@@ -7,7 +7,7 @@ comment {//
//
// FLUID template support for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2015 by Bill Spitzak and others.
+// Copyright 1998-2016 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
diff --git a/fluid/template_panel.h b/fluid/template_panel.h
index 5481810d7..806d72cb7 100644
--- a/fluid/template_panel.h
+++ b/fluid/template_panel.h
@@ -3,7 +3,7 @@
//
// FLUID template support for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2015 by Bill Spitzak and others.
+// Copyright 1998-2016 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
diff --git a/fluid/widget_panel.cxx b/fluid/widget_panel.cxx
index 79091308d..da8c0f1b7 100644
--- a/fluid/widget_panel.cxx
+++ b/fluid/widget_panel.cxx
@@ -3,7 +3,7 @@
//
// Widget panel for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2015 by Bill Spitzak and others.
+// Copyright 1998-2016 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
diff --git a/fluid/widget_panel.fl b/fluid/widget_panel.fl
index 2414f86ad..fefe6edb6 100644
--- a/fluid/widget_panel.fl
+++ b/fluid/widget_panel.fl
@@ -7,7 +7,7 @@ comment {//
//
// Widget panel for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2015 by Bill Spitzak and others.
+// Copyright 1998-2016 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
diff --git a/fluid/widget_panel.h b/fluid/widget_panel.h
index 5c626cb96..60ad5670b 100644
--- a/fluid/widget_panel.h
+++ b/fluid/widget_panel.h
@@ -3,7 +3,7 @@
//
// Widget panel for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2015 by Bill Spitzak and others.
+// Copyright 1998-2016 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