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 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 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281
|
<html>
<head>
<link rel="stylesheet" href="page.css" type="text/css">
<title>Home</title>
</head>
<body bgcolor=#ffffff link=#990033 vlink=#990033 alink=#990033 text=#000000>
<!---- TOPIC TITLE WITH LOGO--->
<table border=0 cellpadding= cellspacing=2 width=100% ><tr><td><a href='http://www.fox-toolkit.org' target=_top><img src='art/foxlogo_small.jpg' border=0></a></td><td width=100% valign=bottom id="HEADLINE"><b>
Documentation <A href='doc.html' target="_top" align=left><font size=-2>[Remove Frame]</font></a>
<br><img src='art/line.gif' width=100% height=1></b></td></tr></table>
<p>
<!--- TOPIC TITLE WITH LOGO --->
<table>
<tr bgcolor='#FFF6F1'>
<td valign=top><b>
<a href='foreword.html'>Foreword</a>
</b></td>
<td>
What FOX is, why it was written, and what are its main features.
</td>
</tr>
<tr>
<td valign=top><b>
<a href='introduction.html'>Introduction</a>
</b></td>
<td valign=top>
A quick introduction to programming with FOX, and an overview of the concepts used in FOX development.<!--- INDENT END -->
</td>
</tr>
<tr bgcolor='#FFF6F1'>
<td valign=top><b>
<a href='messages.html'>Targets and Messages</a>
</b></td>
<td valign=top>
How FOX notifies applications about the users actions, mouse clicks and state changes through messages sent to a target.
</td>
</tr>
<tr>
<td valign=top><b>
<a href='guiupdate.html'>Updating Control State</a>
</b></td>
<td valign=top>
FOX automatically updates the application's controls through the use of messages send during the GUI Update Phase. This section explains how to use this feature.
</td>
</tr>
<tr bgcolor='#FFF6F1'>
<td valign=top><b>
<a href='timers.html'>Timers, Chores, Signals, and Inputs</a>
</b></td>
<td valign=top>
Timer, Chore, and Signal messages allow FOX applications to react to other events which are not generated by the end user. Internet sockets, pipes, and other synchronization objects can be watched by means of the Input callback messages, and provide ways for FOX programs to receive inputs from a variety of sources.
</td>
</tr>
<tr>
<td valign=top><b>
<a href='app.html'>The FXApp Class</a>
</b></td>
<td>
The application object is responsible for managing windows, events, and other common facilities.
</font>
</td>
</tr>
<tr bgcolor='#FFF6F1'>
<td valign=top><b>
<a href='window.html'>The FXWindow Class</a>
</b></td>
<td valign=top>
The basic FXWindow class, which is the basis of all FOX controls is explained in more detail.
</td>
</tr>
<tr>
<td valign=top><b>
<a href='layout.html'>Layout Managers</a>
</b></td>
<td valign=top>
The FOX Layout Managers provide a convenient way of arranging your GUI Widgets without the need for explicit specification of coordinates and dimensions.
</td>
</tr>
<tr bgcolor='#FFF6F1'>
<td valign=top><b>
<a href='focus.html'>Keyboard Focus</a>
</b></td>
<td valign=top>
How the keyboard focus is moved around from one widget to another, and what is the effect of this.
</td>
</tr>
<tr>
<td valign=top><b>
<a href='icons.html'>Icons and Images</a>
</b></td>
<td valign=top>
Enrich your applications with icons. With FOX's built-in icon and image classes, this becomes very easy.
</td>
</tr>
<tr bgcolor='#FFF6F1'>
<td valign=top><b>
<a href='fonts.html'>Fonts</a>
</b></td>
<td valign=top>
The Font object provides easy and platform-independent methods for speciying fonts.
</td>
</tr>
<tr>
<td valign=top><b>
<a href='datatarget.html'>Data Targets</a>
</b></td>
<td valign=top>
The FOX Data Targets allow you to directly connect variables in your application code to FOX GUI Controls. Using the declarative programming style made possible by the Data Targets, simple tasks such as entry and display of choices, numbers, and strings can be accomplished with a minimum amount of programming.
</td>
</tr>
<tr bgcolor='#FFF6F1'>
<td valign=top><b>
Help and Tool Tips
</b></td>
<td valign=top>
Status line help and Tooltips are a nice way of allowing users to learn about a program without consulting oracles to devine the meaning of an icon-button.
</td>
</tr>
<tr>
<td valign=top><b>
<a href='registry.html'>The FOX Registry</a>
</b></td>
<td valign=top>
The FOX Registry database provides a facility to manage persistent settings for configuration information in your program.
</td>
</tr>
<tr bgcolor='#FFF6F1'>
<td valign=top><b>
<a href='filefuncs.html'>File Manipulations</a>
</b></td>
<td valign=top>
The FXFile namespace comprises a collection of very useful file manipulation functions that are aware of platform specific issues.
</font>
</td>
</tr>
<tr>
<td valign=top><b>
<a href='rex.html'>Regular Expressions</a>
</b></td>
<td valign=top>
The FXRex class provides powerful regular expression matching functions.
</td>
</tr>
<tr bgcolor='#FFF6F1'>
<td valign=top><b>
<a href='draganddrop.html'>Drag and Drop</a>
</b></td>
<td valign=top>
Drag and drop are part and parcel of any modern GUI driven application.
FOX provides a number of convenient hooks to allow you to move data between
different Widgets, and even between different applications running on different hosts.
</td>
</tr>
<tr>
<td valign=top><b>
<a href='clipboard.html'>Clipboard and Primary Selection</a>
</b></td>
<td valign=top>
The clipboard and the primary selection provide yet another way of moving
data between applications.
</td>
</tr>
<tr bgcolor='#FFF6F1'>
<td valign=top><b>
Using the OpenGL Viewer
</b></td>
<td valign=top>
FOX provides a convenient way to start with 3D OpenGL programming. The GLCanvas widget provides a basic 3D drawing surface. The GLViewer widget provides a complete camera model and interactive manipulation capability, including 3D picking, dragging, and Tooltips.
</td>
</tr>
<tr>
<td valign=top><b>
<a href='serialization.html'>Serialization of Objects</a>
</b></td>
<td valign=top>
FOX provides serialization of both data and objects in a machine-independent, portable manner, by means of its built-in Stream classes.
</td>
</tr>
<tr bgcolor='#FFF6F1'>
<td valign=top><b>
<a href='widgets.html'>Writing Your Own Widgets</a>
</b></td>
<td valign=top>
FOX is designed to make it easy to build new widgets. As FOX is completely implemented in C++, you can use common C++ derivation to create new Widgets from existing ones.
</td>
</tr>
<tr>
<td valign=top><b>
<a href='http://www.fox-toolkit.net/foxdoc-stable/classes.html'>Class Index (FOX 1.0)</a>
</b></td>
<td valign=top>
Alphabetical list of classes in the FOX 1.0 STABLE version.
</td>
</tr>
<tr bgcolor='#FFF6F1'>
<td valign=top><b>
<a href='ref/classes.html'>Class Index (FOX 1.3)</a>
</b></td>
<td valign=top>
Alphabetical list of classes in the FOX 1.3 version.
</td>
</tr>
<tr>
<td valign=top><b>
<a href='win32.html'>Windows Notes </a>
</b></td>
<td valign=top>
This section contains some notes for building FOX applications under Microsoft Windows.
</td>
</tr>
<tr bgcolor='#FFF6F1'>
<td valign=top><b>
<a href='faq.html'>FAQ</a>
</b></td>
<td valign=top>
Frequently Asked Questions List</font>
</td>
</tr>
<tr>
<td valign=top><b>
<a href='references.html'>References </a>
</b></td>
<td valign=top>
References to sources of various papers and articles relevant to FOX.
</td>
</tr>
<tr bgcolor='#FFF6F1'>
<td valign=top><b>
<a href='xml.html'>HTML/XML Resources </a>
</b></td>
<td valign=top>
HTML/XML resources for possible future widgets
</td>
</tr>
</table>
<!--- COPYRIGHT -->
<p>
<table width=100% cellpadding=0 cellspacing=0><tr><td width=100% valign=top id=HEADLINE align=right>
<img src='art/line.gif' width=100% height=1><font size=-1>
Copyright © 1997-2005 Jeroen van der Zijp</font>
</td></tr></table>
</p>
<!--- COPYRIGHT -->
</body>
</html>
|