fxruby 1.6.13-mswin32 → 1.6.14-mswin32
Sign up to get free protection for your applications and to get access to all the features.
- data/doc/apes02.html +2 -2
- data/doc/apes03.html +1 -1
- data/doc/book.html +1 -1
- data/doc/build.html +16 -17
- data/doc/changes.html +40 -28
- data/doc/differences.html +9 -9
- data/doc/gems.html +6 -6
- data/doc/implementation.html +1 -1
- data/doc/infosources.html +3 -3
- data/doc/library.html +5 -5
- data/doc/opengl.html +5 -5
- data/doc/pt02.html +1 -1
- data/doc/scintilla.html +4 -4
- data/doc/subversion.html +1 -1
- data/examples/babelfish.rb +1 -1
- data/examples/custom_table_item.rb +170 -0
- data/examples/dilbert.rb +6 -7
- data/examples/table.rb +0 -5
- data/ext/fox16/fox16.so +0 -0
- data/lib/fox16/kwargs.rb +11 -0
- data/lib/fox16/version.rb +1 -1
- data/rdoc-sources/FXImage.rb +12 -6
- data/rdoc-sources/FXToggleButton.rb +1 -0
- data/tests/output.ps +166 -0
- data/tests/stress1.rb +3 -5
- data/web/community.html +94 -0
- data/web/documentation.html +100 -0
- data/web/downloads.html +114 -93
- data/web/index.html +96 -0
- metadata +7 -12
- data/index.html +0 -14
- data/web/art/fxrubylogo.png +0 -0
- data/web/art/fxrubylogo_small.png +0 -0
- data/web/art/line.gif +0 -0
- data/web/art/oul_grey.gif +0 -0
- data/web/art/our.gif +0 -0
- data/web/home.html +0 -113
- data/web/menu.html +0 -50
- data/web/styles.css +0 -167
- data/web/top.html +0 -15
data/tests/stress1.rb
CHANGED
@@ -14,8 +14,8 @@ RESTART_FREQUENCY = 20
|
|
14
14
|
# Tree
|
15
15
|
# =======================================================================
|
16
16
|
class DirTree < FXTreeList
|
17
|
-
def initialize(
|
18
|
-
super
|
17
|
+
def initialize(p)
|
18
|
+
super(p, :opts => TREELIST_SHOWS_LINES|TREELIST_SHOWS_BOXES|TREELIST_ROOT_BOXES|LAYOUT_FILL_X|LAYOUT_FILL_Y)
|
19
19
|
end
|
20
20
|
|
21
21
|
def create
|
@@ -57,9 +57,7 @@ class Application < FXApp
|
|
57
57
|
init(ARGV)
|
58
58
|
|
59
59
|
@mainWindow = FXMainWindow.new(self, appName, nil, nil, DECOR_ALL, 0, 0, 400, 600)
|
60
|
-
@dirTree = DirTree.new(@mainWindow
|
61
|
-
(TREELIST_SHOWS_LINES|TREELIST_SHOWS_BOXES|TREELIST_ROOT_BOXES|
|
62
|
-
LAYOUT_FILL_X|LAYOUT_FILL_Y))
|
60
|
+
@dirTree = DirTree.new(@mainWindow)
|
63
61
|
|
64
62
|
@count = 0
|
65
63
|
end
|
data/web/community.html
ADDED
@@ -0,0 +1,94 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
2
|
+
|
3
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
4
|
+
<head>
|
5
|
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
6
|
+
<link rel="stylesheet" href="css/style.css" type="text/css" />
|
7
|
+
<link rel="meta" title="DOAP" type="application/rdf+xml" href="http://www.fxruby.org/doap.rdf" />
|
8
|
+
<title>Community</title>
|
9
|
+
</head>
|
10
|
+
|
11
|
+
<body>
|
12
|
+
<!-- wrap starts here -->
|
13
|
+
<div id="wrap">
|
14
|
+
|
15
|
+
<!--header -->
|
16
|
+
<div id="header">
|
17
|
+
|
18
|
+
<h1 id="logo-text"><a href="index.html">FXRuby</a></h1>
|
19
|
+
<p id="slogan">Graphical User Interface Development for Ruby</p>
|
20
|
+
|
21
|
+
</div>
|
22
|
+
|
23
|
+
<!-- menu -->
|
24
|
+
<div id="menu">
|
25
|
+
<ul>
|
26
|
+
<li ><a href=/ >Home</a></li>
|
27
|
+
<li id='current'><a href=# >Community</a></li>
|
28
|
+
<li ><a href=/downloads.html >Downloads</a></li>
|
29
|
+
<li ><a href=/documentation.html >Documentation</a></li>
|
30
|
+
</ul>
|
31
|
+
</div>
|
32
|
+
|
33
|
+
<!-- content-wrap starts here -->
|
34
|
+
<div id="content-wrap">
|
35
|
+
|
36
|
+
<div id="sidebar">
|
37
|
+
|
38
|
+
<h3>Get the Book!</h3>
|
39
|
+
<a href="http://www.pragprog.com/titles/fxruby"><img src="images/fxruby-book.jpg" alt="FXRuby: Create Lean and Mean GUIs with Ruby" width="175" height="210" /></a>
|
40
|
+
|
41
|
+
<h3>Links</h3>
|
42
|
+
<ul class="sidemenu">
|
43
|
+
<li><a href="http://rubyforge.org/news/?group_id=300">News</a></li>
|
44
|
+
<li><a href="http://www.fxruby.org/doc/book.html">User's Guide</a></li>
|
45
|
+
<li><a href="http://www.fxruby.org/doc/api">API Docs</a></li>
|
46
|
+
<li><a href="http://www.fxruby.org/doc/examples.html">Screenshots</a></li>
|
47
|
+
<li><a href="http://rubyforge.org/tracker/?atid=1223&group_id=300&func=browse">Report Bugs</a></li>
|
48
|
+
<li><a href="http://www.gnu.org/copyleft/lesser.html">License</a></li>
|
49
|
+
</ul>
|
50
|
+
|
51
|
+
</div>
|
52
|
+
|
53
|
+
<div id="main">
|
54
|
+
|
55
|
+
<h1>Mailing Lists</h1>
|
56
|
+
|
57
|
+
|
58
|
+
<h2>Announcements</h2>
|
59
|
+
|
60
|
+
|
61
|
+
<p>The announcements list is a low-traffic list on which new releases of FXRuby, as well as software based on FXRuby, will be
|
62
|
+
announced. Discussions on various topics however should preferably take place in the users list, to prevent swamping people’s
|
63
|
+
mailboxes. To subscribe, fill out the <a href="http://rubyforge.org/mailman/listinfo/fxruby-announce" title="Announcements List Subscription
|
64
|
+
Form">web-based subscription form</a>.</p>
|
65
|
+
|
66
|
+
|
67
|
+
<h2>General Discussion</h2>
|
68
|
+
|
69
|
+
|
70
|
+
<p>The users list is intended for discussion on various FOX and FXRuby topics between developers and/or users of FXRuby and
|
71
|
+
applications based on it. If you have questions, feel free to post your questions here, as many people are only too happy to
|
72
|
+
answer them. To subscribe, fill out the <a href="http://rubyforge.org/mailman/listinfo/fxruby-users" title="General Discussion List Subscription
|
73
|
+
Form">web-based subscription form</a>.</p>
|
74
|
+
|
75
|
+
</div>
|
76
|
+
|
77
|
+
<!-- content-wrap ends here -->
|
78
|
+
</div>
|
79
|
+
|
80
|
+
<!--footer starts here-->
|
81
|
+
<div id="footer">
|
82
|
+
|
83
|
+
<p>
|
84
|
+
© 2008 Lyle Johnson<br />
|
85
|
+
Web Site Generated Using <a href="http://webby.rubyforge.org/" title="Webby">Webby</a>
|
86
|
+
</p>
|
87
|
+
|
88
|
+
</div>
|
89
|
+
|
90
|
+
<!-- wrap ends here -->
|
91
|
+
</div>
|
92
|
+
|
93
|
+
</body>
|
94
|
+
</html>
|
@@ -0,0 +1,100 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
2
|
+
|
3
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
4
|
+
<head>
|
5
|
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
6
|
+
<link rel="stylesheet" href="css/style.css" type="text/css" />
|
7
|
+
<link rel="meta" title="DOAP" type="application/rdf+xml" href="http://www.fxruby.org/doap.rdf" />
|
8
|
+
<title>Documentation</title>
|
9
|
+
</head>
|
10
|
+
|
11
|
+
<body>
|
12
|
+
<!-- wrap starts here -->
|
13
|
+
<div id="wrap">
|
14
|
+
|
15
|
+
<!--header -->
|
16
|
+
<div id="header">
|
17
|
+
|
18
|
+
<h1 id="logo-text"><a href="index.html">FXRuby</a></h1>
|
19
|
+
<p id="slogan">Graphical User Interface Development for Ruby</p>
|
20
|
+
|
21
|
+
</div>
|
22
|
+
|
23
|
+
<!-- menu -->
|
24
|
+
<div id="menu">
|
25
|
+
<ul>
|
26
|
+
<li ><a href=/ >Home</a></li>
|
27
|
+
<li ><a href=/community.html >Community</a></li>
|
28
|
+
<li ><a href=/downloads.html >Downloads</a></li>
|
29
|
+
<li id='current'><a href=# >Documentation</a></li>
|
30
|
+
</ul>
|
31
|
+
</div>
|
32
|
+
|
33
|
+
<!-- content-wrap starts here -->
|
34
|
+
<div id="content-wrap">
|
35
|
+
|
36
|
+
<div id="sidebar">
|
37
|
+
|
38
|
+
<h3>Get the Book!</h3>
|
39
|
+
<a href="http://www.pragprog.com/titles/fxruby"><img src="images/fxruby-book.jpg" alt="FXRuby: Create Lean and Mean GUIs with Ruby" width="175" height="210" /></a>
|
40
|
+
|
41
|
+
<h3>Links</h3>
|
42
|
+
<ul class="sidemenu">
|
43
|
+
<li><a href="http://rubyforge.org/news/?group_id=300">News</a></li>
|
44
|
+
<li><a href="http://www.fxruby.org/doc/book.html">User's Guide</a></li>
|
45
|
+
<li><a href="http://www.fxruby.org/doc/api">API Docs</a></li>
|
46
|
+
<li><a href="http://www.fxruby.org/doc/examples.html">Screenshots</a></li>
|
47
|
+
<li><a href="http://rubyforge.org/tracker/?atid=1223&group_id=300&func=browse">Report Bugs</a></li>
|
48
|
+
<li><a href="http://www.gnu.org/copyleft/lesser.html">License</a></li>
|
49
|
+
</ul>
|
50
|
+
|
51
|
+
</div>
|
52
|
+
|
53
|
+
<div id="main">
|
54
|
+
|
55
|
+
<h1>Books</h1>
|
56
|
+
|
57
|
+
|
58
|
+
<p>The book <cite>FXRuby: Create Lean and Mean GUIs with Ruby</cite> (available from the <a href="http://www.pragmaticprogrammer.com/titles/fxruby/">Pragmatic
|
59
|
+
Programmers</a> and other booksellers) is the best print source of documentation
|
60
|
+
for FXRuby. It’s also available as a PDF.</p>
|
61
|
+
|
62
|
+
|
63
|
+
<p>Several other books, including <cite>Ruby Developer’s Guide</cite> and <cite>The Ruby Way</cite>, include chapters or sections
|
64
|
+
on GUI development with FXRuby.</p>
|
65
|
+
|
66
|
+
|
67
|
+
<h1>Online</h1>
|
68
|
+
|
69
|
+
|
70
|
+
<p>The <a href="http://www.fxruby.org/doc/book.html">FXRuby User’s Guide</a> provides detailed installation instructions as well
|
71
|
+
as a handful of tutorial exercises to get you started with FXRuby development.</p>
|
72
|
+
|
73
|
+
|
74
|
+
<p>If you’re looking for API reference documentation, all of the classes and methods for FXRuby are documented
|
75
|
+
<a href="http://www.fxruby.org/doc/api/">here</a>.</p>
|
76
|
+
|
77
|
+
|
78
|
+
<p>Other good sources of documentation include the <a href="http://www.fox-toolkit.org/">FOX home page</a> and the <a href="http://www.fox-toolkit.net/">FOX Community
|
79
|
+
Wiki</a> site.</p>
|
80
|
+
|
81
|
+
</div>
|
82
|
+
|
83
|
+
<!-- content-wrap ends here -->
|
84
|
+
</div>
|
85
|
+
|
86
|
+
<!--footer starts here-->
|
87
|
+
<div id="footer">
|
88
|
+
|
89
|
+
<p>
|
90
|
+
© 2008 Lyle Johnson<br />
|
91
|
+
Web Site Generated Using <a href="http://webby.rubyforge.org/" title="Webby">Webby</a>
|
92
|
+
</p>
|
93
|
+
|
94
|
+
</div>
|
95
|
+
|
96
|
+
<!-- wrap ends here -->
|
97
|
+
</div>
|
98
|
+
|
99
|
+
</body>
|
100
|
+
</html>
|
data/web/downloads.html
CHANGED
@@ -1,93 +1,114 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
<
|
4
|
-
<
|
5
|
-
|
6
|
-
<
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
<
|
12
|
-
|
13
|
-
<
|
14
|
-
|
15
|
-
|
16
|
-
<
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
</
|
27
|
-
|
28
|
-
|
29
|
-
<
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
<
|
43
|
-
<
|
44
|
-
|
45
|
-
<
|
46
|
-
</
|
47
|
-
|
48
|
-
<
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
<a href="http://
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
</
|
82
|
-
|
83
|
-
|
84
|
-
<p>
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
2
|
+
|
3
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
4
|
+
<head>
|
5
|
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
6
|
+
<link rel="stylesheet" href="css/style.css" type="text/css" />
|
7
|
+
<link rel="meta" title="DOAP" type="application/rdf+xml" href="http://www.fxruby.org/doap.rdf" />
|
8
|
+
<title>Downloads</title>
|
9
|
+
</head>
|
10
|
+
|
11
|
+
<body>
|
12
|
+
<!-- wrap starts here -->
|
13
|
+
<div id="wrap">
|
14
|
+
|
15
|
+
<!--header -->
|
16
|
+
<div id="header">
|
17
|
+
|
18
|
+
<h1 id="logo-text"><a href="index.html">FXRuby</a></h1>
|
19
|
+
<p id="slogan">Graphical User Interface Development for Ruby</p>
|
20
|
+
|
21
|
+
</div>
|
22
|
+
|
23
|
+
<!-- menu -->
|
24
|
+
<div id="menu">
|
25
|
+
<ul>
|
26
|
+
<li ><a href=/ >Home</a></li>
|
27
|
+
<li ><a href=/community.html >Community</a></li>
|
28
|
+
<li id='current'><a href=# >Downloads</a></li>
|
29
|
+
<li ><a href=/documentation.html >Documentation</a></li>
|
30
|
+
</ul>
|
31
|
+
</div>
|
32
|
+
|
33
|
+
<!-- content-wrap starts here -->
|
34
|
+
<div id="content-wrap">
|
35
|
+
|
36
|
+
<div id="sidebar">
|
37
|
+
|
38
|
+
<h3>Get the Book!</h3>
|
39
|
+
<a href="http://www.pragprog.com/titles/fxruby"><img src="images/fxruby-book.jpg" alt="FXRuby: Create Lean and Mean GUIs with Ruby" width="175" height="210" /></a>
|
40
|
+
|
41
|
+
<h3>Links</h3>
|
42
|
+
<ul class="sidemenu">
|
43
|
+
<li><a href="http://rubyforge.org/news/?group_id=300">News</a></li>
|
44
|
+
<li><a href="http://www.fxruby.org/doc/book.html">User's Guide</a></li>
|
45
|
+
<li><a href="http://www.fxruby.org/doc/api">API Docs</a></li>
|
46
|
+
<li><a href="http://www.fxruby.org/doc/examples.html">Screenshots</a></li>
|
47
|
+
<li><a href="http://rubyforge.org/tracker/?atid=1223&group_id=300&func=browse">Report Bugs</a></li>
|
48
|
+
<li><a href="http://www.gnu.org/copyleft/lesser.html">License</a></li>
|
49
|
+
</ul>
|
50
|
+
|
51
|
+
</div>
|
52
|
+
|
53
|
+
<div id="main">
|
54
|
+
|
55
|
+
<p>The latest version of FXRuby is always available from the <a href="http://rubyforge.org/projects/fxruby/">RubyForge project page</a>. The
|
56
|
+
RubyForge releases should always have accompanying release notes describing the changes for that release. A cumulative ChangeLog
|
57
|
+
file is also included in the FXRuby source code distribution. Note that any FXRuby 1.6.x release should be compatible with any
|
58
|
+
FOX 1.6.x release, but won’t be compatible with earlier (or later) versions of FOX.</p>
|
59
|
+
|
60
|
+
|
61
|
+
<h1>Source Code</h1>
|
62
|
+
|
63
|
+
|
64
|
+
<p>The FXRuby source code is distributed as a gzipped tar archive, and is available for download from the <a href="http://rubyforge.org/projects/fxruby/">RubyForge project
|
65
|
+
page</a>.</p>
|
66
|
+
|
67
|
+
|
68
|
+
<h1>Binaries for Unix/Linux</h1>
|
69
|
+
|
70
|
+
|
71
|
+
<p>Precompiled binaries for FOX, FXScintilla and FXRuby are available for various Unix/Linux platforms, but not in any
|
72
|
+
centralized way.</p>
|
73
|
+
|
74
|
+
|
75
|
+
<p>Both the <a href="http://www.fox-toolkit.net/">FOX Community Wiki</a> site and the main <a href="http://www.fox-toolkit.org/">FOX web site</a> list a
|
76
|
+
number of independent sources for package downloads for various Linux distributions, but many of these are for older FOX
|
77
|
+
releases. You may have better luck using a RPM search engine like <a href="http://rpmfind.net/">rpmfind.net</a> to find the most recent
|
78
|
+
packages for your distribution.</p>
|
79
|
+
|
80
|
+
|
81
|
+
<h1>Binaries for Microsoft Windows</h1>
|
82
|
+
|
83
|
+
|
84
|
+
<p>Windows installers for FXRuby are available for download from the <a href="http://rubyforge.org/projects/fxruby/">RubyForge project
|
85
|
+
page</a>. The FOX and FXScintilla libraries are built into the Windows installers for FXRuby,
|
86
|
+
and you should not need to download and install those packages separately. These binaries are also compatible with the standard
|
87
|
+
Ruby installer for Windows that are available for download from RubyForge.</p>
|
88
|
+
|
89
|
+
|
90
|
+
<p>Note that the precompiled binaries for Windows are built with OpenGL support, and thus depend on the OpenGL runtime libraries
|
91
|
+
(opengl32.dll and glu32.dll). These libraries were not included with Windows 95 (earlier than OSR2), so if you’re using Ruby and
|
92
|
+
FXRuby on a Windows 95 machine, you may need to download the OpenGL runtime libraries. You must have these libraries installed
|
93
|
+
even if you don’t plan to do anything OpenGL-related with FXRuby.</p>
|
94
|
+
|
95
|
+
</div>
|
96
|
+
|
97
|
+
<!-- content-wrap ends here -->
|
98
|
+
</div>
|
99
|
+
|
100
|
+
<!--footer starts here-->
|
101
|
+
<div id="footer">
|
102
|
+
|
103
|
+
<p>
|
104
|
+
© 2008 Lyle Johnson<br />
|
105
|
+
Web Site Generated Using <a href="http://webby.rubyforge.org/" title="Webby">Webby</a>
|
106
|
+
</p>
|
107
|
+
|
108
|
+
</div>
|
109
|
+
|
110
|
+
<!-- wrap ends here -->
|
111
|
+
</div>
|
112
|
+
|
113
|
+
</body>
|
114
|
+
</html>
|
data/web/index.html
ADDED
@@ -0,0 +1,96 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
2
|
+
|
3
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
4
|
+
<head>
|
5
|
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
6
|
+
<link rel="stylesheet" href="css/style.css" type="text/css" />
|
7
|
+
<link rel="meta" title="DOAP" type="application/rdf+xml" href="http://www.fxruby.org/doap.rdf" />
|
8
|
+
<title>FXRuby</title>
|
9
|
+
</head>
|
10
|
+
|
11
|
+
<body>
|
12
|
+
<!-- wrap starts here -->
|
13
|
+
<div id="wrap">
|
14
|
+
|
15
|
+
<!--header -->
|
16
|
+
<div id="header">
|
17
|
+
|
18
|
+
<h1 id="logo-text"><a href="index.html">FXRuby</a></h1>
|
19
|
+
<p id="slogan">Graphical User Interface Development for Ruby</p>
|
20
|
+
|
21
|
+
</div>
|
22
|
+
|
23
|
+
<!-- menu -->
|
24
|
+
<div id="menu">
|
25
|
+
<ul>
|
26
|
+
<li id='current' ><a href=# >Home</a></li>
|
27
|
+
<li ><a href=/community.html >Community</a></li>
|
28
|
+
<li ><a href=/downloads.html >Downloads</a></li>
|
29
|
+
<li ><a href=/documentation.html >Documentation</a></li>
|
30
|
+
</ul>
|
31
|
+
</div>
|
32
|
+
|
33
|
+
<!-- content-wrap starts here -->
|
34
|
+
<div id="content-wrap">
|
35
|
+
|
36
|
+
<div id="sidebar">
|
37
|
+
|
38
|
+
<h3>Get the Book!</h3>
|
39
|
+
<a href="http://www.pragprog.com/titles/fxruby"><img src="images/fxruby-book.jpg" alt="FXRuby: Create Lean and Mean GUIs with Ruby" width="175" height="210" /></a>
|
40
|
+
|
41
|
+
<h3>Links</h3>
|
42
|
+
<ul class="sidemenu">
|
43
|
+
<li><a href="http://rubyforge.org/news/?group_id=300">News</a></li>
|
44
|
+
<li><a href="http://www.fxruby.org/doc/book.html">User's Guide</a></li>
|
45
|
+
<li><a href="http://www.fxruby.org/doc/api">API Docs</a></li>
|
46
|
+
<li><a href="http://www.fxruby.org/doc/examples.html">Screenshots</a></li>
|
47
|
+
<li><a href="http://rubyforge.org/tracker/?atid=1223&group_id=300&func=browse">Report Bugs</a></li>
|
48
|
+
<li><a href="http://www.gnu.org/copyleft/lesser.html">License</a></li>
|
49
|
+
</ul>
|
50
|
+
|
51
|
+
</div>
|
52
|
+
|
53
|
+
<div id="main">
|
54
|
+
|
55
|
+
<p>FXRuby is a library for developing powerful and sophisticated cross-platform graphical user interfaces (GUIs) for your Ruby
|
56
|
+
applications. It’s based on the <a href="http://www.fox-toolkit.org/" title="FOX Home Page">FOX Toolkit</a>, a popular open source
|
57
|
+
C++ library developed by Jeroen van der Zijp. What that means for you as an application developer is that you’re able to
|
58
|
+
write code in the <a href="http://www.ruby-lang.org/" title="Ruby Home Page">Ruby</a> programming language that you already know and love,
|
59
|
+
while at the same time taking advantage of the performance and functionality of a featureful, highly optimized C++ toolkit.</p>
|
60
|
+
|
61
|
+
|
62
|
+
<h1>Projects Using FXRuby</h1>
|
63
|
+
|
64
|
+
|
65
|
+
<p>Projects using FXRuby include:</p>
|
66
|
+
|
67
|
+
|
68
|
+
<ul>
|
69
|
+
<li><a href="http://www.insula.cz/dbtalk">DbTalk</a> is an interactive GUI-based tool for database querying, programming, administration, etc. It is developed by Dalibor Sramek.</li>
|
70
|
+
<li><a href="http://freeride.rubyforge.org/wiki/wiki.pl">FreeRIDE</a> is an IDE for the Ruby programming language.</li>
|
71
|
+
<li><a href="http://www.fisica.uniud.it/~glast/FRED">FRED</a> is a high energy physics event display built out of Ruby and FOX by Riccardo Giannitrapani and Marco Frailis.</li>
|
72
|
+
<li><a href="http://www.mondrian-ide.com/">Mondrian</a> is a cross-platform project-manager and editor for the Ruby language. Written in 100% native Ruby using the FOX GUI toolkit, Mondrian has the familiar look and feel of a modern IDE while remaining dedicated to the uniqueness of the Ruby language and its community.</li>
|
73
|
+
<li><a href="http://fox-tool.rubyforge.org/">foxGUIb</a> is an interactive gui builder and codegenerator for FXRuby. This tool makes it easy to quickly build complex and good looking graphical user interfaces for Ruby.
|
74
|
+
If your project uses FXRuby for its user interface, and you’d like to see it listed here, please send me an e-mail with the information.</li>
|
75
|
+
</ul>
|
76
|
+
|
77
|
+
</div>
|
78
|
+
|
79
|
+
<!-- content-wrap ends here -->
|
80
|
+
</div>
|
81
|
+
|
82
|
+
<!--footer starts here-->
|
83
|
+
<div id="footer">
|
84
|
+
|
85
|
+
<p>
|
86
|
+
© 2008 Lyle Johnson<br />
|
87
|
+
Web Site Generated Using <a href="http://webby.rubyforge.org/" title="Webby">Webby</a>
|
88
|
+
</p>
|
89
|
+
|
90
|
+
</div>
|
91
|
+
|
92
|
+
<!-- wrap ends here -->
|
93
|
+
</div>
|
94
|
+
|
95
|
+
</body>
|
96
|
+
</html>
|