fxruby 1.6.13 → 1.6.14
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/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/ext/fox16/FXRbApp.cpp +5 -1
- data/ext/fox16/FXRbDataTarget.cpp +2 -2
- data/ext/fox16/FXRuby.cpp +36 -14
- data/ext/fox16/core_wrap.cpp +13 -13
- data/ext/fox16/dc_wrap.cpp +7 -7
- data/ext/fox16/dialogs_wrap.cpp +16 -16
- data/ext/fox16/extconf.rb +31 -0
- data/ext/fox16/frames_wrap.cpp +59 -59
- data/ext/fox16/fx3d_wrap.cpp +1 -1
- data/ext/fox16/iconlist_wrap.cpp +10 -10
- data/ext/fox16/icons_wrap.cpp +25 -25
- data/ext/fox16/image_wrap.cpp +26 -26
- data/ext/fox16/include/FXRbApp.h +5 -3
- data/ext/fox16/include/FXRbDC.h +1 -1
- data/ext/fox16/label_wrap.cpp +6 -6
- data/ext/fox16/layout_wrap.cpp +1 -1
- data/ext/fox16/list_wrap.cpp +7 -7
- data/ext/fox16/mdi_wrap.cpp +5 -5
- data/ext/fox16/menu_wrap.cpp +6 -6
- data/ext/fox16/scintilla_wrap.cpp +3 -3
- data/ext/fox16/table_wrap.cpp +3 -3
- data/ext/fox16/text_wrap.cpp +8 -8
- data/ext/fox16/treelist_wrap.cpp +10 -9
- data/ext/fox16/ui_wrap.cpp +22 -22
- 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 +47 -52
- 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
@@ -19,6 +19,7 @@ module Fox
|
|
19
19
|
# +TOGGLEBUTTON_AUTOGRAY+:: Automatically gray out when not updated
|
20
20
|
# +TOGGLEBUTTON_AUTOHIDE+:: Automatically hide toggle button when not updated
|
21
21
|
# +TOGGLEBUTTON_TOOLBAR+:: Toolbar style toggle button [flat look]
|
22
|
+
# +TOGGLEBUTTON_KEEPSTATE+:: Draw button according to state
|
22
23
|
# +TOGGLEBUTTON_NORMAL+:: <tt>FRAME_RAISED|FRAME_THICK|JUSTIFY_NORMAL|ICON_BEFORE_TEXT</tt>
|
23
24
|
#
|
24
25
|
class FXToggleButton < FXLabel
|
data/tests/output.ps
ADDED
@@ -0,0 +1,166 @@
|
|
1
|
+
%!PS-Adobe-3.0
|
2
|
+
%%Title: Print Job
|
3
|
+
%%Creator: FOX GUI Toolkit Application
|
4
|
+
%%BoundingBox: 72 72 540 720
|
5
|
+
%%Pages: (atend)
|
6
|
+
%%DocumentFonts:
|
7
|
+
%%EndComments
|
8
|
+
%%BeginProlog
|
9
|
+
|
10
|
+
|
11
|
+
% h w x y drawRect
|
12
|
+
/drawRect {
|
13
|
+
newpath moveto dup 0 rlineto exch dup 0 exch
|
14
|
+
rlineto exch neg 0 rlineto neg 0 exch rlineto
|
15
|
+
closepath stroke
|
16
|
+
} def
|
17
|
+
% h w x y fillRect
|
18
|
+
/fillRect {
|
19
|
+
newpath moveto dup 0 rlineto exch dup 0 exch
|
20
|
+
rlineto exch neg 0 rlineto neg 0 exch rlineto
|
21
|
+
closepath fill stroke
|
22
|
+
} def
|
23
|
+
% x y a b drawLine
|
24
|
+
/drawLine {
|
25
|
+
newpath moveto lineto stroke
|
26
|
+
} def
|
27
|
+
% x y ..... npoints drawLines
|
28
|
+
/drawLines {
|
29
|
+
3 1 roll newpath moveto {lineto} repeat stroke
|
30
|
+
} def
|
31
|
+
% x y a b ..... nsegments drawSegmt
|
32
|
+
/drawSegmt {
|
33
|
+
newpath {
|
34
|
+
moveto lineto
|
35
|
+
} repeat stroke
|
36
|
+
} def
|
37
|
+
% x y drawPoint
|
38
|
+
/drawPoint {
|
39
|
+
translate 1 1 scale 8 8 1 [ 8 0 0 8 0 0 ] {<0000>} image
|
40
|
+
} def
|
41
|
+
% centerx centery startAngle endAngle radiusX radiusY drawArc
|
42
|
+
/drawArc {
|
43
|
+
gsave dup 3 1 roll div dup 1 scale 6 -1 roll
|
44
|
+
exch div 5 1 roll 3 -2 roll arc stroke grestore
|
45
|
+
} def
|
46
|
+
% (string) x y height drawText
|
47
|
+
/drawText {
|
48
|
+
gsave findfont exch scalefont setfont moveto
|
49
|
+
show grestore
|
50
|
+
} def
|
51
|
+
/bwproc
|
52
|
+
{ rgbproc
|
53
|
+
dup length 3 idiv string 0 3 0
|
54
|
+
5 -1 roll
|
55
|
+
{ add 2 1 roll 1 sub dup 0 eq
|
56
|
+
{ pop 3 idiv 3 -1 roll dup 4 -1 roll dup
|
57
|
+
3 1 roll 5 -1 roll put 1 add 3 0 }
|
58
|
+
{ 2 1 roll } ifelse
|
59
|
+
} forall
|
60
|
+
pop pop pop
|
61
|
+
} def
|
62
|
+
systemdict /colorimage known not
|
63
|
+
{ /colorimage
|
64
|
+
{ pop pop /rgbproc exch def
|
65
|
+
{ bwproc } image
|
66
|
+
} def
|
67
|
+
} if
|
68
|
+
% Color - r g b C
|
69
|
+
/C { setrgbcolor } bind def
|
70
|
+
% Point - x y r g b P
|
71
|
+
/P { C newpath 0.5 0.0 360.0 arc closepath fill } bind def
|
72
|
+
% Flat Shaded Line - x2 y2 x1 y1 r g b L
|
73
|
+
/L { C newpath moveto lineto stroke } bind def
|
74
|
+
% Smooth-shaded line - x2 y2 r2 g2 b2 x1 y1 r1 g1 b1 SL
|
75
|
+
/SL {
|
76
|
+
/b1 exch def
|
77
|
+
/g1 exch def
|
78
|
+
/r1 exch def
|
79
|
+
/y1 exch def
|
80
|
+
/x1 exch def
|
81
|
+
/b2 exch def
|
82
|
+
/g2 exch def
|
83
|
+
/r2 exch def
|
84
|
+
/y2 exch def
|
85
|
+
/x2 exch def
|
86
|
+
|
87
|
+
b2 b1 sub abs 0.01 gt
|
88
|
+
g2 g1 sub abs 0.005 gt
|
89
|
+
r2 r1 sub abs 0.008 gt
|
90
|
+
or or {
|
91
|
+
/bm b1 b2 add 0.5 mul def
|
92
|
+
/gm g1 g2 add 0.5 mul def
|
93
|
+
/rm r1 r2 add 0.5 mul def
|
94
|
+
/ym y1 y2 add 0.5 mul def
|
95
|
+
/xm x1 x2 add 0.5 mul def
|
96
|
+
|
97
|
+
x1 y1 r1 g1 b1 xm ym rm gm bm SL
|
98
|
+
xm ym rm gm bm x2 y2 r2 g2 b2 SL
|
99
|
+
} {
|
100
|
+
x1 y1 x2 y2 r1 g1 b1 L
|
101
|
+
} ifelse
|
102
|
+
} bind def
|
103
|
+
% Flat-shaded triangle - x3 y3 x2 y2 x1 y1 r g b T
|
104
|
+
/T { C newpath moveto lineto lineto closepath fill } bind def
|
105
|
+
% Smooth-shaded triangle - x3 y3 r3 g3 b3 x2 y2 r2 g2 b2 x1 y1 r1 g1 b1 ST
|
106
|
+
/ST {
|
107
|
+
/b1 exch def
|
108
|
+
/g1 exch def
|
109
|
+
/r1 exch def
|
110
|
+
/y1 exch def
|
111
|
+
/x1 exch def
|
112
|
+
/b2 exch def
|
113
|
+
/g2 exch def
|
114
|
+
/r2 exch def
|
115
|
+
/y2 exch def
|
116
|
+
/x2 exch def
|
117
|
+
/b3 exch def
|
118
|
+
/g3 exch def
|
119
|
+
/r3 exch def
|
120
|
+
/y3 exch def
|
121
|
+
/x3 exch def
|
122
|
+
|
123
|
+
b2 b1 sub abs 0.05 gt
|
124
|
+
g2 g1 sub abs 0.017 gt
|
125
|
+
r2 r1 sub abs 0.032 gt
|
126
|
+
b3 b1 sub abs 0.05 gt
|
127
|
+
g3 g1 sub abs 0.017 gt
|
128
|
+
r3 r1 sub abs 0.032 gt
|
129
|
+
b2 b3 sub abs 0.05 gt
|
130
|
+
g2 g3 sub abs 0.017 gt
|
131
|
+
r2 r3 sub abs 0.032 gt
|
132
|
+
or or or or or or or or {
|
133
|
+
/b12 b1 b2 add 0.5 mul def
|
134
|
+
/g12 g1 g2 add 0.5 mul def
|
135
|
+
/r12 r1 r2 add 0.5 mul def
|
136
|
+
/y12 y1 y2 add 0.5 mul def
|
137
|
+
/x12 x1 x2 add 0.5 mul def
|
138
|
+
|
139
|
+
/b13 b1 b3 add 0.5 mul def
|
140
|
+
/g13 g1 g3 add 0.5 mul def
|
141
|
+
/r13 r1 r3 add 0.5 mul def
|
142
|
+
/y13 y1 y3 add 0.5 mul def
|
143
|
+
/x13 x1 x3 add 0.5 mul def
|
144
|
+
|
145
|
+
/b32 b3 b2 add 0.5 mul def
|
146
|
+
/g32 g3 g2 add 0.5 mul def
|
147
|
+
/r32 r3 r2 add 0.5 mul def
|
148
|
+
/y32 y3 y2 add 0.5 mul def
|
149
|
+
/x32 x3 x2 add 0.5 mul def
|
150
|
+
|
151
|
+
x1 y1 r1 g1 b1 x12 y12 r12 g12 b12 x13 y13 r13 g13 b13
|
152
|
+
x2 y2 r2 g2 b2 x12 y12 r12 g12 b12 x32 y32 r32 g32 b32
|
153
|
+
x3 y3 r3 g3 b3 x32 y32 r32 g32 b32 x13 y13 r13 g13 b13
|
154
|
+
x32 y32 r32 g32 b32 x12 y12 r12 g12 b12 x13 y13 r13 g13 b13
|
155
|
+
ST ST ST ST
|
156
|
+
} {
|
157
|
+
x1 y1 x2 y2 x3 y3 r1 g1 b1 T
|
158
|
+
} ifelse
|
159
|
+
} bind def
|
160
|
+
%%EndProlog
|
161
|
+
%%BeginSetup
|
162
|
+
/#copies 1 def
|
163
|
+
%%EndSetup
|
164
|
+
%%Trailer
|
165
|
+
%%Pages: 0
|
166
|
+
%%EOF
|
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>
|