fxruby 1.6.0 → 1.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/doc/apes02.html +2 -2
- data/doc/apes03.html +1 -1
- data/doc/book.html +1 -1
- data/doc/changes.html +459 -0
- data/doc/cvs.html +2 -2
- data/doc/differences.html +3 -3
- data/doc/implementation.html +1 -1
- data/doc/infosources.html +2 -2
- data/doc/library.html +5 -5
- data/doc/opengl.html +5 -5
- data/doc/pt01.html +1 -1
- data/doc/pt02.html +1 -1
- data/doc/scintilla.html +4 -4
- data/examples/dilbert.rb +10 -47
- data/examples/rulerview.rb +27 -0
- data/examples/textedit/commands.rb +21 -27
- data/examples/textedit/textedit.rb +9 -16
- data/ext/fox16/FXRuby.cpp +11 -6
- data/ext/fox16/core_wrap.cpp +90 -82
- data/ext/fox16/dialogs_wrap.cpp +52 -37
- data/ext/fox16/frames_wrap.cpp +38 -38
- data/ext/fox16/fx3d_wrap.cpp +24 -9
- data/ext/fox16/iconlist_wrap.cpp +4 -4
- data/ext/fox16/icons_wrap.cpp +15 -6
- data/ext/fox16/image_wrap.cpp +15 -6
- data/ext/fox16/impl.cpp +7 -0
- data/ext/fox16/include/FXRbRulerView.h +54 -0
- data/ext/fox16/include/FXRuby.h +7 -5
- data/ext/fox16/include/impl.h +1 -0
- data/ext/fox16/include/inlinestubs.h +7 -0
- data/ext/fox16/label_wrap.cpp +20 -20
- data/ext/fox16/layout_wrap.cpp +30 -30
- data/ext/fox16/list_wrap.cpp +3 -3
- data/ext/fox16/markfuncs.cpp +13 -1
- data/ext/fox16/mdi_wrap.cpp +42 -27
- data/ext/fox16/menu_wrap.cpp +46 -31
- data/ext/fox16/scintilla_wrap.cpp +26 -8
- data/ext/fox16/table_wrap.cpp +33 -13
- data/ext/fox16/text_wrap.cpp +27 -8
- data/ext/fox16/treelist_wrap.cpp +30 -12
- data/ext/fox16/ui_wrap.cpp +857 -92
- data/lib/fox16/aliases.rb +63 -0
- data/lib/fox16/chore.rb +48 -6
- data/lib/fox16/core.rb +0 -16
- data/lib/fox16/timeout.rb +74 -10
- data/lib/fox16/version.rb +1 -1
- data/rdoc-sources/FXApp.rb +0 -72
- data/rdoc-sources/FXFont.rb +3 -0
- data/rdoc-sources/FXRulerView.rb +225 -0
- data/rdoc-sources/FXText.rb +1 -1
- data/rdoc-sources/FXWindow.rb +1 -1
- data/tests/TC_FXComboBox.rb +6 -0
- data/web/home.html +1 -0
- metadata +9 -4
data/doc/apes02.html
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
<html><head>
|
2
2
|
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
3
|
-
<title>Object Life Cycles and Garbage Collection</title><meta name="generator" content="DocBook XSL Stylesheets V1.61.2"><link rel="home" href="book.html" title="Developing Graphical User Interfaces with FXRuby"><link rel="up" href="implementation.html" title="Appendix E. Implementation"><link rel="previous" href="implementation.html" title="Appendix E. Implementation"><link rel="next" href="apes03.html" title="Virtual Functions"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Object Life Cycles and Garbage Collection</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="implementation.html">Prev</a> </td><th width="60%" align="center">Appendix E. Implementation</th><td width="20%" align="right"> <a accesskey="n" href="apes03.html">Next</a></td></tr></table><hr></div><div class="section" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="
|
3
|
+
<title>Object Life Cycles and Garbage Collection</title><meta name="generator" content="DocBook XSL Stylesheets V1.61.2"><link rel="home" href="book.html" title="Developing Graphical User Interfaces with FXRuby"><link rel="up" href="implementation.html" title="Appendix E. Implementation"><link rel="previous" href="implementation.html" title="Appendix E. Implementation"><link rel="next" href="apes03.html" title="Virtual Functions"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Object Life Cycles and Garbage Collection</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="implementation.html">Prev</a> </td><th width="60%" align="center">Appendix E. Implementation</th><td width="20%" align="right"> <a accesskey="n" href="apes03.html">Next</a></td></tr></table><hr></div><div class="section" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e4672"></a>Object Life Cycles and Garbage Collection</h2></div></div><div></div></div><p>One of the more difficult issues to deal with was understanding
|
4
4
|
the "life cycle" of FOX objects (that is, the actual C++ objects) and
|
5
5
|
their relationship to the associated Ruby instances. Understanding this
|
6
6
|
relationship is critical when dealing with Ruby's garbage collector,
|
@@ -18,4 +18,4 @@ myButton = FXButton.new(parentWin, "Hello, World!", myIcon)</pre></td></tr></tab
|
|
18
18
|
returned from most class instance methods; they are references to already-
|
19
19
|
existing objects. For example, <tt class="methodname">FXStatusBar#statusline
|
20
20
|
</tt> returns a reference to the status bar's enclosed status line
|
21
|
-
instance.</p><div class="section" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="
|
21
|
+
instance.</p><div class="section" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="d0e4691"></a>GL Objects</h3></div></div><div></div></div><p>A C++ <tt class="classname">FXGLGroup</tt> object owns all of the <tt class="classname">FXGLObject</tt> objects it "contains". In other words, when that <tt class="classname">FXGLGroup</tt> object is destroyed, it will also destroy all of the <tt class="classname">FXGLObject</tt> objects for which it holds pointers.</p><p>In order to keep track of <span class="emphasis"><em>which</em></span> GL objects have been added to an <tt class="classname">FXGLGroup</tt>, all of the FXRuby C++ classes derived from <tt class="classname">FXGLObject</tt> have a boolean member variable <i class="structfield"><tt>owned</tt></i> that indicates whether this object is "owned" or not. Until an <tt class="classname">FXGLObject</tt> object is added to a group, this member variable should stay false.</p></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="implementation.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="implementation.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="apes03.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">Appendix E. Implementation </td><td width="20%" align="center"><a accesskey="h" href="book.html">Home</a></td><td width="40%" align="right" valign="top"> Virtual Functions</td></tr></table></div></body></html>
|
data/doc/apes03.html
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
<html><head>
|
2
2
|
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
3
|
-
<title>Virtual Functions</title><meta name="generator" content="DocBook XSL Stylesheets V1.61.2"><link rel="home" href="book.html" title="Developing Graphical User Interfaces with FXRuby"><link rel="up" href="implementation.html" title="Appendix E. Implementation"><link rel="previous" href="apes02.html" title="Object Life Cycles and Garbage Collection"><link rel="next" href="cvs.html" title="Appendix F. Getting the Sources from CVS"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Virtual Functions</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="apes02.html">Prev</a> </td><th width="60%" align="center">Appendix E. Implementation</th><td width="20%" align="right"> <a accesskey="n" href="cvs.html">Next</a></td></tr></table><hr></div><div class="section" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="
|
3
|
+
<title>Virtual Functions</title><meta name="generator" content="DocBook XSL Stylesheets V1.61.2"><link rel="home" href="book.html" title="Developing Graphical User Interfaces with FXRuby"><link rel="up" href="implementation.html" title="Appendix E. Implementation"><link rel="previous" href="apes02.html" title="Object Life Cycles and Garbage Collection"><link rel="next" href="cvs.html" title="Appendix F. Getting the Sources from CVS"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Virtual Functions</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="apes02.html">Prev</a> </td><th width="60%" align="center">Appendix E. Implementation</th><td width="20%" align="right"> <a accesskey="n" href="cvs.html">Next</a></td></tr></table><hr></div><div class="section" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e4725"></a>Virtual Functions</h2></div></div><div></div></div><p>
|
4
4
|
One of the design requirements for FXRuby was to ensure that any
|
5
5
|
virtual function call made on a FOX object (from the C++ library
|
6
6
|
layer) is routed to the proper Ruby instance method, even if that
|
data/doc/book.html
CHANGED
@@ -1,3 +1,3 @@
|
|
1
1
|
<html><head>
|
2
2
|
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
3
|
-
<title>Developing Graphical User Interfaces with FXRuby</title><meta name="generator" content="DocBook XSL Stylesheets V1.61.2"><link rel="home" href="book.html" title="Developing Graphical User Interfaces with FXRuby"><link rel="next" href="pt01.html" title="Part I. The Basics"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Developing Graphical User Interfaces with FXRuby</th></tr><tr><td width="20%" align="left"> </td><th width="60%" align="center"> </th><td width="20%" align="right"> <a accesskey="n" href="pt01.html">Next</a></td></tr></table><hr></div><div class="book" lang="en"><div class="titlepage"><div><div><h1 class="title"><a name="book"></a>Developing Graphical User Interfaces with FXRuby</h1></div><div><h2 class="subtitle">Covers FXRuby Version 1.6</h2></div><div><div class="author"><h3 class="author"><span class="firstname">Lyle</span> <span class="surname">Johnson</span></h3></div></div><div><p class="copyright">Copyright © 2006 J. Lyle Johnson</p></div></div><div></div><hr></div><div class="toc"><p><b>Table of Contents</b></p><dl><dt>I. <a href="pt01.html">The Basics</a></dt><dd><dl><dt><a href="goals.html">History and Goals</a></dt><dt>1. <a href="build.html">Building from Source Code</a></dt><dt>2. <a href="gems.html">Installing from Gems</a></dt><dt>3. <a href="tutorial1.html">Hello, World!</a></dt><dd><dl><dt><a href="tutorial1.html#d0e597">First Things First</a></dt><dt><a href="ch03s02.html">Better living through buttons</a></dt><dt><a href="ch03s03.html">Messages</a></dt><dt><a href="ch03s04.html">Adding a tool tip</a></dt><dt><a href="ch03s05.html">Adding an icon</a></dt></dl></dd><dt>4. <a href="clipboardtut.html">Working With the Clipboard</a></dt><dd><dl><dt><a href="clipboardtut.html#d0e986">Basic Application</a></dt><dt><a href="ch04s02.html">Acquiring the Clipboard</a></dt><dt><a href="ch04s03.html">Sending Data to the Clipboard</a></dt><dt><a href="ch04s04.html">Pasting Data from the Clipboard</a></dt></dl></dd><dt>5. <a href="dragdroptut.html">Drag and Drop</a></dt><dd><dl><dt><a href="dragdroptut.html#d0e1201">Drop Sites</a></dt><dt><a href="ch05s02.html">Drag Sources</a></dt><dt><a href="ch05s03.html">Putting It All Together</a></dt></dl></dd><dt>6. <a href="clipboardtut.html">Unicode and FXRuby</a></dt><dd><dl><dt><a href="clipboardtut.html#d0e1608">Basic Application</a></dt></dl></dd><dt>7. <a href="examples.html">Examples</a></dt><dt>8. <a href="events.html">FXRuby's Message-Target System</a></dt><dt>9. <a href="todo.html">To-do list</a></dt><dt>10. <a href="infosources.html">Other Sources of Information</a></dt></dl></dd><dt>II. <a href="pt02.html">Appendices</a></dt><dd><dl><dt>A. <a href="opengl.html">Using OpenGL with FXRuby</a></dt><dt>B. <a href="scintilla.html">Using Scintilla with FXRuby</a></dt><dt>C. <a href="differences.html">Differences between FOX and FXRuby</a></dt><dt>D. <a href="library.html">The FXRuby Standard Library</a></dt><dt>E. <a href="implementation.html">Implementation</a></dt><dd><dl><dt><a href="implementation.html#
|
3
|
+
<title>Developing Graphical User Interfaces with FXRuby</title><meta name="generator" content="DocBook XSL Stylesheets V1.61.2"><link rel="home" href="book.html" title="Developing Graphical User Interfaces with FXRuby"><link rel="next" href="pt01.html" title="Part I. The Basics"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Developing Graphical User Interfaces with FXRuby</th></tr><tr><td width="20%" align="left"> </td><th width="60%" align="center"> </th><td width="20%" align="right"> <a accesskey="n" href="pt01.html">Next</a></td></tr></table><hr></div><div class="book" lang="en"><div class="titlepage"><div><div><h1 class="title"><a name="book"></a>Developing Graphical User Interfaces with FXRuby</h1></div><div><h2 class="subtitle">Covers FXRuby Version 1.6</h2></div><div><div class="author"><h3 class="author"><span class="firstname">Lyle</span> <span class="surname">Johnson</span></h3></div></div><div><p class="copyright">Copyright © 2006 J. Lyle Johnson</p></div></div><div></div><hr></div><div class="toc"><p><b>Table of Contents</b></p><dl><dt>I. <a href="pt01.html">The Basics</a></dt><dd><dl><dt><a href="goals.html">History and Goals</a></dt><dt>1. <a href="build.html">Building from Source Code</a></dt><dt>2. <a href="gems.html">Installing from Gems</a></dt><dt>3. <a href="tutorial1.html">Hello, World!</a></dt><dd><dl><dt><a href="tutorial1.html#d0e597">First Things First</a></dt><dt><a href="ch03s02.html">Better living through buttons</a></dt><dt><a href="ch03s03.html">Messages</a></dt><dt><a href="ch03s04.html">Adding a tool tip</a></dt><dt><a href="ch03s05.html">Adding an icon</a></dt></dl></dd><dt>4. <a href="clipboardtut.html">Working With the Clipboard</a></dt><dd><dl><dt><a href="clipboardtut.html#d0e986">Basic Application</a></dt><dt><a href="ch04s02.html">Acquiring the Clipboard</a></dt><dt><a href="ch04s03.html">Sending Data to the Clipboard</a></dt><dt><a href="ch04s04.html">Pasting Data from the Clipboard</a></dt></dl></dd><dt>5. <a href="dragdroptut.html">Drag and Drop</a></dt><dd><dl><dt><a href="dragdroptut.html#d0e1201">Drop Sites</a></dt><dt><a href="ch05s02.html">Drag Sources</a></dt><dt><a href="ch05s03.html">Putting It All Together</a></dt></dl></dd><dt>6. <a href="clipboardtut.html">Unicode and FXRuby</a></dt><dd><dl><dt><a href="clipboardtut.html#d0e1608">Basic Application</a></dt></dl></dd><dt>7. <a href="examples.html">Examples</a></dt><dt>8. <a href="events.html">FXRuby's Message-Target System</a></dt><dt>9. <a href="todo.html">To-do list</a></dt><dt>10. <a href="infosources.html">Other Sources of Information</a></dt><dt>11. <a href="changes.html">Change History</a></dt></dl></dd><dt>II. <a href="pt02.html">Appendices</a></dt><dd><dl><dt>A. <a href="opengl.html">Using OpenGL with FXRuby</a></dt><dt>B. <a href="scintilla.html">Using Scintilla with FXRuby</a></dt><dt>C. <a href="differences.html">Differences between FOX and FXRuby</a></dt><dt>D. <a href="library.html">The FXRuby Standard Library</a></dt><dt>E. <a href="implementation.html">Implementation</a></dt><dd><dl><dt><a href="implementation.html#d0e4653">Code Generation</a></dt><dt><a href="apes02.html">Object Life Cycles and Garbage Collection</a></dt><dd><dl><dt><a href="apes02.html#d0e4691">GL Objects</a></dt></dl></dd><dt><a href="apes03.html">Virtual Functions</a></dt></dl></dd><dt>F. <a href="cvs.html">Getting the Sources from CVS</a></dt></dl></dd></dl></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"> </td><td width="20%" align="center"> </td><td width="40%" align="right"> <a accesskey="n" href="pt01.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top"> </td><td width="20%" align="center"> </td><td width="40%" align="right" valign="top"> Part I. The Basics</td></tr></table></div></body></html>
|
data/doc/changes.html
ADDED
@@ -0,0 +1,459 @@
|
|
1
|
+
<html><head>
|
2
|
+
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
3
|
+
<title>Chapter 11. Change History</title><meta name="generator" content="DocBook XSL Stylesheets V1.61.2"><link rel="home" href="book.html" title="Developing Graphical User Interfaces with FXRuby"><link rel="up" href="pt01.html" title="Part I. The Basics"><link rel="previous" href="infosources.html" title="Chapter 10. Other Sources of Information"><link rel="next" href="pt02.html" title="Part II. Appendices"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Chapter 11. Change History</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="infosources.html">Prev</a> </td><th width="60%" align="center">Part I. The Basics</th><td width="20%" align="right"> <a accesskey="n" href="pt02.html">Next</a></td></tr></table><hr></div><div class="chapter" lang="en"><div class="titlepage"><div><div><h2 class="title"><a name="changes"></a>Chapter 11. Change History</h2></div></div><div></div></div><div class="simplesect" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e2429"></a>Changes For Version 1.6.0 (May 29, 2006)</h2></div></div><div></div></div><div class="itemizedlist"><ul type="bullet"><li style="list-style-type: disc"><p>This is the first release of FXRuby compatible with FOX version
|
4
|
+
1.6. One of the most signficant changes for FOX 1.6 has been the
|
5
|
+
addition of Unicode support; all FOX widgets and internal string
|
6
|
+
processing routines are now Unicode aware. For a comprehensive
|
7
|
+
overview of the changes made to FOX since version 1.4 (including those
|
8
|
+
made in the FOX 1.5 development series), please refer to the <a href="http://www.fox-toolkit.com/news.html" target="_top">News archives</a> at
|
9
|
+
the FOX web site.</p></li><li style="list-style-type: disc"><p>Added the <tt class="methodname">allowSide</tt>,
|
10
|
+
<tt class="methodname">disallowSide</tt> and
|
11
|
+
<tt class="methodname">allowedSide?</tt> methods for the
|
12
|
+
<tt class="classname">FXDockBar</tt> class, as complements to the
|
13
|
+
<tt class="methodname">allowedSides</tt> accessor methods (see <a href="http://rubyforge.org/tracker/index.php?func=detail&aid=2307&group_id=300&atid=1226" target="_top">RubyForge
|
14
|
+
Feature Request #2307</a>).</p></li><li style="list-style-type: disc"><p>Added the <tt class="methodname">visible=</tt> and
|
15
|
+
<tt class="methodname">visible?</tt> accessor methods for the
|
16
|
+
<tt class="classname">FXWindow</tt> class, as complements to the
|
17
|
+
<tt class="methodname">show</tt>, <tt class="methodname">hide</tt> and
|
18
|
+
<tt class="methodname">shown?</tt> methods (see <a href="http://rubyforge.org/tracker/index.php?func=detail&aid=3579&group_id=300&atid=1226" target="_top">RubyForge
|
19
|
+
Feature Request #3579</a>).</p></li><li style="list-style-type: disc"><p>The <tt class="filename">browser.rb</tt> example was making use of a
|
20
|
+
deprecated API (see <a href="http://rubyforge.org/tracker/index.php?func=detail&aid=4325&group_id=300&atid=1223" target="_top">RubyForge
|
21
|
+
Bug #4325</a>). This has been fixed.</p></li><li style="list-style-type: disc"><p>The children instance method for the
|
22
|
+
<tt class="classname">FXWindow</tt> class always returned an array of
|
23
|
+
<tt class="classname">FXWindow</tt> instances, even if the actual types
|
24
|
+
should have been instances of subclasses of
|
25
|
+
<tt class="classname">FXWindow</tt> (see <a href="http://rubyforge.org/tracker/index.php?func=detail&aid=4342&group_id=300&atid=1223" target="_top">RubyForge
|
26
|
+
Bug #4342</a>). This has been fixed.</p></li><li style="list-style-type: disc"><p>The <tt class="filename">dilbert.rb</tt> example program was broken
|
27
|
+
due to a change in the Dilbert.com web site structure (see <a href="http://rubyforge.org/tracker/index.php?func=detail&aid=4597&group_id=300&atid=1223" target="_top">RubyForge
|
28
|
+
Bug #4597</a>). This has been fixed.</p></li><li style="list-style-type: disc"><p>The binary gem for Windows was built with FOX version 1.6.5 and
|
29
|
+
FXScintilla version 1.67 (from CVS).</p></li></ul></div></div><div class="simplesect" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e2520"></a>Changes For Version 1.4.6 (April 26, 2006)</h2></div></div><div></div></div><div class="itemizedlist"><ul type="bullet"><li style="list-style-type: disc"><p>FXRuby would not compile properly on some x86-64 systems (see
|
30
|
+
<a href="http://rubyforge.org/tracker/index.php?func=detail&aid=3729&group_id=300&atid=1223" target="_top">RubyForge
|
31
|
+
Bug #3729</a>). This error has been corrected. Thanks to Javier
|
32
|
+
Goizueta for initially reporting this problem, and especially to
|
33
|
+
Tobias Peters for providing a patch.</p></li><li style="list-style-type: disc"><p>The <tt class="classname">FXIconDict</tt> widget was accidentally
|
34
|
+
"lost" in the transition between FXRuby versions 1.2 and 1.4 (see
|
35
|
+
<a href="http://rubyforge.org/tracker/index.php?func=detail&aid=4117&group_id=300&atid=1223" target="_top">RubyForge
|
36
|
+
Bug #4117</a>). This error has been corrected. Thanks to Manfred
|
37
|
+
Usselmann for reporting this problem.</p></li><li style="list-style-type: disc"><p>The <tt class="classname">FXSwitcher</tt> widget was not sending the
|
38
|
+
appropriate message data to its message target for the
|
39
|
+
<tt class="constant">SEL_COMMAND</tt> message type (see <a href="http://rubyforge.org/tracker/index.php?func=detail&aid=4157&group_id=300&atid=1223" target="_top">RubyForge
|
40
|
+
Bug #4157</a>). This error has been corrected. Thanks to Manfred
|
41
|
+
Usselmann for reporting this problem.</p></li><li style="list-style-type: disc"><p>The <tt class="classname">FXSeparator</tt> class wasn't implemented
|
42
|
+
properly (see <a href="http://rubyforge.org/tracker/index.php?func=detail&aid=4158&group_id=300&atid=1223" target="_top">RubyForge
|
43
|
+
Bug #4158</a>). This error has been corrected. Thanks to Gerard
|
44
|
+
Menochet for reporting this problem.</p></li><li style="list-style-type: disc"><p>The <tt class="methodname">findItemByData</tt> method was
|
45
|
+
implemented incorrectly for the <tt class="classname">FXComboBox</tt>,
|
46
|
+
<tt class="classname">FXFoldingList</tt>,
|
47
|
+
<tt class="classname">FXIconList</tt>, <tt class="classname">FXList</tt> and
|
48
|
+
<tt class="classname">FXListBox</tt> classes (see <a href="http://rubyforge.org/tracker/index.php?func=detail&aid=4172&group_id=300&atid=1223" target="_top">RubyForge
|
49
|
+
Bug #4172</a>). This error has been corrected. Thanks to Gerard
|
50
|
+
Menochet for reporting this problem.</p></li><li style="list-style-type: disc"><p>The <tt class="classname">FXListBox</tt> widget was not sending the
|
51
|
+
appropriate message data to its message target for the
|
52
|
+
<tt class="constant">SEL_COMMAND</tt> message type (see <a href="http://rubyforge.org/tracker/index.php?func=detail&aid=4255&group_id=300&atid=1223" target="_top">RubyForge
|
53
|
+
Bug #4255</a>). This error has been corrected. Thanks to Gerard
|
54
|
+
Menochet for reporting this problem.</p></li><li style="list-style-type: disc"><p>The binary gem for Windows was built with FOX version 1.4.29 and
|
55
|
+
FXScintilla version 1.63.</p></li></ul></div></div><div class="simplesect" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e2599"></a>Changes For Version 1.4.5 (April 10, 2006)</h2></div></div><div></div></div><div class="itemizedlist"><ul type="bullet"><li style="list-style-type: disc"><p>The <tt class="classname">FXTextField</tt> class was not properly
|
56
|
+
responding to the <tt class="constant">ID_INSERT_STRING</tt> command (see
|
57
|
+
<a href="http://rubyforge.org/tracker/index.php?func=detail&aid=3320&group_id=300&atid=1223" target="_top">RubyForge
|
58
|
+
Bug #3320</a>). This error has been corrected. Thanks to Uwe Hartl
|
59
|
+
for reporting this problem.</p></li><li style="list-style-type: disc"><p>The <tt class="methodname">text</tt> and
|
60
|
+
<tt class="methodname">getText</tt> methods for the
|
61
|
+
<tt class="classname">FXMenuCaption</tt> class were returning
|
62
|
+
<tt class="constant">nil</tt> instead of the actual value (see <a href="http://rubyforge.org/tracker/index.php?func=detail&aid=3458&group_id=300&atid=1223" target="_top">RubyForge
|
63
|
+
Bug #3458</a>). This error has been corrected. Thanks to Meinrad
|
64
|
+
Recheis (Henon) for reporting this problem.</p></li><li style="list-style-type: disc"><p>The API documentation for the <tt class="classname">FXMDIChild</tt>
|
65
|
+
class erroneously listed <tt class="constant">SEL_CLOSEALL</tt> as one of
|
66
|
+
the message types that an MDI child window might send to its message
|
67
|
+
target (see <a href="http://rubyforge.org/tracker/index.php?func=detail&aid=3508&group_id=300&atid=1223" target="_top">RubyForge
|
68
|
+
Bug #3508</a>). This error has been corrected. Thanks to Meinrad
|
69
|
+
Recheis (Henon) for reporting this problem.</p></li><li style="list-style-type: disc"><p>Calling the <tt class="methodname">selectRange</tt> method for
|
70
|
+
class <tt class="classname">FXTable</tt> would cause a fatal error instead
|
71
|
+
of merely raising an <tt class="classname">IndexError</tt> exception (see
|
72
|
+
<a href="http://rubyforge.org/tracker/index.php?func=detail&aid=3615&group_id=300&atid=1223" target="_top">RubyForge
|
73
|
+
Bug #3615</a>). This error has been corrected. Thanks to Meinrad
|
74
|
+
Recheis (Henon) for reporting this problem.</p></li><li style="list-style-type: disc"><p>Due to an error in the SWIG interface files, the
|
75
|
+
<tt class="classname">FXChoiceBox</tt> class was basically unusable (see
|
76
|
+
<a href="http://rubyforge.org/tracker/index.php?func=detail&aid=3676&group_id=300&atid=1223" target="_top">RubyForge
|
77
|
+
Bug #3676</a>). This error has been corrected. Thanks to Uwe Hartl
|
78
|
+
for reporting this problem.</p></li><li style="list-style-type: disc"><p>The API documentation for the
|
79
|
+
<tt class="classname">FXRealSlider</tt> and
|
80
|
+
<tt class="classname">FXRealSpinner</tt> classes erroneously claimed that
|
81
|
+
the message data for the <tt class="constant">SEL_COMMAND</tt> and
|
82
|
+
<tt class="constant">SEL_CHANGED</tt> messages sent by these widgets to
|
83
|
+
their targets were integers (see <a href="http://rubyforge.org/tracker/index.php?func=detail&aid=3749&group_id=300&atid=1223" target="_top">RubyForge
|
84
|
+
Bug #3749</a>). Along the same lines, the message data for those
|
85
|
+
widgets wasn't being converted correctly (see <a href="http://rubyforge.org/tracker/index.php?func=detail&aid=3750&group_id=300&atid=1223" target="_top">RubyForge
|
86
|
+
Bug #3750</a>). Both of these errors have been corrected. Thanks
|
87
|
+
to Meinrad Recheis (Henon) for reporting these problems.</p></li><li style="list-style-type: disc"><p>The API documentation for the Fox module incorrectly listed the
|
88
|
+
names of the <tt class="methodname">FXSELTYPE</tt> and
|
89
|
+
<tt class="methodname">FXSELID</tt> methods as
|
90
|
+
<tt class="methodname">SELTYPE</tt> and <tt class="methodname">SELID</tt>
|
91
|
+
(see <a href="http://rubyforge.org/tracker/index.php?func=detail&aid=3940&group_id=300&atid=1223" target="_top">RubyForge
|
92
|
+
Bug #3940</a>). This error has been corrected. Thanks to Joel
|
93
|
+
VanderWerf for reporting this problem.</p></li><li style="list-style-type: disc"><p>The <tt class="classname">FXTableItem</tt> constructor was supposed
|
94
|
+
to (optionally) accept a reference to an arbitrary Ruby object as its
|
95
|
+
third argument, but this wasn't working properly (see <a href="http://rubyforge.org/tracker/index.php?func=detail&aid=4005&group_id=300&atid=1223" target="_top">RubyForge
|
96
|
+
Bug #4005</a>). This error has been corrected. Thanks to Mark
|
97
|
+
Volkman for reporting this problem.</p></li><li style="list-style-type: disc"><p>The binary gem for Windows was built with FOX version 1.4.29 and
|
98
|
+
FXScintilla version 1.63.</p></li></ul></div></div><div class="simplesect" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e2720"></a>Changes For Version 1.4.4 (January 21, 2006)</h2></div></div><div></div></div><div class="itemizedlist"><ul type="bullet"><li style="list-style-type: disc"><p>The build instructions for Unix platforms had not been updated
|
99
|
+
recently and as such contained some errors (see <a href="http://rubyforge.org/tracker/index.php?func=detail&aid=3014&group_id=300&atid=1223" target="_top">RubyForge
|
100
|
+
Bug #3014</a>). These errors have been corrected. Thanks to Dave
|
101
|
+
Burns for reporting this problem.</p></li><li style="list-style-type: disc"><p>The <tt class="methodname">extendSelection</tt> method for the
|
102
|
+
<tt class="classname">FXTable</tt> class was raising an exception if an
|
103
|
+
out of bounds row or column index was passed in (see <a href="http://rubyforge.org/tracker/index.php?func=detail&aid=3050&group_id=300&atid=1223" target="_top">RubyForge
|
104
|
+
Bug #3050</a>). This has been changed so that
|
105
|
+
<tt class="methodname">extendSelection</tt> instead returns false for out
|
106
|
+
of bounds arguments. Thanks to Leonid Moiseichuk for reporting this
|
107
|
+
problem.</p></li><li style="list-style-type: disc"><p>The <tt class="methodname">each_child</tt> iterator method for the
|
108
|
+
<tt class="classname">FXWindow</tt> class would fail if the child window
|
109
|
+
was destroyed in the block (see <a href="http://rubyforge.org/tracker/index.php?func=detail&aid=3134&group_id=300&atid=1223" target="_top">RubyForge
|
110
|
+
Bug #3134</a>). Thanks to Liam Irish for reporting this problem
|
111
|
+
and providing a patch.</p></li><li style="list-style-type: disc"><p>The message data for the <tt class="constant">SEL_REPLACED</tt>
|
112
|
+
message sent by the <tt class="classname">FXTable</tt> class to its target
|
113
|
+
was not being handled properly (see <a href="http://rubyforge.org/tracker/index.php?func=detail&aid=3244&group_id=300&atid=1223" target="_top">RubyForge
|
114
|
+
Bug #3244</a>). There were also problems with the message data for
|
115
|
+
the <tt class="constant">SEL_SELECTED</tt> and
|
116
|
+
<tt class="constant">SEL_DESELECTED</tt> messages. Furthermore, the
|
117
|
+
<tt class="constant">SEL_REPLACED</tt> message was not documented in the
|
118
|
+
RDoc documentation for the <tt class="classname">FXTable</tt> class. All
|
119
|
+
of these problems have been corrected. Thanks to _blackdog for
|
120
|
+
reporting this problem.</p></li><li style="list-style-type: disc"><p>The binary gem for Windows was built with FOX version 1.4.29 and
|
121
|
+
FXScintilla version 1.63.</p></li></ul></div></div><div class="simplesect" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e2784"></a>Changes For Version 1.4.3 (November 7, 2005)</h2></div></div><div></div></div><div class="itemizedlist"><ul type="bullet"><li style="list-style-type: disc"><p>The <tt class="constant">TOGGLEBUTTON_KEEPSTATE</tt> option for the
|
122
|
+
<tt class="classname">FXToggleButton</tt> class was not documented (see
|
123
|
+
<a href="http://rubyforge.org/tracker/index.php?func=detail&aid=2286&group_id=300&atid=1223" target="_top">RubyForge
|
124
|
+
Bug #2286</a>). This oversight has been corrected. Thanks to Tim
|
125
|
+
Smith for reporting this problem.</p></li><li style="list-style-type: disc"><p>The <tt class="filename">scintilla.rb</tt> library file was not up to
|
126
|
+
date with the latest FXScintilla release, and as a result it was
|
127
|
+
missing some methods (see <a href="http://rubyforge.org/tracker/index.php?func=detail&aid=2479&group_id=300&atid=1223" target="_top">RubyForge
|
128
|
+
Bug #2479</a>). This oversight has been corrected. Thanks to Maxim
|
129
|
+
Kulkin for reporting this problem.</p></li><li style="list-style-type: disc"><p>Due to changes in the APIs for timers and chores, the mechanisms
|
130
|
+
for removing chores and timeouts were broken (see <a href="http://rubyforge.org/tracker/index.php?func=detail&aid=2563&group_id=300&atid=1223" target="_top">RubyForge
|
131
|
+
Bug #2563</a>). This bug has been fixed. Thanks to "moinker" for
|
132
|
+
reporting this problem.</p></li><li style="list-style-type: disc"><p>An error in the test setup caused all of the tests for the
|
133
|
+
<tt class="classname">FXList</tt> class to fail (see <a href="http://rubyforge.org/tracker/index.php?func=detail&aid=2564&group_id=300&atid=1223" target="_top">RubyForge
|
134
|
+
Bug #2564</a>). This bug has been fixed. Thanks to Peter for
|
135
|
+
reporting this problem.</p></li><li style="list-style-type: disc"><p>Due to a bug in the test suite runner script, not all test cases
|
136
|
+
were being exercised (see <a href="http://rubyforge.org/tracker/index.php?func=detail&aid=2565&group_id=300&atid=1223" target="_top">RubyForge
|
137
|
+
Bug #2565</a>). This bug has been fixed.</p></li><li style="list-style-type: disc"><p>Calling the <tt class="methodname">getPixel</tt> method for the
|
138
|
+
<tt class="classname">FXImage</tt> class when the client-side pixel buffer
|
139
|
+
for the image has already been released would cause a program to crash
|
140
|
+
(see <a href="http://rubyforge.org/tracker/index.php?func=detail&aid=2611&group_id=300&atid=1223" target="_top">RubyForge
|
141
|
+
Bug #2611</a>). Now, <tt class="methodname">getPixel</tt> will raise
|
142
|
+
an exception if it's called after the pixel buffer has been released.
|
143
|
+
The documentation for <tt class="methodname">getPixel</tt> has been
|
144
|
+
updated accordingly. Thanks to Gonzalo Garramuno for reporting this
|
145
|
+
problem.</p></li><li style="list-style-type: disc"><p>The <tt class="methodname">makePositionVisible</tt> method for the
|
146
|
+
<tt class="classname">FXTable</tt> class was raising an exception when
|
147
|
+
passed out-of-bounds values for the row or column index (see <a href="http://rubyforge.org/tracker/index.php?func=detail&aid=2660&group_id=300&atid=1223" target="_top">RubyForge
|
148
|
+
Bug #2660</a>). This could happen, for example, if you were to
|
149
|
+
click in a table area outside of the regular cells (which indirectly
|
150
|
+
triggers a call to <tt class="methodname">makePositionVisible</tt>). This
|
151
|
+
was actually inconsistent with standard FOX behavior, which simply
|
152
|
+
ignores out of bounds values for that method's arguments. This bug has
|
153
|
+
been fixed, and the documentation for
|
154
|
+
<tt class="methodname">makePositionVisible</tt> has been updated
|
155
|
+
accordingly. Thanks to Ralf Jonas for reporting this problem.</p></li><li style="list-style-type: disc"><p>The binary gem for Windows was built with FOX version 1.4.21 and
|
156
|
+
FXScintilla version 1.63.</p></li></ul></div></div><div class="simplesect" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e2869"></a>Changes For Version 1.4.2 (August 22, 2005)</h2></div></div><div></div></div><div class="itemizedlist"><ul type="bullet"><li style="list-style-type: disc"><p>Due to a bug in the implementation, the
|
157
|
+
<tt class="methodname">checked?</tt> method for the
|
158
|
+
<tt class="classname">FXCheckButton</tt> class always returned
|
159
|
+
<tt class="constant">false</tt> (see <a href="http://rubyforge.org/tracker/index.php?func=detail&aid=1852&group_id=300&atid=1223" target="_top">RubyForge
|
160
|
+
Bug #1852</a>). This bug has been fixed. Thanks to Meinrad Recheis
|
161
|
+
for reporting this problem.</p></li><li style="list-style-type: disc"><p>The API documentation for the <tt class="classname">FXTable</tt>
|
162
|
+
class listed several obsolete attributes (see <a href="http://rubyforge.org/tracker/index.php?func=detail&aid=1928&group_id=300&atid=1223" target="_top">RubyForge
|
163
|
+
Bug #1928</a>). Those errors have been corrected. Thanks to Pavel
|
164
|
+
Sokolov for reporting these problems.</p></li><li style="list-style-type: disc"><p>There were a number of bugs in the
|
165
|
+
<tt class="filename">textedit.rb</tt> example program (see <a href="http://rubyforge.org/tracker/index.php?func=detail&aid=1979&group_id=300&atid=1223" target="_top">RubyForge
|
166
|
+
Bug #1979</a>), and those bugs have been fixed. Thanks to Claude
|
167
|
+
Marinier for reporting these problems.</p></li><li style="list-style-type: disc"><p>The API documentation for the <tt class="classname">FXTreeList</tt>
|
168
|
+
class' <tt class="methodname">new</tt> method still showed the number of
|
169
|
+
visible items (<i class="parameter"><tt>nvis</tt></i>) as its second argument
|
170
|
+
(see <a href="http://rubyforge.org/tracker/index.php?func=detail&aid=2171&group_id=300&atid=1223" target="_top">RubyForge
|
171
|
+
Bug #2171</a>). This problem has been corrected. Thanks to Bill
|
172
|
+
Atkins for reporting this problem.</p></li><li style="list-style-type: disc"><p>The API documentation for the <tt class="classname">FXTopWindow</tt>
|
173
|
+
class had a number of errors (see <a href="http://rubyforge.org/tracker/index.php?func=detail&aid=2269&group_id=300&atid=1223" target="_top">RubyForge
|
174
|
+
Bug #2269</a>). This problem has been corrected.</p></li><li style="list-style-type: disc"><p>The API documentation for the <tt class="classname">FXTreeList</tt>
|
175
|
+
class still listed the obsolete <tt class="methodname">reparentItem</tt>
|
176
|
+
method (see <a href="http://rubyforge.org/tracker/index.php?func=detail&aid=2270&group_id=300&atid=1223" target="_top">RubyForge
|
177
|
+
Bug #2270</a>). This problem has been corrected. Thanks to Jacob
|
178
|
+
Hansen for reporting this problem.</p></li><li style="list-style-type: disc"><p>Due to a bug in how the SWIG typemaps for the
|
179
|
+
<span class="type">FXlong</span> type were defined, some methods for the
|
180
|
+
<tt class="classname">FXFileStream</tt> class were broken (see <a href="http://rubyforge.org/tracker/index.php?func=detail&aid=2275&group_id=300&atid=1223" target="_top">RubyForge
|
181
|
+
Bug #2275</a>). This problem has been corrected. Thanks to Gonzalo
|
182
|
+
Garramuno for reporting this problem.</p></li><li style="list-style-type: disc"><p>Merged in all of the fixes for FXRuby 1.2.6.</p></li><li style="list-style-type: disc"><p>The binary gem for Windows was built with FOX version 1.4.17 and
|
183
|
+
FXScintilla version 1.63.</p></li></ul></div></div><div class="simplesect" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e2960"></a>Changes For Version 1.4.1 (August 20, 2005)</h2></div></div><div></div></div><div class="itemizedlist"><ul type="bullet"><li style="list-style-type: disc"><p>This is the second release of FXRuby which is compatible with
|
184
|
+
FOX 1.4, and as such should be considered an "unstable" release. For a
|
185
|
+
history of the changes made during the FOX 1.3 and 1.4 development,
|
186
|
+
see the <a href="http://www.fox-toolkit.com/news.html" target="_top">News</a>
|
187
|
+
page at the FOX Web site.</p></li><li style="list-style-type: disc"><p>The unit tests (in the <tt class="filename">tests</tt> subdirectory)
|
188
|
+
had not been updated to require the <tt class="constant">fox14</tt>
|
189
|
+
feature, and were still looking at <tt class="constant">fox12</tt>. This
|
190
|
+
has been corrected.</p></li><li style="list-style-type: disc"><p>A number of minor problems were corrected for the Windows build
|
191
|
+
of FXRuby.</p></li><li style="list-style-type: disc"><p>The binary gem for Windows was built with FOX version 1.4.17 and
|
192
|
+
FXScintilla version 1.63.</p></li></ul></div></div><div class="simplesect" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e2988"></a>Changes For Version 1.4.0 (August 19, 2005)</h2></div></div><div></div></div><div class="itemizedlist"><ul type="bullet"><li style="list-style-type: disc"><p>This is the first release of FXRuby which is compatible with FOX
|
193
|
+
1.4, and as such should be considered an "unstable" release. For a
|
194
|
+
history of the changes made during the FOX 1.3 and 1.4 development,
|
195
|
+
see the <a href="http://www.fox-toolkit.com/news.html" target="_top">News</a>
|
196
|
+
page at the FOX Web site.</p></li></ul></div></div><div class="simplesect" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e2998"></a>Changes For Version 1.2.6 (April 15, 2005)</h2></div></div><div></div></div><div class="itemizedlist"><ul type="bullet"><li style="list-style-type: disc"><p>Some additional problems related to calling the
|
197
|
+
<tt class="methodname">setTableSize</tt> method for an
|
198
|
+
<tt class="classname">FXTable</tt> were discovered (see <a href="http://rubyforge.org/tracker/index.php?func=detail&aid=1597&group_id=300&atid=1223" target="_top">RubyForge
|
199
|
+
Bug #1597</a>). This problem has been corrected. Thanks to Joel
|
200
|
+
VanderWerf for reporting this problem.</p></li><li style="list-style-type: disc"><p>The <tt class="filename">iconlist.rb</tt> example program had a
|
201
|
+
"Sort" pulldown menu filled with a number of commands that didn't
|
202
|
+
really do anything, including sorting the items (see <a href="http://rubyforge.org/tracker/index.php?func=detail&aid=1654&group_id=300&atid=1223" target="_top">RubyForge
|
203
|
+
Bug #1654</a>). This pulldown menu has been removed from that
|
204
|
+
example.</p></li><li style="list-style-type: disc"><p>The API documentation for the <tt class="classname">FXDC</tt> class
|
205
|
+
erroneously referred to the <tt class="methodname">font</tt> attribute as
|
206
|
+
<tt class="methodname">textFont</tt> (see <a href="http://rubyforge.org/tracker/index.php?func=detail&aid=1667&group_id=300&atid=1223" target="_top">RubyForge
|
207
|
+
Bug #1667</a>). This problem has been corrected. Thanks to Meinrad
|
208
|
+
Recheis for reporting this problem.</p></li><li style="list-style-type: disc"><p>The <tt class="methodname">checked?</tt>,
|
209
|
+
<tt class="methodname">unchecked?</tt> and
|
210
|
+
<tt class="methodname">maybe?</tt> methods for the
|
211
|
+
<tt class="classname">FXMenuCheck</tt> class were missing (see <a href="http://rubyforge.org/tracker/index.php?func=detail&aid=1677&group_id=300&atid=1223" target="_top">RubyForge
|
212
|
+
Bug #1677</a>). This problem has been corrected. Thanks to Oliver
|
213
|
+
Smith for reporting this problem.</p></li><li style="list-style-type: disc"><p>The API documentation for the
|
214
|
+
<tt class="classname">FXScrollArea</tt> class incorrectly spelled the
|
215
|
+
names of the <tt class="methodname">horizontalScrollBar</tt> and
|
216
|
+
<tt class="methodname">verticalScrollBar</tt> methods as
|
217
|
+
<tt class="methodname">horizontalScrollbar</tt> and
|
218
|
+
<tt class="methodname">verticalScrollbar</tt> (see <a href="http://rubyforge.org/tracker/index.php?func=detail&aid=1678&group_id=300&atid=1223" target="_top">RubyForge
|
219
|
+
Bug #1678</a>). The documentation has been corrected. Thanks to
|
220
|
+
Jannis Pohlmann for reporting this mistake.</p></li><li style="list-style-type: disc"><p>Some code in the <tt class="filename">groupbox.rb</tt> example
|
221
|
+
program was calling the <tt class="methodname">getRootWindow</tt> method,
|
222
|
+
but that method has been renamed to <tt class="methodname">getRoot</tt>
|
223
|
+
(see <a href="http://rubyforge.org/tracker/index.php?func=detail&aid=1692&group_id=300&atid=1223" target="_top">RubyForge
|
224
|
+
Bug #1692</a>). This problem has been corrected. Thanks to
|
225
|
+
Jaroslav Stika for reporting this problem.</p></li><li style="list-style-type: disc"><p>The <tt class="methodname">hasChar?</tt> method for the
|
226
|
+
<tt class="classname">FXFont</tt> class was spelled without a trailing
|
227
|
+
question mark, but it seems more Ruby-like that it should, so we've
|
228
|
+
added an alias for that (see <a href="http://rubyforge.org/tracker/index.php?func=detail&aid=1714&group_id=300&atid=1223" target="_top">RubyForge
|
229
|
+
Bug #1714</a>). This method also now accepts a string of size 1
|
230
|
+
(i.e. a single character) as its input, as an alternative to an
|
231
|
+
ordinal value. Thanks to Meinrad Recheis for these suggestions.</p></li><li style="list-style-type: disc"><p>The API documentation for the <tt class="classname">FXImage</tt>
|
232
|
+
class mistakenly listed <tt class="constant">IMAGE_ALPHA</tt> as a valid
|
233
|
+
image rendering hint, but this flag is no longer needed since FOX
|
234
|
+
images now always contain an alpha channel (see <a href="http://rubyforge.org/tracker/index.php?func=detail&aid=1715&group_id=300&atid=1223" target="_top">RubyForge
|
235
|
+
Bug #1715</a>). The documentation has been corrected. Thanks to
|
236
|
+
Meinrad Recheis for reporting this mistake.</p></li><li style="list-style-type: disc"><p>Due to an error in the SWIG interface files, the
|
237
|
+
<tt class="methodname">data</tt> method for the
|
238
|
+
<tt class="classname">FXSettings</tt> class was not being wrapped
|
239
|
+
properly. As a result, this method was unavailable and in turn led to
|
240
|
+
other dependent methods (like <tt class="methodname">each_section</tt>)
|
241
|
+
to be unavailable as well (see <a href="http://rubyforge.org/tracker/index.php?func=detail&aid=1771&group_id=300&atid=1223" target="_top">RubyForge
|
242
|
+
Bug #1771</a>). This error has been corrected. Thanks to Jannis
|
243
|
+
Pohlmann for reporting this problem.</p></li><li style="list-style-type: disc"><p>The binary gem for Windows was built with FOX version 1.2.16 and
|
244
|
+
FXScintilla version 1.62.</p></li></ul></div></div><div class="simplesect" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e3134"></a>Changes For Version 1.2.5 (March 1, 2005)</h2></div></div><div></div></div><div class="itemizedlist"><ul type="bullet"><li style="list-style-type: disc"><p>The change made for FXRuby version 1.2.4 regarding garbage
|
245
|
+
collection for table items corrected only one of the problems
|
246
|
+
described in <a href="http://rubyforge.org/tracker/index.php?func=detail&aid=1445&group_id=300&atid=1223" target="_top">RubyForge
|
247
|
+
Bug #1445</a>; There was still a problem related to the
|
248
|
+
"destructive" effects of the <tt class="methodname">setTableSize</tt>
|
249
|
+
method for the <tt class="classname">FXTable</tt> class. This problem has
|
250
|
+
now been corrected as well. Thanks to David Peoples, Jamey Cribbs and
|
251
|
+
Joel VanderWerf for their assistance in helping me to track down this
|
252
|
+
problem.</p></li><li style="list-style-type: disc"><p>The <tt class="methodname">extractText</tt> and
|
253
|
+
<tt class="methodname">overlayText</tt> methods for the
|
254
|
+
<tt class="classname">FXTable</tt> class were implemented incorrectly and
|
255
|
+
weren't listed in the API documentation. These problems have been
|
256
|
+
corrected.</p></li><li style="list-style-type: disc"><p>The checks for out-of-bounds indices in the
|
257
|
+
<tt class="methodname">getColumnX</tt>,
|
258
|
+
<tt class="methodname">setColumnX</tt>, <tt class="methodname">getRowY</tt>,
|
259
|
+
<tt class="methodname">setRowY</tt> and
|
260
|
+
<tt class="methodname">updateRange</tt> methods for the
|
261
|
+
<tt class="classname">FXTable</tt> class were incorrect. These have been
|
262
|
+
fixed.</p></li><li style="list-style-type: disc"><p>The <tt class="methodname">setTableSize</tt> method for the
|
263
|
+
<tt class="classname">FXTable</tt> class now raises
|
264
|
+
<tt class="classname">ArgError</tt> if either the number of rows or
|
265
|
+
columns passed in as arguments is less than zero.</p></li><li style="list-style-type: disc"><p>A typo in one of the source files was causing the build to fail
|
266
|
+
when compiled against Ruby versions 1.8.1 or earlier (see <a href="http://rubyforge.org/tracker/index.php?func=detail&aid=1551&group_id=300&atid=1223" target="_top">RubyForge
|
267
|
+
Bug #1551</a>). This error has been corrected. Thanks to Alex
|
268
|
+
McGuire for reporting this problem.</p></li><li style="list-style-type: disc"><p>The <tt class="methodname">selectItem</tt> method for the
|
269
|
+
<tt class="classname">FXTable</tt> class was removed in FOX 1.2, so we've
|
270
|
+
added a convenience method for this that just calls the
|
271
|
+
<tt class="methodname">selectRange</tt> method under the hood (see <a href="http://rubyforge.org/tracker/index.php?func=detail&aid=1562&group_id=300&atid=1223" target="_top">RubyForge
|
272
|
+
Bug #1562</a>). Thanks to Joel VanderWerf for this
|
273
|
+
suggestion.</p></li><li style="list-style-type: disc"><p>The binary gem for Windows was built with FOX version 1.2.13 and
|
274
|
+
FXScintilla version 1.62.</p></li></ul></div></div><div class="simplesect" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e3219"></a>Changes For Version 1.2.4 (February 23, 2005)</h2></div></div><div></div></div><div class="itemizedlist"><ul type="bullet"><li style="list-style-type: disc"><p>Due to a change in some of the internal Ruby C APIs, a
|
275
|
+
compile-time error for FXRuby was introduced in some of the Ruby 1.8.2
|
276
|
+
preview releases (see <a href="http://rubyforge.org/tracker/index.php?func=detail&aid=1039&group_id=300&atid=1223" target="_top">RubyForge
|
277
|
+
Bug #1039</a>). One should not see any compile-time errors when
|
278
|
+
compiling FXRuby (versions 1.2.3 or later) against the Ruby 1.8.2
|
279
|
+
final release, but I've neverthless made a change to how those
|
280
|
+
internal APIs are used, to avoid any potential problems. Thanks to the
|
281
|
+
many users who pointed out this problem.</p></li><li style="list-style-type: disc"><p>Joel VanderWerf suggested some enhancements to the
|
282
|
+
<tt class="filename">image.rb</tt> example program in order to improve its
|
283
|
+
startup time (see <a href="http://rubyforge.org/tracker/index.php?func=detail&aid=1281&group_id=300&atid=1223" target="_top">RubyForge
|
284
|
+
Bug #1281</a>). Those changes have been incorporated. Thanks to
|
285
|
+
Joel for this suggestion.</p></li><li style="list-style-type: disc"><p>One change for the <tt class="classname">FXImage</tt> class between
|
286
|
+
FOX versions 1.0 and 1.2 is the nature of the pixel buffer that's
|
287
|
+
passed to the <tt class="classname">FXImage</tt> constructor. Previously,
|
288
|
+
this pixel buffer was expected to be a string of bytes; now it's
|
289
|
+
expected to be an array of <span class="type">FXColor</span> values. This
|
290
|
+
modification was not implemented correctly for FXRuby versions 1.2.3
|
291
|
+
and earlier (see <a href="http://rubyforge.org/tracker/index.php?func=detail&aid=1427&group_id=300&atid=1223" target="_top">RubyForge
|
292
|
+
Bug #1427</a>). This bug has been corrected, and the example
|
293
|
+
program (<tt class="filename">image.rb</tt>) and test cases have been
|
294
|
+
updated as well. Thanks to Oliver Smith and others for reporting this
|
295
|
+
problem.</p></li><li style="list-style-type: disc"><p>A couple of different problems, reported by Patrick Fernie and
|
296
|
+
David Peoples, exposed a flaw in how FXRuby manages the links between
|
297
|
+
FOX objects and their Ruby peers when the FOX objects are destroyed
|
298
|
+
(see <a href="http://rubyforge.org/tracker/index.php?func=detail&aid=1445&group_id=300&atid=1223" target="_top">RubyForge
|
299
|
+
Bug #1445</a>). Without going into all the gory details, let's
|
300
|
+
just say that since we have no explicit control over when Ruby's
|
301
|
+
garbage collector decides to "collect" those Ruby peers that point to
|
302
|
+
C++ objects that have been destroyed, we need to take steps to
|
303
|
+
neutralize those Ruby peer objects so that they can't cause your
|
304
|
+
application to crash in the meantime; I've implemented a fix to take
|
305
|
+
care of this situation. Thanks to Patrick and David for reporting
|
306
|
+
these problems.</p></li><li style="list-style-type: disc"><p>The API documentation for FXRuby 1.2 still contained references
|
307
|
+
to the old "spellings" of the <tt class="methodname">fxparseAccel</tt>
|
308
|
+
and <tt class="methodname">fxparseHotKey</tt> method names, which were
|
309
|
+
all lowercase (i.e. <tt class="methodname">fxparseaccel</tt> and
|
310
|
+
<tt class="methodname">fxparsehotkey</tt>). (see <a href="http://rubyforge.org/tracker/index.php?func=detail&aid=1470&group_id=300&atid=1223" target="_top">RubyForge
|
311
|
+
Bug #1470</a>). These errors have been corrected.</p></li><li style="list-style-type: disc"><p>Added the <tt class="methodname">FXScrollArea#scrollCorner</tt>
|
312
|
+
method, which returns a reference to the scroll corner for any window
|
313
|
+
derived from <tt class="classname">FXScrollArea</tt> (see <a href="http://rubyforge.org/tracker/index.php?func=detail&aid=843&group_id=300&atid=1226" target="_top">RubyForge
|
314
|
+
Feature Request #1226</a>). Thanks to Brian Sheehan for this
|
315
|
+
suggestion.</p></li><li style="list-style-type: disc"><p>Added the <tt class="methodname">FXMemoryBuffer#to_a</tt> method,
|
316
|
+
which is just an alias for the <tt class="methodname">data</tt> accessor
|
317
|
+
method that returns a copy of the data buffer as an array (see <a href="http://rubyforge.org/tracker/index.php?func=detail&aid=1295&group_id=300&atid=1226" target="_top">RubyForge
|
318
|
+
Feature Request #1295</a>). Thanks to Meinrad Recheis for this
|
319
|
+
suggestion.</p></li><li style="list-style-type: disc"><p>Added the <tt class="methodname">appendRows</tt> and
|
320
|
+
<tt class="methodname">appendColumns</tt> methods to the
|
321
|
+
<tt class="classname">FXTable</tt> class (see <a href="http://rubyforge.org/tracker/index.php?func=detail&aid=1426&group_id=300&atid=1226" target="_top">RubyForge
|
322
|
+
Feature Request #1295</a>). Thanks to Brett Hallett for this
|
323
|
+
suggestion.</p></li><li style="list-style-type: disc"><p>The binary gem for Windows was built with FOX version 1.2.13 and
|
324
|
+
FXScintilla version 1.62.</p></li></ul></div></div><div class="simplesect" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e3322"></a>Changes For Version 1.2.3 (January 22, 2005)</h2></div></div><div></div></div><div class="itemizedlist"><ul type="bullet"><li style="list-style-type: disc"><p>Since group boxes containing radio buttons no longer enforce the
|
325
|
+
radio behavior of radio buttons (i.e. keeping only one radio button
|
326
|
+
selected at a time), some of the example programs were no longer
|
327
|
+
working as desired (see <a href="http://rubyforge.org/tracker/index.php?func=detail&aid=751&group_id=300&atid=1223" target="_top">RubyForge
|
328
|
+
Bug #751</a> and <a href="http://rubyforge.org/tracker/index.php?func=detail&aid=1280&group_id=300&atid=1223" target="_top">RubyForge
|
329
|
+
Bug #1280</a>). This problem has been corrected. Thanks to Yuri
|
330
|
+
Leikind and Barry DeZonia for reporting this problem.</p></li><li style="list-style-type: disc"><p>Bob Sidebotham reported a little typo in the
|
331
|
+
<tt class="filename">table.rb</tt> example program (see <a href="http://rubyforge.org/tracker/index.php?func=detail&aid=990&group_id=300&atid=1223" target="_top">RubyForge
|
332
|
+
Bug #990</a>). This has been corrected.</p></li><li style="list-style-type: disc"><p>The API documentation for <tt class="classname">FXList</tt> did not
|
333
|
+
reflect the changes for FOX 1.2; the
|
334
|
+
<tt class="methodname">retrieveItem()</tt> has been renamed to
|
335
|
+
<tt class="methodname">getItem()</tt> and
|
336
|
+
<tt class="methodname">insertItem()</tt> has been renamed to
|
337
|
+
<tt class="methodname">setItem()</tt> (see <a href="http://rubyforge.org/tracker/index.php?func=detail&aid=1037&group_id=300&atid=1223" target="_top">RubyForge
|
338
|
+
Bug #1037</a> and <a href="http://rubyforge.org/tracker/index.php?func=detail&aid=1257&group_id=300&atid=1223" target="_top">RubyForge
|
339
|
+
Bug #1257</a>). This has been corrected. Thanks to Remy Drouilhet
|
340
|
+
and Stephan Kamper for reporting this problem.</p></li><li style="list-style-type: disc"><p>The Windows installer was missing some of the documentation
|
341
|
+
files (see <a href="http://rubyforge.org/tracker/index.php?func=detail&aid=1139&group_id=300&atid=1223" target="_top">RubyForge
|
342
|
+
Bug #1139</a>). This has been corrected. Thanks to Curt Hibbs and
|
343
|
+
Mark Smith for reporting this problem.</p></li><li style="list-style-type: disc"><p>The <tt class="filename">browser.rb</tt> example program was broken
|
344
|
+
(see <a href="http://rubyforge.org/tracker/index.php?func=detail&aid=1146&group_id=300&atid=1223" target="_top">RubyForge
|
345
|
+
Bug #1146</a>). This has been corrected. Thanks to Stefan Lang for
|
346
|
+
reporting this problem.</p></li><li style="list-style-type: disc"><p>The attribute setter for
|
347
|
+
<tt class="methodname">FXHeaderItem#justification</tt> was defined
|
348
|
+
incorrectly (see <a href="http://rubyforge.org/tracker/index.php?func=detail&aid=1276&group_id=300&atid=1223" target="_top">RubyForge
|
349
|
+
Bug #1276</a>). This has been corrected. Thanks to Joel VanderWerf
|
350
|
+
for reporting this problem (and providing a patch to fix it).</p></li><li style="list-style-type: disc"><p>The <tt class="methodname">filenames</tt> alias for the
|
351
|
+
<tt class="methodname">FXFileDialog#getFilenames()</tt> instance method
|
352
|
+
was missing (see <a href="http://rubyforge.org/tracker/index.php?func=detail&aid=1277&group_id=300&atid=1223" target="_top">RubyForge
|
353
|
+
Bug #1277</a>). This error has been corrected. Thanks to Barry
|
354
|
+
DeZonia for reporting this problem.</p></li><li style="list-style-type: disc"><p>The API documentation for the
|
355
|
+
<tt class="classname">FXFileDialog</tt> class methods
|
356
|
+
<tt class="methodname">getOpenFilenames()</tt>,
|
357
|
+
<tt class="methodname">getOpenDirectory()</tt>,
|
358
|
+
<tt class="methodname">getOpenFilename()</tt> and
|
359
|
+
<tt class="methodname">getSaveFilename()</tt> was extremely inadequate
|
360
|
+
(see <a href="http://rubyforge.org/tracker/index.php?func=detail&aid=1279&group_id=300&atid=1223" target="_top">RubyForge
|
361
|
+
Bug #1279</a>). This documentation has been improved. Thanks to
|
362
|
+
Barry DeZonia for reporting this problem.</p></li><li style="list-style-type: disc"><p>Brett Hallett contributed a Ruby port of the "ratio" example
|
363
|
+
program from the regular FOX distribution, for demonstrating the use
|
364
|
+
of the new <tt class="classname">FXSpring</tt> layout manager (see <a href="http://rubyforge.org/tracker/index.php?func=detail&aid=1282&group_id=300&atid=1223" target="_top">RubyForge
|
365
|
+
Bug #1282</a>). Many thanks to Brett for this addition!</p></li><li style="list-style-type: disc"><p>Joel VanderWerf contributed code to simplify how programs
|
366
|
+
interact with modal and non-modal dialog boxes (see <a href="http://rubyforge.org/tracker/index.php?func=detail&aid=1283&group_id=300&atid=1223" target="_top">RubyForge
|
367
|
+
Bug #1283</a>). See the API documentation for the new
|
368
|
+
<tt class="methodname">FXDialogBox#execute_modal</tt> and
|
369
|
+
<tt class="methodname">FXDialogBox#execute_nonmodal</tt> methods for
|
370
|
+
examples of their use.</p></li><li style="list-style-type: disc"><p>The attribute setters for
|
371
|
+
<tt class="methodname">FXRealSpinner#selBackColor</tt> and
|
372
|
+
<tt class="methodname">FXSpinner#selBackColor</tt> were defined
|
373
|
+
incorrectly (see <a href="http://rubyforge.org/tracker/index.php?func=detail&aid=1297&group_id=300&atid=1223" target="_top">RubyForge
|
374
|
+
Bug #1297</a>). These have been corrected. Thanks to Meinrad
|
375
|
+
Recheis for reporting this problem.</p></li><li style="list-style-type: disc"><p>The <tt class="methodname">tooltipPause</tt> attribute reader for
|
376
|
+
the <tt class="classname">FXApp</tt> class was missing (see <a href="http://rubyforge.org/tracker/index.php?func=detail&aid=1306&group_id=300&atid=1225" target="_top">RubyForge
|
377
|
+
Patch #1306</a>). Thanks to Joel VanderWerf for reporting this
|
378
|
+
omission and providing a patch to fix it.</p></li><li style="list-style-type: disc"><p>The API documentation for the
|
379
|
+
<tt class="classname">FXToolBarTab</tt> class was missing (see <a href="http://rubyforge.org/tracker/index.php?func=detail&aid=1322&group_id=300&atid=1223" target="_top">RubyForge
|
380
|
+
Bug #1322</a>). Thanks to Joel VanderWerf for reporting this
|
381
|
+
omission.</p></li><li style="list-style-type: disc"><p>The attribute accessors for
|
382
|
+
<tt class="methodname">FXText#visibleRows</tt> and
|
383
|
+
<tt class="methodname">FXText#visibleColumns</tt> were defined and
|
384
|
+
documented incorrectly (see <a href="http://rubyforge.org/tracker/index.php?func=detail&aid=1325&group_id=300&atid=1223" target="_top">RubyForge
|
385
|
+
Bug #1325</a>). These have been corrected. Thanks to Karl El-Koura
|
386
|
+
for reporting this problem.</p></li><li style="list-style-type: disc"><p>The binary gem for Windows was built with FOX version 1.2.13 and
|
387
|
+
FXScintilla version 1.62.</p></li></ul></div></div><div class="simplesect" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e3494"></a>Changes For Version 1.2.2 (October 1, 2004)</h2></div></div><div></div></div><div class="itemizedlist"><ul type="bullet"><li style="list-style-type: disc"><p>In order to avoid versioning problems when dealing with a mix of
|
388
|
+
applications based on either FXRuby 1.0 or 1.2, the feature name for
|
389
|
+
FXRuby has been changed from "fox" to "fox12". For most application
|
390
|
+
developers, this means that you will need to modify the source code
|
391
|
+
for applications targeted at FXRuby 1.2 to begin with the line</p><table border="0" bgcolor="#E0E0E0" width="100%"><tr><td><pre class="programlisting">require 'fox12'</pre></td></tr></table><p>Note that no
|
392
|
+
changes should be required for legacy applications targeted at FXRuby
|
393
|
+
1.0.</p></li><li style="list-style-type: disc"><p>Made a number of updates to the documentation, to reflect API
|
394
|
+
changes for FXRuby 1.2.</p></li><li style="list-style-type: disc"><p>The binary gem for Windows was built with FOX version 1.2.9 and
|
395
|
+
FXScintilla version 1.61.</p></li></ul></div></div><div class="simplesect" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e3511"></a>Changes For Version 1.2a2 (July 10, 2004)</h2></div></div><div></div></div><div class="itemizedlist"><ul type="bullet"><li style="list-style-type: disc"><p>This is the second "alpha" release of FXRuby 1.2. This release
|
396
|
+
should be compatible with any FOX library version 1.2; it is not
|
397
|
+
compatible with any previous FOX library versions. As this is an alpha
|
398
|
+
release, users should expect a certain amount of instability, bugs,
|
399
|
+
etc.</p></li><li style="list-style-type: disc"><p>For this release, all of the FOX 1.2 classes are available with
|
400
|
+
the exception of the <tt class="classname">FXBitmapView</tt> class. There
|
401
|
+
is a small problem with how the <tt class="classname">FXBitmapView</tt>
|
402
|
+
class is declared in the FOX 1.2 header files, and I'm trying to
|
403
|
+
decide how best to resolve that problem. The goal is to have this
|
404
|
+
problem resolved by the next alpha release of FXRuby.</p></li><li style="list-style-type: disc"><p>For this release, all of the RDoc-based online documentation has
|
405
|
+
been brought up to date with the new APIs.</p></li><li style="list-style-type: disc"><p>Portions of the FXRuby User's Guide were still out of date with
|
406
|
+
respect to the new APIs (see <a href="http://sourceforge.net/tracker/index.php?func=detail&aid=988623&group_id=20243&atid=120243" target="_top">SourceForge
|
407
|
+
Bug #988623</a>). This has been fixed.</p></li><li style="list-style-type: disc"><p>The <tt class="filename">mditest.rb</tt> example program was not up
|
408
|
+
to date with the new APIs. This has been fixed.</p></li><li style="list-style-type: disc"><p>The <tt class="filename">glviewer.rb</tt> example program was not up
|
409
|
+
to date with the new APIs (see <a href="http://sourceforge.net/tracker/index.php?func=detail&aid=986479&group_id=20243&atid=120243" target="_top">SourceForge
|
410
|
+
Bug #986479</a>). This has been fixed. Thanks to Remy Drouilhet
|
411
|
+
for reporting this problem and suggesting the fixes.</p></li><li style="list-style-type: disc"><p>The <tt class="methodname">FXGLGroup#bounds</tt> method was defined
|
412
|
+
incorrectly (see <a href="http://sourceforge.net/tracker/index.php?func=detail&aid=986476&group_id=20243&atid=120243" target="_top">SourceForge
|
413
|
+
Bug #986476</a>). This has been fixed. Thanks to Remy Drouilhet
|
414
|
+
for reporting this problem and suggesting the fix.</p></li><li style="list-style-type: disc"><p>The <tt class="filename">scintilla-test.rb</tt> example program was
|
415
|
+
not up to date with the new APIs (see <a href="http://sourceforge.net/tracker/index.php?func=detail&aid=986172&group_id=20243&atid=120243" target="_top">SourceForge
|
416
|
+
Bug #986172</a>). This has been fixed. Thanks to Peter Watkins for
|
417
|
+
reporting this problem and submitting a corrected version of the
|
418
|
+
program.</p></li><li style="list-style-type: disc"><p>There was a small typo in the table.rb example program (see
|
419
|
+
<a href="http://sourceforge.net/tracker/index.php?func=detail&aid=988152&group_id=20243&atid=120243" target="_top">SourceForge
|
420
|
+
Bug #988152</a>). This has been fixed. Thanks to Jamey Cribbs for
|
421
|
+
reporting this problem and suggesting the fix.</p></li><li style="list-style-type: disc"><p>Due to an oversight on my part, one of the overloaded
|
422
|
+
constructors for the <tt class="classname">FXRegion</tt> class wasn't
|
423
|
+
wrapped properly (see <a href="http://sourceforge.net/tracker/index.php?func=detail&aid=986181&group_id=20243&atid=120243" target="_top">SourceForge
|
424
|
+
Bug #986181</a>). This has been fixed. Thanks to Bil Bas for
|
425
|
+
reporting this problem.</p></li><li style="list-style-type: disc"><p>Removed some obsolete aliases for the old leading and trailing
|
426
|
+
rows and columns for the <tt class="classname">FXTable</tt> class (see
|
427
|
+
<a href="http://sourceforge.net/tracker/index.php?func=detail&aid=986181&group_id=20243&atid=120243" target="_top">SourceForge
|
428
|
+
Bug #988038</a>). Thanks to Yuri Leikind for reporting this
|
429
|
+
problem.</p></li><li style="list-style-type: disc"><p>Added <tt class="classname">FXTable</tt> instance methods
|
430
|
+
<tt class="methodname">horizontalGridShown=()</tt> and
|
431
|
+
<tt class="methodname">verticalGridShown=()</tt> to complement the
|
432
|
+
already available <tt class="methodname">horizontalGridShown?</tt> and
|
433
|
+
<tt class="methodname">verticalGridShown?</tt> methods.</p></li><li style="list-style-type: disc"><p>The binary gem for the 1.2a1 release on Windows didn't have PNG
|
434
|
+
or JPEG image support built-in (see <a href="http://sourceforge.net/tracker/index.php?func=detail&aid=986180&group_id=20243&atid=120243" target="_top">SourceForge
|
435
|
+
Bug #986180</a>). This has been fixed. Thanks to Bil Bas for
|
436
|
+
reporting this problem.</p></li><li style="list-style-type: disc"><p>The binary gem for Windows was built with FOX version 1.2.7 and
|
437
|
+
FXScintilla version 1.61.</p></li></ul></div></div><div class="simplesect" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e3620"></a>Changes For Version 1.2a1 (June 28, 2004)</h2></div></div><div></div></div><div class="itemizedlist"><ul type="bullet"><li style="list-style-type: disc"><p>This is the first "alpha" release of FXRuby 1.2. This release
|
438
|
+
should be compatible with any FOX library version 1.2; it is not
|
439
|
+
compatible with any previous FOX library versions. As this is an alpha
|
440
|
+
release, users should expect a certain amount of instability, bugs,
|
441
|
+
etc.</p><p>The intent of this first alpha release is twofold. The primary
|
442
|
+
intent is allow application developers who have current projects based
|
443
|
+
on FXRuby 1.0 to begin the process of updating their applications for
|
444
|
+
compatibility with FXRuby 1.2. For this release, all of the classes
|
445
|
+
that existed in FXRuby 1.0 have been updated for compatibility with
|
446
|
+
FOX 1.2, and so developers should at least be able to begin to "port"
|
447
|
+
their applications forward now. Note that there have been a number of
|
448
|
+
changes for FOX 1.2 and FXRuby 1.2, both in terms of API changes and
|
449
|
+
less obvious "behavioral" changes. For a detailed summary of these
|
450
|
+
changes, please see <a href="http://www.knology.net/~lyle/fox/1.2/WhatsNew.html" target="_top">"What's New
|
451
|
+
in FOX 1.2"</a> (also available as a <a href="http://www.knology.net/~lyle/fox/1.2/WhatsNew.pdf" target="_top">PDF</a>).
|
452
|
+
Note that few, if any, of the new classes introduced in FOX 1.2 are
|
453
|
+
available in this first alpha release of FXRuby 1.2. Support for those
|
454
|
+
new classes should come along quickly in subsequent alpha releases of
|
455
|
+
FXRuby 1.2.</p><p>The secondary intent of this first alpha release is to introduce
|
456
|
+
the new <a href="http://rubygems.rubyforge.org" target="_top">RubyGems</a>-based packaging
|
457
|
+
of FXRuby and to begin to work out the inevitable kinks in that
|
458
|
+
system.</p></li><li style="list-style-type: disc"><p>The binary gem for Windows was built with FOX version 1.2.4 and
|
459
|
+
FXScintilla version 1.57.</p></li></ul></div></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="infosources.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="pt01.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="pt02.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">Chapter 10. Other Sources of Information </td><td width="20%" align="center"><a accesskey="h" href="book.html">Home</a></td><td width="40%" align="right" valign="top"> Part II. Appendices</td></tr></table></div></body></html>
|