]> git.decadent.org.uk Git - ion3-doc.git/blob - ionnotes/node2.html
[svn-inject] Installing original source of ion3
[ion3-doc.git] / ionnotes / node2.html
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
2
3 <!--Converted with LaTeX2HTML 2002-2-1 (1.71)
4 original version by:  Nikos Drakos, CBLU, University of Leeds
5 * revised and updated by:  Marcus Hennecke, Ross Moore, Herb Swan
6 * with significant contributions from:
7   Jens Lippmann, Marek Rouchal, Martin Wilck and others -->
8 <HTML>
9 <HEAD>
10 <TITLE>1 Class and object hierarchies</TITLE>
11 <META NAME="description" CONTENT="1 Class and object hierarchies">
12 <META NAME="keywords" CONTENT="ionnotes">
13 <META NAME="resource-type" CONTENT="document">
14 <META NAME="distribution" CONTENT="global">
15
16 <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
17 <META NAME="Generator" CONTENT="LaTeX2HTML v2002-2-1">
18 <META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css">
19
20 <LINK REL="STYLESHEET" HREF="ionnotes.css">
21
22 <LINK REL="next" HREF="node3.html">
23 <LINK REL="previous" HREF="node1.html">
24 <LINK REL="up" HREF="ionnotes.html">
25 <LINK REL="next" HREF="node3.html">
26 </HEAD>
27
28 <BODY >
29
30 <DIV CLASS="navigation"><!--Navigation Panel-->
31 <A NAME="tex2html82"
32   HREF="node3.html">
33 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
34 <A NAME="tex2html76"
35   HREF="ionnotes.html">
36 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
37 <A NAME="tex2html70"
38   HREF="node1.html">
39 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
40 <A NAME="tex2html78"
41   HREF="node1.html">
42 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A> 
43 <A NAME="tex2html80"
44   HREF="node8.html">
45 <IMG WIDTH="43" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="index" SRC="index.png"></A> 
46 <BR>
47 <B> Next:</B> <A NAME="tex2html83"
48   HREF="node3.html">2 Object system implementation</A>
49 <B> Up:</B> <A NAME="tex2html77"
50   HREF="ionnotes.html">Ion: Notes for the</A>
51 <B> Previous:</B> <A NAME="tex2html71"
52   HREF="node1.html">Contents</A>
53  &nbsp; <B>  <A NAME="tex2html79"
54   HREF="node1.html">Contents</A></B> 
55  &nbsp; <B>  <A NAME="tex2html81"
56   HREF="node8.html">Index</A></B> 
57 <BR>
58 <BR></DIV>
59 <!--End of Navigation Panel-->
60 <!--Table of Child-Links-->
61 <A NAME="CHILD_LINKS"><STRONG>Subsections</STRONG></A>
62
63 <UL CLASS="ChildLinks">
64 <LI><A NAME="tex2html84"
65   HREF="node2.html#SECTION00021000000000000000"><SPAN CLASS="arabic">1</SPAN>.<SPAN CLASS="arabic">1</SPAN> Class hierarchy</A>
66 <LI><A NAME="tex2html85"
67   HREF="node2.html#SECTION00022000000000000000"><SPAN CLASS="arabic">1</SPAN>.<SPAN CLASS="arabic">2</SPAN> Object hierarchies: WRegion parents and managers</A>
68 <UL>
69 <LI><A NAME="tex2html86"
70   HREF="node2.html#SECTION00022100000000000000"><SPAN CLASS="arabic">1</SPAN>.<SPAN CLASS="arabic">2</SPAN>.<SPAN CLASS="arabic">1</SPAN> Parent-child relations</A>
71 <LI><A NAME="tex2html87"
72   HREF="node2.html#SECTION00022200000000000000"><SPAN CLASS="arabic">1</SPAN>.<SPAN CLASS="arabic">2</SPAN>.<SPAN CLASS="arabic">2</SPAN> Manager-managed relations</A>
73 </UL>
74 <BR>
75 <LI><A NAME="tex2html88"
76   HREF="node2.html#SECTION00023000000000000000"><SPAN CLASS="arabic">1</SPAN>.<SPAN CLASS="arabic">3</SPAN> Summary</A>
77 </UL>
78 <!--End of Table of Child-Links-->
79 <HR>
80
81 <H1><A NAME="SECTION00020000000000000000"></A>
82 <A NAME="sec:objects"></A>
83 <BR>
84 <SPAN CLASS="arabic">1</SPAN> Class and object hierarchies
85 </H1>
86
87 <P>
88 While Ion does not not have a truly object-oriented design
89 <A NAME="tex2html1"
90   HREF="#foot212"><SUP><SPAN CLASS="arabic">1</SPAN></SUP></A>,
91 things that appear on the computer screen are, however, quite
92 naturally expressed as such ''objects''. Therefore Ion implements
93 a rather primitive OO system for these screen objects and some
94 other things. 
95
96 <P>
97 It is essential for the module writer to learn this object
98 system, but also people who write their own binding configuration files
99 necessarily come into contact with the class and object hierarchies
100 - you need to know which binding setup routines apply where, 
101 and what functions can be used as handlers in which bindings.
102 It is the purpose of this section to attempt to explain these 
103 hierarchies. If you do not wish the read the full section, at least
104 read the summary at the end of it, so that you understand the very
105 basic relations.
106
107 <P>
108 For simplicity we consider only the essential-for-basic-configuration
109 Ioncore, <SPAN  CLASS="textit">mod_tiling</SPAN> and <SPAN  CLASS="textit">mod_query</SPAN> classes. 
110 See Appendix <A HREF="#app:fullhierarchy"><IMG  ALIGN="BOTTOM" BORDER="1" ALT="[*]" SRC="crossref.png"></A> for the full class hierachy visible
111 to Lua side.
112
113 <P>
114
115 <H2><A NAME="SECTION00021000000000000000">
116 <SPAN CLASS="arabic">1</SPAN>.<SPAN CLASS="arabic">1</SPAN> Class hierarchy</A>
117 </H2>
118
119 <P>
120 One of the most important principles of object-oriented design methodology
121 is inheritance; roughly how classes (objects are instances of classes)
122 extend on others' features. Inheritance gives rise to class hierarchy.
123 In the case of single-inheritance this hierarchy can be expressed as a
124 tree where the class at the root is inherited by all others below it
125 and so on. Figure <A HREF="#fig:classhierarchy">1</A> lists out the Ion class 
126 hierarchy and below we explain what features of Ion the classes 
127 implement.
128
129 <P>
130
131 <DIV ALIGN="CENTER"><A NAME="fig:classhierarchy"></A><A NAME="319"></A>
132 <TABLE>
133 <CAPTION ALIGN="BOTTOM"><STRONG>Figure 1:</STRONG>
134 Partial Ioncore, <SPAN  CLASS="textit">mod_tiling</SPAN> and <SPAN  CLASS="textit">mod_query</SPAN> 
135     class hierarchy.</CAPTION>
136 <TR><TD><PRE>
137     Obj
138      |--&gt;WRegion
139      |    |--&gt;WClientWin
140      |    |--&gt;WWindow
141      |    |    |--&gt;WRootWin
142      |    |    |--&gt;WMPlex
143      |    |    |    |--&gt;WScreen
144      |    |    |    |--&gt;WFrame
145      |    |    |--&gt;WInput (mod_query)
146      |    |         |--&gt;WEdln (mod_query)
147      |    |         |--&gt;WMessage (mod_query)
148      |    |--&gt;WGroup
149      |    |    |--&gt;WGroupWS
150      |    |    |--&gt;WGroupCW
151      |    |--&gt;WTiling (mod_tiling)
152      |--&gt;WSplit (mod_tiling)
153 </PRE></TD></TR>
154 </TABLE>
155 </DIV>
156
157 <P>
158 The core classes:
159
160 <P>
161 <DL>
162 <DT><STRONG>Obj</STRONG></DT>
163 <DD><A NAME="325"></A>
164     Is the base of Ion's object system.
165
166 <P>
167 </DD>
168 <DT><STRONG>WRegion</STRONG></DT>
169 <DD><A NAME="326"></A>
170     is the base class for everything corresponding to something on the
171     screen. Each object of type WRegion has a size and  position
172     relative to the parent WRegion. While a big part of Ion 
173     operates on these instead of more specialised classes, WRegion
174     is a ''virtual''  base class in that there are no objects of ''pure''
175     type WRegion; all concrete regions are objects of some class 
176     that inherits WRegion.
177
178 <P>
179 </DD>
180 <DT><STRONG>WClientWin</STRONG></DT>
181 <DD><A NAME="327"></A> is a class for
182     client window objects, the objects that window managers are
183     supposed to manage.
184
185 <P>
186 </DD>
187 <DT><STRONG>WWindow</STRONG></DT>
188 <DD><A NAME="328"></A> is the base class for all
189     internal objects having an X window associated to them
190     (WClientWins also have X windows associated to them).
191
192 <P>
193 </DD>
194 <DT><STRONG>WRootWin</STRONG></DT>
195 <DD><A NAME="329"></A> is the class for
196     root windows<A NAME="242"></A> of X screens<A NAME="243"></A>.
197     Note that an ''X screen'' or root window is not necessarily a
198     single  physical screen<A NAME="244"></A> as a root window
199     may be split over multiple screens when multi-head extensions 
200     such as Xinerama<A NAME="245"></A> are used. (Actually there
201     can be only one WRootWin when Xinerama is used.)
202
203 <P>
204 </DD>
205 <DT><STRONG>WMPlex</STRONG></DT>
206 <DD>is a base class for all regions that''multiplex'' 
207     other regions. This means that of the regions managed by the multiplexer,
208     only one can be displayed at a time. Classes that inhereit WMPlex
209     include screens and frames.
210
211 <P>
212 </DD>
213 <DT><STRONG>WScreen</STRONG></DT>
214 <DD><A NAME="330"></A> is the class for objects
215     corresponding to physical screens. Screens may share a root
216     window when Xinerama multihead extensions are used as explained
217     above.
218
219 <P>
220 </DD>
221 <DT><STRONG>WFrame</STRONG></DT>
222 <DD><A NAME="331"></A> is the class for frames.
223     While most Ion's objects have no graphical presentation, frames basically
224     add to WMPlexes the decorations around client windows 
225     (borders, tabs).
226
227 <P>
228 </DD>
229 <DT><STRONG>WGroup</STRONG></DT>
230 <DD><A NAME="332"></A> is the base class for groups.
231     Particular types of groups are workspaces 
232     (WGroupWS<A NAME="333"></A>)
233     and groups of client windows
234     (WGroupCW<A NAME="334"></A>).
235 </DD>
236 </DL>
237
238 <P>
239 Classes implemented by the <SPAN  CLASS="textit">mod_tiling</SPAN> module:
240
241 <P>
242 <DL>
243 <DT><STRONG>WTiling</STRONG></DT>
244 <DD><A NAME="336"></A> is the class for tilings
245     of frames.
246   
247 </DD>
248 <DT><STRONG>WSplit</STRONG></DT>
249 <DD><A NAME="337"></A> (or, more specifically, classes
250     that inherit it) encode the WTiling tree structure.
251 </DD>
252 </DL>
253
254 <P>
255 Classes implemented by the <SPAN  CLASS="textit">mod_query</SPAN> module:
256
257 <P>
258 <DL>
259 <DT><STRONG>WInput</STRONG></DT>
260 <DD><A NAME="339"></A> is a virtual base class for the
261     two classes below.
262   
263 </DD>
264 <DT><STRONG>WEdln</STRONG></DT>
265 <DD><A NAME="340"></A> is the class for the ''queries'',
266     the text inputs that usually appear at bottoms of frames and sometimes
267     screens. Queries are the functional equivalent of ''mini buffers'' in
268     many text editors.
269   
270 </DD>
271 <DT><STRONG>WMessage</STRONG></DT>
272 <DD><A NAME="341"></A> implements the boxes for 
273     warning and other messages that Ion may wish to display to the user. 
274     These also usually appear at bottoms of frames.
275 </DD>
276 </DL>
277
278 <P>
279 There are also some other ''proxy'' classes that do not refer
280 to objects on the screen. The only important one of these for
281 basic configuration is WMoveresMode that is used for
282 binding callbacks in the move and resize mode.
283
284 <P>
285
286 <H2><A NAME="SECTION00022000000000000000">
287 <SPAN CLASS="arabic">1</SPAN>.<SPAN CLASS="arabic">2</SPAN> Object hierarchies: WRegion parents and managers</A>
288 </H2>
289
290 <P>
291
292 <H3><A NAME="SECTION00022100000000000000">
293 <SPAN CLASS="arabic">1</SPAN>.<SPAN CLASS="arabic">2</SPAN>.<SPAN CLASS="arabic">1</SPAN> Parent-child relations</A>
294 </H3>
295 Each object of type WRegion has a parent and possibly a manager
296 associated to it. The parent<A NAME="282"></A> for an object is always a 
297 WWindow and for WRegion with an X window (WClientWin,
298 WWindow) the parent WWindow is given by the same relation of
299 the X windows. For other WRegions the relation is not as clear.
300 There is generally very few restrictions other than the above on the
301 parent--child relation but the most common is as described in
302 Figure <A HREF="#fig:parentship">2</A>.
303
304 <P>
305
306 <DIV ALIGN="CENTER"><A NAME="fig:parentship"></A><A NAME="293"></A>
307 <TABLE>
308 <CAPTION ALIGN="BOTTOM"><STRONG>Figure 2:</STRONG>
309 Most common parent-child relations</CAPTION>
310 <TR><TD><PRE>
311     WRootWins
312      |--&gt;WScreens
313           |--&gt;WGroupWSs
314           |--&gt;WTilings
315           |--&gt;WClientWins in full screen mode
316           |--&gt;WFrames
317                |--&gt;WGroupCWs
318                |--&gt;WClientWins
319                |--&gt;WFrames for transients
320                |--&gt;a possible WEdln or WMessage
321 </PRE></TD></TR>
322 </TABLE>
323 </DIV>
324
325 <P>
326 WRegions have very little control over their children as a parent.
327 The manager<A NAME="297"></A> WRegion has much more control over its
328 managed WRegions. Managers, for example, handle resize requests,
329 focusing and displaying of the managed regions. Indeed the manager--managed
330 relationship gives a better picture of the logical ordering of objects on
331 the screen. Again, there are generally few limits, but the most common
332 hierarchy is given in Figure <A HREF="#fig:managership">3</A>. Note that sometimes
333 the parent and manager are the same object and not all objects may have
334 a manager (e.g. the dock in the dock module at the time of writing this)
335 but all have a parent-a screen if not anything else.
336
337 <P>
338
339 <H3><A NAME="SECTION00022200000000000000">
340 <SPAN CLASS="arabic">1</SPAN>.<SPAN CLASS="arabic">2</SPAN>.<SPAN CLASS="arabic">2</SPAN> Manager-managed relations</A>
341 </H3>
342
343 <P>
344
345 <DIV ALIGN="CENTER"><A NAME="fig:managership"></A><A NAME="305"></A>
346 <TABLE>
347 <CAPTION ALIGN="BOTTOM"><STRONG>Figure 3:</STRONG>
348 Most common manager-managed relations</CAPTION>
349 <TR><TD><PRE>
350     WRootWins
351      |--&gt;WScreens
352           |--&gt;WGroupCWs for full screen WClientWins
353           |    |--&gt;WClientWins
354           |    |--&gt;WFrames for transients (dialogs)
355           |         |--&gt; WClientWin
356           |--&gt;WGroupWSs for workspaces
357           |    |--&gt;WTiling
358           |    |    |--&gt;possibly a WEdln, WMessage or WMenu
359           |    |    |--&gt;WFrames
360           |    |         |--&gt;WGroupCWs (with contents as above)
361           |    |--&gt;WFrames for floating content
362           |--&gt;WFrames for sticky stuff, such as the scratchpad
363 </PRE></TD></TR>
364 </TABLE>
365 </DIV>
366
367 <P>
368 Note that a workspace can manage another workspace. This can be
369 achieved with the <A HREF="#fn:attach_new"><TT>attach_new</TT></A> function, and allows you to nest
370 workspaces as deep as you want.
371
372 <P>
373
374 <H2><A NAME="SECTION00023000000000000000">
375 <SPAN CLASS="arabic">1</SPAN>.<SPAN CLASS="arabic">3</SPAN> Summary</A>
376 </H2>
377
378 <P>
379 In the standard setup, keeping queries, messages and menus out of
380 consideration:
381
382 <P>
383
384 <UL>
385 <LI>The top-level objects that matter are screens and they correspond
386     to physical screens. The class for screens is WScreen.
387 </LI>
388 <LI>Screens contain (multiplex) groups (WGroup) and other 
389     objects, such as WFrames. Some of these are mutually exclusive
390     to be viewed at a time.
391 </LI>
392 <LI>Groups of the specific kind WGroupWS often contain a
393     WTiling tiling for tiling frames (WFrame), but 
394     groups may also directly contain floating frames.
395 </LI>
396 <LI>Frames are the objects with decorations such as tabs and borders.
397     Frames contain (multiplex) among others (groups of) client windows, 
398     to each of which corresponds a tab in the frame's decoration. Only 
399     one client window (or other object) can be shown at a time in each 
400     frame. The class for client windows is WClientWin.
401 </LI>
402 </UL>
403
404 <P>
405 <BR><HR><H4>Footnotes</H4>
406 <DL>
407 <DT><A NAME="foot212">... design</A><A
408  HREF="node2.html#tex2html1"><SUP><SPAN CLASS="arabic">1</SPAN></SUP></A></DT>
409 <DD>the author doesn't like such artificial designs
410
411 </DD>
412 </DL>
413 <DIV CLASS="navigation"><HR>
414 <!--Navigation Panel-->
415 <A NAME="tex2html82"
416   HREF="node3.html">
417 <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
418 <A NAME="tex2html76"
419   HREF="ionnotes.html">
420 <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
421 <A NAME="tex2html70"
422   HREF="node1.html">
423 <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
424 <A NAME="tex2html78"
425   HREF="node1.html">
426 <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A> 
427 <A NAME="tex2html80"
428   HREF="node8.html">
429 <IMG WIDTH="43" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="index" SRC="index.png"></A> 
430 <BR>
431 <B> Next:</B> <A NAME="tex2html83"
432   HREF="node3.html">2 Object system implementation</A>
433 <B> Up:</B> <A NAME="tex2html77"
434   HREF="ionnotes.html">Ion: Notes for the</A>
435 <B> Previous:</B> <A NAME="tex2html71"
436   HREF="node1.html">Contents</A>
437  &nbsp; <B>  <A NAME="tex2html79"
438   HREF="node1.html">Contents</A></B> 
439  &nbsp; <B>  <A NAME="tex2html81"
440   HREF="node8.html">Index</A></B> </DIV>
441 <!--End of Navigation Panel-->
442
443 </BODY>
444 </HTML>