summaryrefslogtreecommitdiff
path: root/fluid
diff options
context:
space:
mode:
authorAlbrecht Schlosser <albrechts.fltk@online.de>2015-03-10 01:41:55 +0000
committerAlbrecht Schlosser <albrechts.fltk@online.de>2015-03-10 01:41:55 +0000
commit0f45a7adf55c002d6f3804c56344340690556c42 (patch)
tree26101d6bae68dcf3fbb77b972f07f2dc36378d76 /fluid
parentc96c4c35b0c308c1da9796ca88762044851d3801 (diff)
[Version 1.3.4] Update version numbers - hopefully complete.
Note to devs: if I missed something, please mark follow-up commits with [Version 1.3.4] so we can find the necessary commits for version updates. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@10612 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'fluid')
-rw-r--r--fluid/about_panel.cxx6
-rw-r--r--fluid/about_panel.fl10
-rw-r--r--fluid/about_panel.h4
-rw-r--r--fluid/alignment_panel.cxx2
-rw-r--r--fluid/alignment_panel.fl16
-rw-r--r--fluid/alignment_panel.h2
-rw-r--r--fluid/fluid.app/Contents/Info.plist8
-rw-r--r--fluid/function_panel.cxx2
-rw-r--r--fluid/function_panel.fl26
-rw-r--r--fluid/function_panel.h2
-rw-r--r--fluid/print_panel.cxx2
-rw-r--r--fluid/print_panel.fl8
-rw-r--r--fluid/print_panel.h2
-rw-r--r--fluid/template_panel.cxx2
-rw-r--r--fluid/template_panel.fl6
-rw-r--r--fluid/template_panel.h2
-rw-r--r--fluid/widget_panel.cxx2
-rw-r--r--fluid/widget_panel.fl8
-rw-r--r--fluid/widget_panel.h2
19 files changed, 56 insertions, 56 deletions
diff --git a/fluid/about_panel.cxx b/fluid/about_panel.cxx
index cdf3f57c6..e19aa5e08 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-2014 by Bill Spitzak and others.
+// Copyright 1998-2015 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.0303
+// generated by Fast Light User Interface Designer (fluid) version 1.0304
#include "about_panel.h"
void show_help(const char *name);
@@ -279,7 +279,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-2014 by\nBill Spitzak and others");
+ { Fl_Box* o = new Fl_Box(135, 90, 200, 45, "Copyright 1998-2015 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 8aca2e1b9..7d166ccf6 100644
--- a/fluid/about_panel.fl
+++ b/fluid/about_panel.fl
@@ -1,5 +1,5 @@
# data file for the Fltk User Interface Designer (fluid)
-version 1.0303
+version 1.0304
header_name {.h}
code_name {.cxx}
comment {//
@@ -7,7 +7,7 @@ comment {//
//
// About dialog for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2014 by Bill Spitzak and others.
+// Copyright 1998-2015 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
@@ -29,8 +29,8 @@ Function {make_about_panel()} {open
} {
Fl_Window about_panel {
label {About FLUID} open selected
- xywh {340 195 345 180} type Double color 50 selection_color 47 hotspot
- code0 {\#include "../src/flstring.h"} non_modal visible
+ xywh {340 195 345 180} type Double color 50 selection_color 47 hide hotspot
+ code0 {\#include "../src/flstring.h"} non_modal
} {
Fl_Box {} {
image {icons/fluid-96.xpm} xywh {10 10 115 120}
@@ -45,7 +45,7 @@ Version x.x.x}
code2 {o->copy_label(about);}
}
Fl_Box {} {
- label {Copyright 1998-2014 by
+ label {Copyright 1998-2015 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 e8c2c8c55..8db966afb 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-2014 by Bill Spitzak and others.
+// Copyright 1998-2015 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.0303
+// generated by Fast Light User Interface Designer (fluid) version 1.0304
#ifndef about_panel_h
#define about_panel_h
diff --git a/fluid/alignment_panel.cxx b/fluid/alignment_panel.cxx
index 16a2a2a6e..3a1761137 100644
--- a/fluid/alignment_panel.cxx
+++ b/fluid/alignment_panel.cxx
@@ -16,7 +16,7 @@
// http://www.fltk.org/str.php
//
-// generated by Fast Light User Interface Designer (fluid) version 1.0303
+// generated by Fast Light User Interface Designer (fluid) version 1.0304
#include "alignment_panel.h"
#include <FL/Fl_Preferences.H>
diff --git a/fluid/alignment_panel.fl b/fluid/alignment_panel.fl
index 7594640ee..ac4753fbb 100644
--- a/fluid/alignment_panel.fl
+++ b/fluid/alignment_panel.fl
@@ -1,5 +1,5 @@
# data file for the Fltk User Interface Designer (fluid)
-version 1.0303
+version 1.0304
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-2014 by Bill Spitzak and others.
+// Copyright 1998-2015 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
@@ -62,9 +62,9 @@ Function {make_project_window()} {open
} {
Fl_Window project_window {
label {Project Settings} open
- xywh {396 475 399 252} 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
@@ -161,7 +161,7 @@ decl {void scheme_cb(Fl_Choice *, void *);} {public local
Function {make_settings_window()} {} {
Fl_Window settings_window {
label {GUI Settings} open
- xywh {393 191 349 241} type Double non_modal visible
+ xywh {393 191 349 241} type Double hide non_modal
} {
Fl_Choice scheme_choice {
label {Scheme: }
@@ -265,7 +265,7 @@ load_history();}
Function {make_shell_window()} {} {
Fl_Window shell_window {
label {Shell Command} open
- xywh {761 190 365 125} type Double visible
+ xywh {761 190 365 125} type Double hide
} {
Fl_Input shell_command_input {
label {Command:}
@@ -330,7 +330,7 @@ Function {make_shell_window()} {} {
Function {make_layout_window()} {} {
Fl_Window grid_window {
label {Layout Settings} open
- xywh {812 369 310 245} type Double non_modal visible
+ xywh {812 369 310 245} type Double hide non_modal
} {
Fl_Input horizontal_input {
label x
@@ -526,7 +526,7 @@ global_settings_window->show();} {}
Function {make_global_settings_window()} {} {
Fl_Window global_settings_window {
label {FLTK Preferences} open
- xywh {1147 190 400 378} type Double color 50 visible
+ xywh {1147 190 400 378} type Double color 50 hide
} {
Fl_Group {} {
label {Keyboard Focus Options} open
diff --git a/fluid/alignment_panel.h b/fluid/alignment_panel.h
index bb0aacea6..7ff2f0b78 100644
--- a/fluid/alignment_panel.h
+++ b/fluid/alignment_panel.h
@@ -16,7 +16,7 @@
// http://www.fltk.org/str.php
//
-// generated by Fast Light User Interface Designer (fluid) version 1.0303
+// generated by Fast Light User Interface Designer (fluid) version 1.0304
#ifndef alignment_panel_h
#define alignment_panel_h
diff --git a/fluid/fluid.app/Contents/Info.plist b/fluid/fluid.app/Contents/Info.plist
index 60aedd87f..3fd76a555 100644
--- a/fluid/fluid.app/Contents/Info.plist
+++ b/fluid/fluid.app/Contents/Info.plist
@@ -9,11 +9,11 @@
<key>CFBundleIdentifier</key>
<string>org.fltk.fluid</string>
<key>CFBundleVersion</key>
- <string>1.3.3</string>
+ <string>1.3.4</string>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>NSHumanReadableCopyright</key>
- <string>Copyright 1998-2014 by Bill Spitzak and others</string>
+ <string>Copyright 1998-2015 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.3</string>
+ <string>1.3.4</string>
<key>CFBundleGetInfoString</key>
- <string>1.3.3, Copyright 1998-2014 by Bill Spitzak and others</string>
+ <string>1.3.4, Copyright 1998-2015 by Bill Spitzak and others</string>
<key>CFBundleDocumentTypes</key>
<array>
<dict>
diff --git a/fluid/function_panel.cxx b/fluid/function_panel.cxx
index 175d848fc..533655382 100644
--- a/fluid/function_panel.cxx
+++ b/fluid/function_panel.cxx
@@ -16,7 +16,7 @@
// http://www.fltk.org/str.php
//
-// generated by Fast Light User Interface Designer (fluid) version 1.0303
+// generated by Fast Light User Interface Designer (fluid) version 1.0304
#include "function_panel.h"
#include <FL/Fl_Pixmap.H>
diff --git a/fluid/function_panel.fl b/fluid/function_panel.fl
index a5d44c4d2..cf4cc5d57 100644
--- a/fluid/function_panel.fl
+++ b/fluid/function_panel.fl
@@ -1,5 +1,5 @@
# data file for the Fltk User Interface Designer (fluid)
-version 1.0303
+version 1.0304
header_name {.h}
code_name {.cxx}
comment {//
@@ -7,7 +7,7 @@ comment {//
//
// Code dialogs for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2010 by Bill Spitzak and others.
+// Copyright 1998-2015 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
@@ -49,7 +49,7 @@ decl {extern void toggle_widgetbin_cb(Fl_Widget*, void*);} {private global
Function {make_function_panel()} {} {
Fl_Window function_panel {
label {Function/Method Properties} open
- xywh {394 671 343 232} type Double resizable modal visible
+ xywh {394 671 343 232} type Double hide resizable modal
} {
Fl_Group {} {open
xywh {10 10 270 20}
@@ -133,8 +133,8 @@ Function {make_code_panel()} {open
callback {if (Fl::event()==FL_SHORTCUT && Fl::event_key()==FL_Escape)
return; // ignore Escape
code_panel->hide(); // otherwise hide..} open
- xywh {353 262 540 180} type Double labelsize 11 resizable
- code0 {o->size_range(200, 150);} modal visible
+ xywh {353 262 540 180} type Double labelsize 11 hide resizable
+ code0 {o->size_range(200, 150);} modal
} {
Fl_Text_Editor code_input {
xywh {10 10 520 130} box DOWN_BOX labelsize 11 textfont 4 textsize 11 resizable
@@ -163,8 +163,8 @@ code_panel->hide(); // otherwise hide..} open
Function {make_codeblock_panel()} {} {
Fl_Window codeblock_panel {
label {Code Block Properties}
- xywh {468 221 300 115} type Double labelsize 11 resizable
- code0 {o->size_range(o->w(), o->h(), Fl::w(), o->h());} modal visible
+ xywh {468 221 300 115} type Double labelsize 11 hide resizable
+ code0 {o->size_range(o->w(), o->h(), Fl::w(), o->h());} modal
} {
Fl_Input code_before_input {
label {Conditional code block}
@@ -195,8 +195,8 @@ Function {make_codeblock_panel()} {} {
Function {make_declblock_panel()} {} {
Fl_Window declblock_panel {
label {Declaration Block Properties} open
- xywh {428 215 300 135} type Double labelsize 11 resizable
- code0 {o->size_range(o->w(), o->h(), Fl::w(), o->h());} modal visible
+ xywh {428 215 300 135} type Double labelsize 11 hide resizable
+ code0 {o->size_range(o->w(), o->h(), Fl::w(), o->h());} modal
} {
Fl_Group {} {open
xywh {10 10 280 20}
@@ -251,7 +251,7 @@ Function {make_declblock_panel()} {} {
Function {make_decl_panel()} {} {
Fl_Window decl_panel {
label {Declaration Properties} open
- xywh {395 411 343 237} type Double align 80 resizable size_range {343 237 0 0} visible
+ xywh {395 411 343 237} type Double align 80 hide resizable size_range {343 237 0 0}
} {
Fl_Group {} {open
xywh {10 10 270 20}
@@ -327,7 +327,7 @@ Function {make_data_panel()} {open
} {
Fl_Window data_panel {
label {Binary Data Properties} open
- xywh {414 355 343 237} type Double align 80 resizable size_range {343 237 0 0} visible
+ xywh {414 355 343 237} type Double align 80 hide resizable size_range {343 237 0 0}
} {
Fl_Group {} {open
xywh {10 10 270 20}
@@ -457,8 +457,8 @@ Function {make_class_panel()} {} {
Function {make_comment_panel()} {} {
Fl_Window comment_panel {
label {Comment Properties} open selected
- xywh {780 296 550 280} type Double labelsize 11 resizable
- code0 {o->size_range(320, 180);} modal visible
+ xywh {780 296 550 280} type Double labelsize 11 hide resizable
+ code0 {o->size_range(320, 180);} modal
} {
Fl_Text_Editor comment_input {
xywh {110 10 430 230} box DOWN_BOX labelsize 11 textfont 4 textsize 11 resizable
diff --git a/fluid/function_panel.h b/fluid/function_panel.h
index 7863cef6b..afa1287d1 100644
--- a/fluid/function_panel.h
+++ b/fluid/function_panel.h
@@ -16,7 +16,7 @@
// http://www.fltk.org/str.php
//
-// generated by Fast Light User Interface Designer (fluid) version 1.0303
+// generated by Fast Light User Interface Designer (fluid) version 1.0304
#ifndef function_panel_h
#define function_panel_h
diff --git a/fluid/print_panel.cxx b/fluid/print_panel.cxx
index aaa79d7a7..2ff96d9a0 100644
--- a/fluid/print_panel.cxx
+++ b/fluid/print_panel.cxx
@@ -16,7 +16,7 @@
// http://www.fltk.org/str.php
//
-// generated by Fast Light User Interface Designer (fluid) version 1.0303
+// generated by Fast Light User Interface Designer (fluid) version 1.0304
#include "print_panel.h"
#include <stdio.h>
diff --git a/fluid/print_panel.fl b/fluid/print_panel.fl
index cd00025de..7a5ad7d5f 100644
--- a/fluid/print_panel.fl
+++ b/fluid/print_panel.fl
@@ -1,5 +1,5 @@
# data file for the Fltk User Interface Designer (fluid)
-version 1.0303
+version 1.0304
header_name {.h}
code_name {.cxx}
comment {//
@@ -7,7 +7,7 @@ comment {//
//
// FLUID print panel for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2010 by Bill Spitzak and others.
+// Copyright 1998-2015 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
@@ -41,7 +41,7 @@ Function {make_print_panel()} {open
} {
Fl_Window print_panel {
label Print open
- xywh {394 209 465 235} type Double modal visible
+ xywh {394 209 465 235} type Double hide modal
} {
Fl_Group print_panel_controls {open
xywh {10 10 447 216}
@@ -215,7 +215,7 @@ print_collate_group[1 - i]->hide();}
label {Printer Properties}
callback {print_properties_panel->hide();
print_update_status();} open
- xywh {400 537 290 130} type Double modal visible
+ xywh {400 537 290 130} type Double hide modal
} {
Fl_Choice print_page_size {
label {Page Size:}
diff --git a/fluid/print_panel.h b/fluid/print_panel.h
index 118595dd8..0014b572e 100644
--- a/fluid/print_panel.h
+++ b/fluid/print_panel.h
@@ -16,7 +16,7 @@
// http://www.fltk.org/str.php
//
-// generated by Fast Light User Interface Designer (fluid) version 1.0303
+// generated by Fast Light User Interface Designer (fluid) version 1.0304
#ifndef print_panel_h
#define print_panel_h
diff --git a/fluid/template_panel.cxx b/fluid/template_panel.cxx
index afd987175..1d4363fa1 100644
--- a/fluid/template_panel.cxx
+++ b/fluid/template_panel.cxx
@@ -16,7 +16,7 @@
// http://www.fltk.org/str.php
//
-// generated by Fast Light User Interface Designer (fluid) version 1.0303
+// generated by Fast Light User Interface Designer (fluid) version 1.0304
#include "template_panel.h"
#include <stdio.h>
diff --git a/fluid/template_panel.fl b/fluid/template_panel.fl
index 6c95092d3..b1ca69e2a 100644
--- a/fluid/template_panel.fl
+++ b/fluid/template_panel.fl
@@ -1,5 +1,5 @@
# data file for the Fltk User Interface Designer (fluid)
-version 1.0303
+version 1.0304
header_name {.h}
code_name {.cxx}
comment {//
@@ -7,7 +7,7 @@ comment {//
//
// FLUID template support for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2010 by Bill Spitzak and others.
+// Copyright 1998-2015 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
@@ -71,7 +71,7 @@ template_browser->deselect();
template_name->value("");
template_instance->value("");
template_panel->hide();} open
- xywh {398 200 460 355} type Double resizable modal visible
+ xywh {398 200 460 355} type Double hide resizable modal
} {
Fl_Browser template_browser {
label {Available Templates:}
diff --git a/fluid/template_panel.h b/fluid/template_panel.h
index 7cad1a5e8..11d884fed 100644
--- a/fluid/template_panel.h
+++ b/fluid/template_panel.h
@@ -16,7 +16,7 @@
// http://www.fltk.org/str.php
//
-// generated by Fast Light User Interface Designer (fluid) version 1.0303
+// generated by Fast Light User Interface Designer (fluid) version 1.0304
#ifndef template_panel_h
#define template_panel_h
diff --git a/fluid/widget_panel.cxx b/fluid/widget_panel.cxx
index 27fc37ece..f343e53aa 100644
--- a/fluid/widget_panel.cxx
+++ b/fluid/widget_panel.cxx
@@ -16,7 +16,7 @@
// http://www.fltk.org/str.php
//
-// generated by Fast Light User Interface Designer (fluid) version 1.0303
+// generated by Fast Light User Interface Designer (fluid) version 1.0304
#include "widget_panel.h"
diff --git a/fluid/widget_panel.fl b/fluid/widget_panel.fl
index 2d5f14119..fbf63ea8b 100644
--- a/fluid/widget_panel.fl
+++ b/fluid/widget_panel.fl
@@ -1,5 +1,5 @@
# data file for the Fltk User Interface Designer (fluid)
-version 1.0303
+version 1.0304
header_name {.h}
code_name {.cxx}
comment {//
@@ -7,7 +7,7 @@ comment {//
//
// Widget panel for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2010 by Bill Spitzak and others.
+// Copyright 1998-2015 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
@@ -25,8 +25,8 @@ comment {//
Function {make_widget_panel()} {open
} {
Fl_Window {} {open
- xywh {383 206 420 360} type Double labelsize 11 align 80 resizable hotspot
- code0 {o->size_range(o->w(), o->h());} visible
+ xywh {383 206 420 360} type Double labelsize 11 align 80 hide resizable hotspot
+ code0 {o->size_range(o->w(), o->h());}
} {
Fl_Tabs {} {
callback {propagate_load((Fl_Group *)o,v);} open
diff --git a/fluid/widget_panel.h b/fluid/widget_panel.h
index 5840bd3df..5853a7ed2 100644
--- a/fluid/widget_panel.h
+++ b/fluid/widget_panel.h
@@ -16,7 +16,7 @@
// http://www.fltk.org/str.php
//
-// generated by Fast Light User Interface Designer (fluid) version 1.0303
+// generated by Fast Light User Interface Designer (fluid) version 1.0304
#ifndef widget_panel_h
#define widget_panel_h