doc: removed verbose messages from colorize-lisp-examples
[cl-gtk2.git] / doc / gobject.texi
1 \input texinfo  @c -*-texinfo-*-
2 @c %**start of header (This is for running texinfo on a region.)
3 @setfilename gobject.info
4 @settitle CL-Gtk2-GObject
5 @c %**end of header (This is for running texinfo on a region.)
6
7 @c @documentencoding utf-8
8
9 @macro Function {args}
10 @defun \args\
11 @end defun
12 @end macro
13
14 @macro Macro {args}
15 @defmac \args\
16 @end defmac
17 @end macro
18
19 @macro Accessor {args}
20 @deffn {Accessor} \args\
21 @end deffn
22 @end macro
23
24 @macro GenericFunction {args}
25 @deffn {Generic Function} \args\
26 @end deffn
27 @end macro
28
29 @macro ForeignType {args}
30 @deftp {Foreign Type} \args\
31 @end deftp
32 @end macro
33
34 @macro Variable {args}
35 @defvr {Special Variable} \args\
36 @end defvr
37 @end macro
38
39 @macro Condition {args}
40 @deftp {Condition Type} \args\
41 @end deftp
42 @end macro
43
44 @macro cffi
45 @acronym{CFFI}
46 @end macro
47
48 @macro impnote {text}
49 @quotation
50 @strong{Implementor's note:} @emph{\text\}
51 @end quotation
52 @end macro
53
54 @c Info "requires" that x-refs end in a period or comma, or ) in the
55 @c case of @pxref.  So the following implements that requirement for
56 @c the "See also" subheadings that permeate this manual, but only in
57 @c Info mode.
58 @ifinfo
59 @macro seealso {name}
60 @ref{\name\}.
61 @end macro
62 @end ifinfo
63
64 @ifnotinfo
65 @alias seealso = ref
66 @end ifnotinfo
67
68 @c Typeset comments in roman font for the TeX output.
69 @iftex
70 @alias lispcmt = r
71 @end iftex
72 @ifnottex
73 @alias lispcmt = asis
74 @end ifnottex
75
76 @c My copy of makeinfo is not generating any HTML for @result{} for
77 @c some odd reason. (It certainly used to...)
78 @ifhtml
79 @macro result
80 =>
81 @end macro
82 @end ifhtml
83
84 @c Similar macro to @result. Its purpose is to work around the fact
85 @c that ⇒ does not work properly inside @lisp.
86 @ifhtml
87 @macro res
88 @html
89 ⇒
90 @end html
91 @end macro
92 @end ifhtml
93
94 @ifnothtml
95 @alias res = result
96 @end ifnothtml
97
98 @c ============================= Macros =============================
99
100
101 @c Show types, functions, and concepts in the same index.
102 @syncodeindex tp cp
103 @syncodeindex fn cp
104
105 @titlepage
106 @title CL-GTK2
107 @subtitle A Common Lisp binding for Gtk+
108 @subtitle GObject
109 @author Dmitry Kalyanov
110 @end titlepage
111
112 @contents
113
114 @ifnottex
115 @node Top
116 @top cl-gtk2-gobject
117 @end ifnottex
118
119 @menu
120 * Introduction::
121 * Installation::
122 * GType designator::
123 * Type hierarchy and type relations::
124 * Object types information::
125 * Enum types information::
126 * Using GValues::
127 * Stable pointers::
128 * Closures::
129 * GObject low-level::
130 * GObject high-level::
131 * Creating GObjects classes and implementing GInterfaces::
132 * GBoxed::
133 * Generating type definitions by introspection::
134 @end menu
135
136 @node Introduction
137 @chapter Introduction
138
139 GObject is a part of GLib library that implements the type system. The CL-GTK2-GObject is a Common Lisp binding for relevant parts of GObject.
140
141 The purpose of CL-GTK2-GObject is to ease the creation of binding for libraries based on GObject.
142
143 Please bear in mind that this is the documentation for a work-in-progress library and is a snapshot of current situation. API and functionality may (and will) change. Largely unfinished parts are working with GBoxed types, subclassing GObjects and implementing GInterfaces.
144
145 CL-GTK2-GObject is logically split into several layers:
146 @itemize
147 @item FFI code. FFI (foreign functions interface) layer is a glue between Lisp code and @code{libglib}, @code{libgobject}, @code{libgthread}. This code includes basic wrapper around GType designator (it is used everywhere and should be defined first) and definitions of foreign structures and imports foreign functions.
148 @item Low-level GObject integration. These are facilities provided by GObject that capture specific aspects of type system, object system and cross-language runtime. This includes types information, GValues (generic containers for value of any type supported by GObject type system), closures, means to create and use objects. This layer also includes some non-GObject facilities: stable pointers.
149 @item High-level GObject integration. This layer includes support for interoperability between CLOS and GObject and automatic generation of corresponding definitions.
150 @end itemize
151
152 Naturally, users of CL-GTK2-GObject should use the high-level GObject integration, but occasionaly it may be necessary to use lower-level functionality.
153
154 @node Installation
155 @chapter Installation
156
157 CL-GTK2-GObject comes as a part of CL-GTK2 bindings that are avaiable at its @uref{http://common-lisp.net/project/cl-gtk2/,,website}.
158
159 To use the CL-GTK2-GObject, download and install CL-GTK2 bindings and load the ASDF system @code{cl-gtk2-glib}.
160
161 CL-GTK2-GObject defines two packages: @code{gobject} and @code{gobject.ffi}. The @code{gobject.ffi} package contains definitions for low-level CFFI imports. The @code{gobject} package contains symbols for external API of this GObject binding.
162
163 @node GType designator
164 @chapter GType designator
165
166 @menu
167 * g-type-string::
168 * g-type-numeric::
169 * g-type=::
170 * g-type/=::
171 @end menu
172
173 GObject is an object system based on GType type system. Types in it are identified by an integer value of type @code{GType}. In @code{cl-gtk2-gobject}, types are identified by GType designators. GType designator is an integer (equal to corresponding GType identifier) or a string (equal to the name of corresponding type). The important difference between GType and GType designator is that GType values may change between program runs (all GTypes except fundamental GTypes will change values), but string GType designators do not change (because names of types do not change). As such, if ever GType must be saved in a code, string GType designator should be preferred.
174
175 An example of GType designator is a string @code{"GObject"} and the numeric value 80 that corresponds to it.
176
177 Some of the types are fundamental and have constant integer values. They are identified by constants (strings in parentheses are corresponding type names):
178 @itemize
179 @item @code{+g-type-invalid+}. An invalid GType used as error return value in some functions which return a GType.
180 @item @code{+g-type-void+} ("void"). A fundamental type which is used as a replacement for the C @code{void} return type.
181 @item @code{+g-type-interface+} ("GInterface"). The fundamental type from which all interfaces are derived.
182 @item @code{+g-type-char+} ("gchar"). The fundamental type corresponding to gchar. The type designated by @code{+g-type-char+} is unconditionally an 8-bit signed integer. This may or may not be the same type a the C type @code{gchar}.
183 @item @code{+g-type-uchar+} ("guchar"). The fundamental type corresponding to @code{guchar}.
184 @item @code{+g-type-boolean+} ("gboolean"). The fundamental type corresponding to @code{gboolean}.
185 @item @code{+g-type-int+} ("gint"). The fundamental type corresponding to @code{gint}.
186 @item @code{+g-type-uint+} ("guint"). The fundamental type corresponding to @code{guint}.
187 @item @code{+g-type-long+} ("glong"). The fundamental type corresponding to @code{glong}.
188 @item @code{+g-type-ulong+} ("gulong"). The fundamental type corresponding to @code{gulong}.
189 @item @code{+g-type-int64+} ("gint64"). The fundamental type corresponding to @code{gint64}.
190 @item @code{+g-type-uint64+} ("guint64"). The fundamental type corresponding to @code{guint64}.
191 @item @code{+g-type-enum+} ("GEnum"). The fundamental type from which all enumeration types are derived.
192 @item @code{+g-type-flags+} ("GFlags"). The fundamental type from which all flags types are derived.
193 @item @code{+g-type-float+} ("gfloat"). The fundamental type corresponding to @code{gfloat}.
194 @item @code{+g-type-double+} ("gdouble"). The fundamental type corresponding to @code{gdouble}.
195 @item @code{+g-type-string+} ("gchararray"). The fundamental type corresponding to null-terminated C strings.
196 @item @code{+g-type-pointer+} ("gpointer"). The fundamental type corresponding to @code{gpointer}.
197 @item @code{+g-type-boxed+} ("GBoxed"). The fundamental type from which all boxed types are derived.
198 @item @code{+g-type-param+} ("GParam"). The fundamental type from which all GParamSpec types are derived.
199 @item @code{+g-type-object+} ("GObject"). The fundamental type for GObject.
200 @end itemize
201
202 Functions @ref{g-type-string} and @ref{g-type-numeric} return the numeric and string representations of GType designators (given any of them). Functions @ref{g-type=} and @ref{g-type/=} check types for equality.
203
204 Invalid type (the GType that does not exist) is identified as a 0 or @code{NIL}.
205
206 @lisp
207 (g-type-numeric "GObject") @result{} 80
208 (g-type-numeric 80) @result{} 80
209 (g-type-string "GObject") @result{} "GObject"
210 (g-type-string 80) @result{} "GObject"
211 (g-type-numeric "GtkWidget") @result{} 6905648 ;;Will be different on each run
212 @end lisp
213
214 @node g-type-string
215 @section g-type-string
216
217 @lisp
218 (g-type-string g-type-designator) @result{} name
219 @end lisp
220
221 @table @var
222 @item @var{g-type-designator}
223 The GType designator for the GType
224 @item @var{name}
225 The name of GType
226 @end table
227
228 Returns the name of GType.
229
230 @node g-type-numeric
231 @section g-type-numeric
232
233 @lisp
234 (g-type-numeric g-type-designator) @result{} GType
235 @end lisp
236
237 @table @var
238 @item @var{g-type-designator}.
239 The GType designator for the GType.
240 @item @var{GType}
241 The numeric identifier of GType
242 @end table
243
244 Returns the numeric identifier of GType
245
246 @node g-type=
247 @section g-type=
248
249 @lisp
250 (g-type= type-1 type-2) @result{} eq
251 @end lisp
252
253 @table @var
254 @item @var{type-1}
255 A GType designator
256 @item @var{type-2}
257 A GType designator
258 @item @var{eq}
259 A boolean that is true if @code{type-1} and @code{type-2} designate the same type.
260 @end table
261
262 @node g-type/=
263 @section g-type/=
264
265 @lisp
266 (g-type/= type-1 type-2) @result{} eq
267 @end lisp
268
269 @table @var
270 @item @var{type-1}
271 A GType designator
272 @item @var{type-2}
273 A GType designator
274 @item @var{eq}
275 A boolean that is true if @code{type-1} and @code{type-2} designate different types.
276 @end table
277
278 @node Type hierarchy and type relations
279 @chapter Type hierarchy and type relations
280
281 @menu
282 * g-type-children::
283 * g-type-parent::
284 * g-type-fundamental::
285 * g-type-depth::
286 * g-type-next-base::
287 @end menu
288
289 GTypes are organized into hierarchy. Each GType (except fundamental types) has a parent type and zero or more children types. Parent of GType identified by @code{g-type-parent} function and its children are identified by @code{g-type-children} function.
290
291 There are functions to query some specific information:
292 @itemize
293 @item @code{g-type-fundamental} retrieves the fundamental type for given type
294 @item @code{g-type-depth} calculates the depth of the type in type hierarchy
295 @item @code{g-type-next-base} calculates the first step in the path from base type to descendent type
296 @end itemize
297
298 @node g-type-children
299 @section g-type-children
300
301 @lisp
302 (g-type-children type) @result{} children
303 @end lisp
304
305 @table @var
306 @item @var{type}
307 A GType designator
308 @item @var{children}
309 A list of GType designators
310 @end table
311
312 Returns the list of descendent types.
313
314 Example:
315 @lisp
316 (g-type-children "GtkButton")
317 @result{}
318 ("GtkToggleButton" "GtkColorButton" "GtkFontButton" "GtkLinkButton" "GtkScaleButton")
319 @end lisp
320
321 @node g-type-parent
322 @section g-type-parent
323
324 @lisp
325 (g-type-parent type) @result{} parent
326 @end lisp
327
328 @table @var
329 @item @var{type}
330 A GType designator
331 @item @var{parent}
332 A GType designator
333 @end table
334
335 Returns the parent of @code{type}.
336
337 Example:
338 @lisp
339 (g-type-parent "GtkToggleButton")
340 @result{}
341 "GtkButton"
342 @end lisp
343
344 @node g-type-fundamental
345 @section g-type-fundamental
346
347 @lisp
348 (g-type-fundamental type) @result{} fundamental-type
349 @end lisp
350
351 @table @var
352 @item @var{type}
353 A GType designator
354 @item @var{fundamental-type}
355 A GType designator for one of the fundamental types
356 @end table
357
358 Returns the fundamental type that is the ancestor of @code{type}.
359
360 Example:
361 @lisp
362 (g-type-fundamental "GtkButton") @result{} "GObject"
363
364 (g-type-fundamental "GtkWindowType") @result{} "GEnum"
365
366 (g-type-fundamental "GdkEvent") @result{} "GBoxed"
367 @end lisp
368
369 @node g-type-depth
370 @section g-type-depth
371
372 @lisp
373 (g-type-depth type) @result{} depth
374 @end lisp
375
376 @table @var
377 @item @var{type}
378 A GType designator
379 @item @var{depth}
380 An integer
381 @end table
382
383 Returns the depth of the @code{type}. Depth is the number of types between the @code{type} and its fundamental types (including both @code{type} and its fundamental type). Depth of a fundamental type equals to 1.
384
385 Example:
386 @lisp
387 (g-type-depth "GObject") @result{} 1
388 (g-type-depth "GInitiallyUnowned") @result{} 2
389 @end lisp
390
391 @node g-type-next-base
392 @section g-type-next-base
393
394 @lisp
395 (g-type-next-base leaf-type root-type) @result{} base-type
396 @end lisp
397
398 @table @var
399 @item @var{leaf-type}
400 A GType designator
401 @item @var{root-type}
402 A GType designator
403 @item @var{base-type}
404 A GType designator
405 @end table
406
407 Returns the next type that should be traversed from @code{root-type} in order to reach @code{leaf-type}. E.g., given type hierarchy:
408 @lisp
409 + GObject
410  \
411   + GInitiallyUnowned
412    \
413     + GtkObject
414     |\
415     | + GtkAdjustment
416      \
417       + GtkWidget
418        \
419         + GtkContainer
420          \
421           + GtkTable
422 @end lisp
423
424 the following will be returned:
425
426 @lisp
427 (g-type-next-base "GtkTable" "GObject") @result{} "GInitiallyUnowned"
428 (g-type-next-base "GtkTable" "GInitiallyUnowned") @result{} "GtkObject"
429 (g-type-next-base "GtkTable" "GtkObject") @result{} "GtkWidget"
430 (g-type-next-base "GtkTable" "GtkWidget") @result{} "GtkContainer"
431 (g-type-next-base "GtkTable" "GtkContainer") @result{} "GtkTable"
432 @end lisp
433
434 @node Object types information
435 @chapter Object types information
436 @menu
437 * g-class-property-definition::
438 * class-properties::
439 * class-property-info::
440 * interface-properties::
441 * signal-info::
442 * type-signals::
443 * parse-signal-name::
444 * query-signal-info::
445 * g-type-interfaces::
446 * g-type-interface-prerequisites::
447 @end menu
448
449 GObject classes and interfaces have properties that can be queried with @code{class-properties}, @code{class-property-info} and @code{interface-properties}. These functions represent information about properties with instances of @code{g-class-property-definition} structure.
450
451 Information about signals can be queries with @code{type-signals}, @code{parse-signal-name} and @code{query-signal-info} functions. Information is returned within instances of @code{signal-info} structures.
452
453 @node g-class-property-definition
454 @section g-class-property-definition
455
456 @lisp
457 (defstruct g-class-property-definition
458   name
459   type
460   readable
461   writable
462   constructor
463   constructor-only
464   owner-type)
465 @end lisp
466
467 @table @var
468 @item @var{name}
469 A string that names the property
470 @item @var{type}
471 A GType designator. Identifies the type of the property
472 @item @var{readable}
473 A boolean. Identifies whether the property can be read
474 @item @var{writable}
475 A boolean. Identifies whether the property can be assigned
476 @item @var{constructor}
477 A boolean. Identifies whether constructor of object accepts this property
478 @item @var{constructor-only}
479 A boolean. Identifies whether this property may only be set in constructor, not in property setter
480 @item @var{owner-type}
481 A GType designator. Identifies the type on which the property was defined.
482 @end table
483
484 This structure identifies a single property. Its field specify attributes of a property.
485
486 Structures of this type have shortened print syntax:
487 @lisp
488 #<PROPERTY gchararray GtkButton.label (flags: readable writable constructor)> 
489 @end lisp
490
491 (When @code{*print-readably*} is T, usual @code{defstruct} print syntax is used)
492
493 This syntax specifies:
494 @itemize
495 @item type of property
496 @item the owner type of property
497 @item name of property
498 @item additional flags of property
499 @end itemize
500
501 @node class-properties
502 @section class-properties
503
504 @lisp
505 (class-properties type) @result{} properties
506 @end lisp
507
508 @table @var
509 @item @var{type}
510 A GType designator. Specifies the object type (class)
511 @item @var{properties}
512 A list of @code{g-property-definition} structures.
513 @end table
514
515 This function returns the list of properties that are available in class @code{type}.
516
517 Example:
518 @lisp
519 (class-properties "GtkWidget")
520 @result{}
521 (#<PROPERTY gpointer GtkObject.user-data (flags: readable writable)>
522  #<PROPERTY gchararray GtkWidget.name (flags: readable writable)>
523  #<PROPERTY GtkContainer GtkWidget.parent (flags: readable writable)>
524  #<PROPERTY gint GtkWidget.width-request (flags: readable writable)>
525  #<PROPERTY gint GtkWidget.height-request (flags: readable writable)>
526  #<PROPERTY gboolean GtkWidget.visible (flags: readable writable)>
527  #<PROPERTY gboolean GtkWidget.sensitive (flags: readable writable)>
528  #<PROPERTY gboolean GtkWidget.app-paintable (flags: readable writable)>
529  #<PROPERTY gboolean GtkWidget.can-focus (flags: readable writable)>
530  #<PROPERTY gboolean GtkWidget.has-focus (flags: readable writable)>
531  #<PROPERTY gboolean GtkWidget.is-focus (flags: readable writable)>
532  #<PROPERTY gboolean GtkWidget.can-default (flags: readable writable)>
533  #<PROPERTY gboolean GtkWidget.has-default (flags: readable writable)>
534  #<PROPERTY gboolean GtkWidget.receives-default (flags: readable writable)>
535  #<PROPERTY gboolean GtkWidget.composite-child (flags: readable)>
536  #<PROPERTY GtkStyle GtkWidget.style (flags: readable writable)>
537  #<PROPERTY GdkEventMask GtkWidget.events (flags: readable writable)>
538  #<PROPERTY GdkExtensionMode GtkWidget.extension-events (flags: readable writable)>
539  #<PROPERTY gboolean GtkWidget.no-show-all (flags: readable writable)>
540  #<PROPERTY gboolean GtkWidget.has-tooltip (flags: readable writable)>
541  #<PROPERTY gchararray GtkWidget.tooltip-markup (flags: readable writable)>
542  #<PROPERTY gchararray GtkWidget.tooltip-text (flags: readable writable)>
543  #<PROPERTY GdkWindow GtkWidget.window (flags: readable)>)
544 @end lisp
545
546 @node class-property-info
547 @section class-property-info
548 @lisp
549 (class-property-info type property-name) @result{} property
550 @end lisp
551
552 @table @var
553 @item @var{type}
554 A GType designator
555 @item @var{property-name}
556 A string naming the property
557 @item @var{property}
558 An instance of @code{g-property-definition} structure
559 @end table
560
561 Returns the property information for a single property.
562
563 Example:
564 @lisp
565 (class-property-info "GtkButton" "label")
566 @result{}
567 #<PROPERTY gchararray GtkButton.label (flags: readable writable constructor)>
568 @end lisp
569
570 @node interface-properties
571 @section interface-properties
572
573 @lisp
574 (interface-properties type) @result{} properties
575 @end lisp
576
577 @table @var
578 @item @var{type}
579 A GType designator
580 @item @var{properties}
581 A list of @code{g-property-definition} structures
582 @end table
583
584 This function returns the list of properties that are available in interface @code{type}.
585
586 Example:
587 @lisp
588 (interface-properties "GtkFileChooser")
589 @result{}
590 (#<PROPERTY GtkWidget GtkFileChooser.extra-widget (flags: readable writable)>
591  #<PROPERTY gboolean GtkFileChooser.use-preview-label (flags: readable writable)>
592  #<PROPERTY gboolean GtkFileChooser.preview-widget-active (flags: readable writable)>
593  #<PROPERTY gboolean GtkFileChooser.show-hidden (flags: readable writable)>
594  #<PROPERTY gchararray GtkFileChooser.file-system-backend (flags: writable constructor-only)>
595  #<PROPERTY GtkFileChooserAction GtkFileChooser.action (flags: readable writable)>
596  #<PROPERTY GtkFileFilter GtkFileChooser.filter (flags: readable writable)>
597  #<PROPERTY gboolean GtkFileChooser.select-multiple (flags: readable writable)>
598  #<PROPERTY GtkWidget GtkFileChooser.preview-widget (flags: readable writable)>
599  #<PROPERTY gboolean GtkFileChooser.local-only (flags: readable writable)>
600  #<PROPERTY gboolean GtkFileChooser.do-overwrite-confirmation (flags: readable writable)>)
601 @end lisp
602
603 @node signal-info
604 @section signal-info
605
606 @lisp
607 (defstruct signal-info
608   id
609   name
610   owner-type
611   flags
612   return-type
613   param-types
614   detail)
615 @end lisp
616
617 @table @var
618 @item @var{id}
619 An integer - the identifier of a signal
620 @item @var{name}
621 Name of a signal
622 @item @var{owner-type}
623 A GType designator identifying the type on which the signal was defined
624 @item @var{flags}
625 A list of keywords of type @code{'(member :run-first :run-last :run-cleanup :no-recurse :detailed :action :no-hooks)}. Specifies the attributes of a signals
626 @item @var{return-type}
627 The return type of a signal (and signal handlers)
628 @item @var{param-types}
629 A list of GType designators that specify the types of signal parameters
630 @item @var{detail}
631 A string. Specifies the "detail" part of a signal name. E.g., @code{"label"} for signal @code{"notify::label"}.
632 @end table
633
634 When @code{*print-readably*} is nil, the following print syntax is used:
635 @lisp
636 #<Signal [#1] void GObject.notify::label(GParam) [RUN-FIRST, NO-RECURSE, DETAILED, ACTION, NO-HOOKS]>
637 #<Signal [#54] gboolean GtkWidget.proximity-in-event(GdkEvent) [RUN-LAST]>
638 #<Signal [#64] void GtkWidget.drag-data-received(GdkDragContext, gint, gint, GtkSelectionData, guint, guint) [RUN-LAST]>
639 #<Signal [#8] void GtkObject.destroy() [RUN-CLEANUP, NO-RECURSE, NO-HOOKS]>
640 @end lisp
641
642 This syntax specifies:
643 @itemize
644 @item the signal id
645 @item signal return type
646 @item owner type
647 @item signal name
648 @item detail
649 @item list of types of parameters
650 @item flags
651 @end itemize
652
653 @node type-signals
654 @section type-signals
655 @lisp
656 (type-signals type &key (include-inherited t)) @result{} signals
657 @end lisp
658 @table @var
659 @item @var{type}
660 A GType designator
661 @item @var{signals}
662 A list of @code{signal-info} structures
663 @item @var{include-inherited}
664 A boolean that specifies whether to include signals defined on this type or also on ancestor types.
665 @end table
666
667 Returns the list of signals that are available in type @code{type}.
668
669 Example:
670 @lisp
671 (type-signals "GtkLabel" :include-inherited nil)
672 @result{}
673 (#<Signal [#138] void GtkLabel.move-cursor(GtkMovementStep, gint, gboolean) [RUN-LAST, ACTION]>
674  #<Signal [#139] void GtkLabel.copy-clipboard() [RUN-LAST, ACTION]>
675  #<Signal [#140] void GtkLabel.populate-popup(GtkMenu) [RUN-LAST]>)
676 @end lisp
677
678 @node parse-signal-name
679 @section parse-signal-name
680
681 @lisp
682 (parse-signal-name type signal-name) @result{} signal
683 @end lisp
684
685 @table @var
686 @item @var{type}
687 A GType designator that has the signal.
688 @item @var{signal-name}
689 A string that identifies the signal.
690 @item @var{signal}
691 A list @code{signal-info} structures.
692 @end table
693
694 Parses the signal name and returns the corresponding information. @code{signal-name} may include the detail part.
695
696 Example:
697 @lisp
698 (parse-signal-name "GObject" "notify::label")
699 @result{}
700 #<Signal [#1] void GObject.notify::label(GParam) [RUN-FIRST, NO-RECURSE, DETAILED, ACTION, NO-HOOKS]>
701 @end lisp
702
703 @node query-signal-info
704 @section query-signal-info
705 @lisp
706 (query-signal-info signal-id) @result{} signal
707 @end lisp
708 @table @var
709 @item @var{signal-id}
710 An integer identifying the signal
711 @item @var{signal}
712 An instance of @code{signal-info} structure
713 @end table
714
715 Retrieves the signal information by its id.
716
717 Example:
718 @lisp
719 (query-signal-info 73)
720 @result{}
721 #<Signal [#73] gboolean GtkWidget.show-help(GtkWidgetHelpType) [RUN-LAST, ACTION]>
722 @end lisp
723
724 @node g-type-interfaces
725 @section g-type-interfaces
726
727 @lisp
728 (g-type-interfaces type) @result{} interfaces
729 @end lisp
730
731 @table @var
732 @item @var{type}
733 A GType designator
734 @item @var{interfaces}
735 A list of GType designators
736 @end table
737
738 Returns the list of interfaces that @code{type} implements.
739
740 Example:
741 @lisp
742 (g-type-interfaces "GtkButton")
743 @result{}
744 ("AtkImplementorIface" "GtkBuildable" "GtkActivatable")
745 @end lisp
746
747 @node g-type-interface-prerequisites
748 @section g-type-interface-prerequisites
749
750 @lisp
751 (g-type-interface-prerequisites type) @result{} types
752 @end lisp
753
754 @table @var
755 @item @var{type}
756 A GType designator of interface
757 @item @var{types}
758 A list of GType designators specifying the interface prerequisites
759 @end table
760
761 Returns the prerequisites of an interface @code{type}. Prerequisite is a type that should be an ancestor of a type implementing interface @code{type}.
762
763 Example:
764 @lisp
765 (g-type-interface-prerequisites "GtkCellEditable")
766 @result{}
767 ("GtkObject" "GtkWidget")
768 @end lisp
769
770 @node Enum types information
771 @chapter Enum types information
772 @menu
773 * enum-item::
774 * flags-item::
775 * get-enum-items::
776 * get-flags-items::
777 @end menu
778
779 Enum types have items that can be listed with @code{get-enum-items} function. This information is exposed within instances of @code{enum-item} structure.
780
781 Flags types (flags is a kind of enum whose values can be combined) have items that can be queried with @code{get-flags-items} function. This information is exposed within instances of @code{flags-item} structure.
782
783 @node enum-item
784 @section enum-item
785 @lisp
786 (defstruct enum-item
787   name value nick)
788 @end lisp
789
790 @table @var
791 @item @var{name}
792 A string - name of enum item
793 @item @var{value}
794 An integer - numeric value of enum item
795 @item @var{nick}
796 A string - short name of an enum item
797 @end table
798
799 Structure @code{enum-item} represents a single item of an enumeration type.
800
801 Example:
802 @lisp
803 #S(ENUM-ITEM :NAME "GTK_WINDOW_TOPLEVEL" :VALUE 0 :NICK "toplevel")
804 @end lisp
805
806 @node flags-item
807 @section flags-item
808 @lisp
809 (defstruct flags-item
810   name value nick)
811 @end lisp
812
813 @table @var
814 @item @var{name}
815 A string - name of flags item
816 @item @var{value}
817 An integer - numeric value of flags item
818 @item @var{nick}
819 A string - short name of an flags item
820 @end table
821
822 Structure @code{flags-item} represents a single item of an flags type.
823
824 Example:
825 @lisp
826 #S(FLAGS-ITEM
827    :NAME "GDK_POINTER_MOTION_HINT_MASK"
828    :VALUE 8
829    :NICK "pointer-motion-hint-mask")
830 @end lisp
831
832 @node get-enum-items
833 @section get-enum-items
834
835 @lisp
836 (get-enum-items type) @result{} items
837 @end lisp
838
839 @table @var
840 @item @var{type}
841 A GType designator of an enum type
842 @item @var{items}
843 A list of @code{enum-item} structures
844 @end table
845
846 Returns a list of items in an enumeration
847
848 Example:
849 @lisp
850 (get-enum-items "GtkScrollType")
851 @result{}
852 (#S(ENUM-ITEM :NAME "GTK_SCROLL_NONE" :VALUE 0 :NICK "none")
853  #S(ENUM-ITEM :NAME "GTK_SCROLL_JUMP" :VALUE 1 :NICK "jump")
854  #S(ENUM-ITEM :NAME "GTK_SCROLL_STEP_BACKWARD" :VALUE 2 :NICK "step-backward")
855  #S(ENUM-ITEM :NAME "GTK_SCROLL_STEP_FORWARD" :VALUE 3 :NICK "step-forward")
856  #S(ENUM-ITEM :NAME "GTK_SCROLL_PAGE_BACKWARD" :VALUE 4 :NICK "page-backward")
857  #S(ENUM-ITEM :NAME "GTK_SCROLL_PAGE_FORWARD" :VALUE 5 :NICK "page-forward")
858  #S(ENUM-ITEM :NAME "GTK_SCROLL_STEP_UP" :VALUE 6 :NICK "step-up")
859  #S(ENUM-ITEM :NAME "GTK_SCROLL_STEP_DOWN" :VALUE 7 :NICK "step-down")
860  #S(ENUM-ITEM :NAME "GTK_SCROLL_PAGE_UP" :VALUE 8 :NICK "page-up")
861  #S(ENUM-ITEM :NAME "GTK_SCROLL_PAGE_DOWN" :VALUE 9 :NICK "page-down")
862  #S(ENUM-ITEM :NAME "GTK_SCROLL_STEP_LEFT" :VALUE 10 :NICK "step-left")
863  #S(ENUM-ITEM :NAME "GTK_SCROLL_STEP_RIGHT" :VALUE 11 :NICK "step-right")
864  #S(ENUM-ITEM :NAME "GTK_SCROLL_PAGE_LEFT" :VALUE 12 :NICK "page-left")
865  #S(ENUM-ITEM :NAME "GTK_SCROLL_PAGE_RIGHT" :VALUE 13 :NICK "page-right")
866  #S(ENUM-ITEM :NAME "GTK_SCROLL_START" :VALUE 14 :NICK "start")
867  #S(ENUM-ITEM :NAME "GTK_SCROLL_END" :VALUE 15 :NICK "end"))
868 @end lisp
869
870 @node get-flags-items
871 @section get-flags-items
872
873 @lisp
874 (get-flags-items type) @result{} items
875 @end lisp
876
877 @table @var
878 @item @var{type}
879 A GType designator of an flags type
880 @item @var{items}
881 A list of @code{flags-item} structures
882 @end table
883
884 Returns a list of items in an flags type
885
886 Example:
887 @lisp
888 (get-flags-items "GtkAttachOptions")
889 @result{}
890 (#S(FLAGS-ITEM :NAME "GTK_EXPAND" :VALUE 1 :NICK "expand")
891  #S(FLAGS-ITEM :NAME "GTK_SHRINK" :VALUE 2 :NICK "shrink")
892  #S(FLAGS-ITEM :NAME "GTK_FILL" :VALUE 4 :NICK "fill"))
893 @end lisp
894
895 @node Using GValues
896 @chapter Using GValues
897 @menu
898 * g-value-zero::
899 * g-value-init::
900 * g-value-unset::
901 * parse-g-value::
902 * set-g-value::
903 * Registering types::
904 @end menu
905
906 GValue is a generic container for arbitrary value of type supported by GType system. Refer to GObject documentation for more detailed information.
907
908 CL-GTK2-GOBJECT works with GValue as a foreign type @code{g-value}. Functions @code{g-value-zero}, @code{g-value-type}, @code{g-value-init}, @code{parse-g-value}, @code{set-g-value} are used to inspect and assign GValues. @code{g-value} is a CFFI foreign type that is used by all these functions. Pointer to foreign instance of this type is passed to them.
909
910 GValue is used whenever a value of unkown type should be passed. It is used in:
911 @itemize
912 @item Closure marshal functions
913 @item Property get and set functions
914 @end itemize
915
916 Example of usage:
917 @lisp
918 (cffi:with-foreign-object (gval 'g-value)
919   (set-g-value gval "Hello" "gchararray" :zero-g-value t)
920   (format t "~S~%" (parse-g-value gval))
921   (g-value-unset gval))
922 @result{}
923 "Hello"
924 @end lisp
925
926 @node g-value-zero
927 @section g-value-zero
928 @lisp
929 (g-value-zero g-value)
930 @end lisp
931 @table @var
932 @item @var{g-value}
933 A foreign pointer to GValue structure.
934 @end table
935
936 Initializes the GValue to "unset" state. Equivalent of the following initializer in C:
937 @lisp
938 GValue value = @{ 0 @};
939 @end lisp
940
941 Must be called before other functions that work with GValue (except @code{set-g-value} with keyword argument @code{:zero-g-value} set to true).
942
943 @node g-value-init
944 @section g-value-init
945
946 @lisp
947 (g-value-init value type)
948 @end lisp
949 @table @var
950 @item @var{value}
951 A foreign pointer to GValue structure
952 @item @var{type}
953 A GType designator
954 @end table
955
956 Initializes the GValue to store instances of type @code{type}. Must be called before other functions operate on GValue (except @code{g-value-zero} and @code{set-g-value} with keyword argument @code{:g-value-init} set to true).
957
958 @node g-value-unset
959 @section g-value-unset
960 @lisp
961 (g-value-unset value)
962 @end lisp
963 @table @var
964 @item @var{value}
965 A foreign pointer to GValue structure.
966 @end table
967
968 Unsets the GValue. This frees all resources associated with GValue.
969
970 @node parse-g-value
971 @section parse-g-value
972 @lisp
973 (parse-g-value value) @result{} object
974 @end lisp
975 @table @var
976 @item @var{value}
977 A foreign pointer to GValue structure
978 @item @var{object}
979 A Lisp object
980 @end table
981
982 Retrieves the object from GValue structure.
983
984 @node set-g-value
985 @section set-g-value
986 @lisp
987 (set-g-value gvalue object type &key zero-g-value unset-g-value (g-value-init t))
988 @end lisp
989
990 @table @var
991 @item @var{gvalue}
992 A foreign pointer to GValue structure
993 @item @var{object}
994 An object that is to be assigned to @code{gvalue}
995 @item @var{type}
996 A GType designator specifying what GType should be set
997 @item @var{unset-g-value}
998 A boolean specifying whether to call @code{g-value-unset} before assigment.
999 @item @var{zero-g-value}
1000 A boolean specifying whether to call @code{g-value-zero} before assignment
1001 @item @var{g-value-init}
1002 A boolean specifying whether to call @code{g-value-init} before assignment
1003 @end table
1004
1005 Assigns the @code{object} to the @code{gvalue}. When GValue is not used, call @code{g-value-unset} to deinitialize the @code{GValue}.
1006
1007 @node Registering types
1008 @section Registering types
1009
1010 In order to be able to parse GValues and set them, it is necessary for GValue binding to know type mapping between GObject types and Lisp types. Type registration serves to this purpose.
1011
1012 GEnum and GFlags are mapped to CFFI @code{defcenum} and @code{defbitfield} types. Functions @code{register-enum-type} and @code{register-flags-type} add the type to the mapping.
1013
1014 @subsection
1015 @code{(register-enum-type name type)}
1016 @table @var
1017 @item @var{name}
1018 A string naming the GEnum type
1019 @item @var{type}
1020 A symbol - name of CFFI foreign enum type
1021 @end table
1022
1023 Registers the @code{type} to be used for passing value of GEnum type @code{name} between GObject and Lisp.
1024
1025 Example:
1026 @lisp
1027 (defcenum text-direction
1028   :none :ltr :rtl)
1029 (register-enum-type "GtkTextDirection" 'text-direction)
1030 @end lisp
1031
1032 @subsection
1033 @code{(register-flags-type name type)}
1034 @table @var
1035 @item @var{name}
1036 A string naming the GFlags type
1037 @item @var{type}
1038 A symbol - name of CFFI foreign flags type
1039 @end table
1040
1041 Registers the @code{type} to be used for passing value of GFlags type @code{name} between GObject and Lisp.
1042
1043 Example:
1044 @lisp
1045 (defcenum state-type
1046   :normal :active :prelight :selected :insensitive)
1047 (register-enum-type "GtkStateType" 'state-type)
1048 @end lisp
1049
1050 @node Stable pointers
1051 @chapter Stable pointers
1052 @menu
1053 * allocate-stable-pointer::
1054 * free-stable-pointer::
1055 * stable-pointer-value::
1056 * with-stable-pointer::
1057 @end menu
1058
1059 Sometimes it is necessary to pass arbitrary Lisp object to C code and then receive it back. Stable pointer serve to this purpose. Stable pointer is an integer (that is passed to C code as a @code{void*} pointer) that is created on Lisp side by call to @code{allocate-stable-pointer} and can be dereferenced by Lisp side at any time by calling @code{stable-pointer-value}. Stable pointer exists and does not change its value until explicitly freed by calling @code{free-stable-poitner}. Convenience macro @code{with-stable-pointer} binds the stable pointer for the duration of its body.
1060
1061 @node allocate-stable-pointer
1062 @section allocate-stable-pointer
1063
1064 @lisp
1065 (allocate-stable-pointer thing) @result{} stable-pointer
1066 @end lisp
1067
1068 @table @var
1069 @item @var{thing}
1070 An arbitrary Lisp object
1071 @item @var{stable-pointer}
1072 A foreign pointer
1073 @end table
1074
1075 Allocates a stable pointer to @code{thing}.
1076
1077 (Note: @var{stable-pointer} should not be dereferenced with @code{cffi:mem-ref}. It should only be dereferenced with @code{stable-pointer-value})
1078
1079 Example:
1080 @lisp
1081 (allocate-stable-pointer (lambda (x) (+ x 10)))
1082 @result{}
1083 #.(SB-SYS:INT-SAP #X00000002)
1084
1085 (stable-pointer-value *)
1086 @result{}
1087 #<FUNCTION (LAMBDA (X)) @{1004D016F9@}>
1088
1089 (free-stable-pointer **)
1090 @result{}
1091 NIL
1092 @end lisp
1093
1094 @node free-stable-pointer
1095 @section free-stable-pointer
1096
1097 @lisp
1098 (free-stable-pointer stable-pointer)
1099 @end lisp
1100
1101 @table @var
1102 @item @var{stable-pointer}
1103 A foreign pointer that was created with @code{allocate-stable-pointer}.
1104 @end table
1105
1106 Frees the stable pointer, enabling the garbage collector to reclaim the object.
1107
1108 Example:
1109 @lisp
1110 (allocate-stable-pointer (lambda (x) (+ x 10)))
1111 @result{}
1112 #.(SB-SYS:INT-SAP #X00000002)
1113
1114 (stable-pointer-value *)
1115 @result{}
1116 #<FUNCTION (LAMBDA (X)) @{1004D016F9@}>
1117
1118 (free-stable-pointer **)
1119 @result{}
1120 NIL
1121 @end lisp
1122
1123 @node stable-pointer-value
1124 @section stable-pointer-value
1125
1126 @lisp
1127 (stable-pointer-value stable-pointer) @result{} thing
1128 (setf (stable-pointer-value stable-pointer) thing)
1129 @end lisp
1130
1131 @table @var
1132 @item @var{stable-pointer}
1133 A foreign pointer created by @code{allocate-stable-pointer}
1134 @item @var{thing}
1135 A Lisp object
1136 @end table
1137
1138 Dereferences a @code{stable-pointer}, returning the stable pointer value. @code{stable-pointer-value} is a SETFable form, SETFing it sets the stable pointer's value to new value.
1139
1140 @node with-stable-pointer
1141 @section with-stable-pointer
1142
1143 @lisp
1144 (with-stable-pointer (ptr expr) &body body)
1145 @end lisp
1146
1147 @table @var
1148 @item @var{ptr}
1149 A variable that will be bound to the stable pointer
1150 @item @var{expr}
1151 An expression that will be evaluated once and its value will be bound to stable pointer's value
1152 @end table
1153
1154 Executes the body with the @code{ptr} variable being bound to a stable pointer whose value is determined by @code{expr}.
1155
1156 Example:
1157 @lisp
1158 (with-stable-pointer (ptr (lambda (x) (+ x 10)))
1159   (print (stable-pointer-value ptr)))
1160 ;;Prints:
1161 #<FUNCTION (LAMBDA (X)) @{1004807E79@}>
1162 @end lisp
1163
1164 @node Closures
1165 @chapter Closures
1166
1167 Closure are anonymous functions that capture their lexical environment.
1168
1169 GObject supports using closures (as instances of type GClosure) as signal handlers and in some other places where a function is expected. Function @code{create-g-closure} create closure from lisp function. The GClosure is finalized automatically when GObject no longer needs it (e.g., when GClosure is disconnected from signal).
1170
1171 @section create-g-closure
1172 @code{(create-g-closure fn) @result{} closure}
1173
1174 @table @var
1175 @item @var{fn}
1176 A function that will be called by closure invokation
1177 @item @var{closure}
1178 A foreign pointer to allocated closure
1179 @end table
1180
1181 Allocates the closure. The closure is destroyed automatically by GObject.
1182
1183 Example:
1184 @lisp
1185 (create-g-closure (lambda (x) (+ x 10)))
1186 @result{}
1187 #.(SB-SYS:INT-SAP #X006D7B20)
1188 @end lisp
1189
1190 Example of usage from GObject binding code:
1191 @lisp
1192 (defun connect-signal (object signal handler &key after)
1193   (g-signal-connect-closure (ensure-object-pointer object)
1194                             signal
1195                             (create-g-closure handler)
1196                             after))
1197 @end lisp
1198
1199 (TODO: GObject defines finer closure API: g_closure_ref, g_closure_unref, g_closure_invoke. It should be bound.)
1200
1201 @node GObject low-level
1202 @chapter GObject low-level
1203 @menu
1204 * g-object-call-constructor::
1205 * g-type-from-object::
1206 * g-object-call-get-property::
1207 * g-object-call-set-property::
1208 @end menu
1209
1210 GObject low-level support includes facilities for working with objects as foreign pointers and using explicit function to get and set properties. This low-level support does not deal with integration of GObject with CLOS; GObject high-level support does that.
1211
1212 Function @code{g-type-from-object} identifies the type of the object. Function @code{g-object-call-get-property} retrieves the value of the property and function @code{g-object-call-set-property} sets the value of the property. Function @code{g-object-call-constructor} calls the constructor of the GObject type.
1213
1214 @node g-object-call-constructor
1215 @section g-object-call-constructor
1216
1217 @lisp
1218 (g-object-call-constructor object-type args-names args-values &optional args-types) @result{} object-ptr
1219 @end lisp
1220
1221 @table @var
1222 @item @var{object-type}
1223 A GType designator that specifies the object type that is to be created
1224 @item @var{args-names}
1225 A list of strings naming the arguments to constructor
1226 @item @var{args-value}
1227 A list of arguments values (in the same order as args-names)
1228 @item @var{args-types}
1229 Optional list of arguments types (in the same order as args-names). If not specified, it is detected automatically
1230 @item @var{object-ptr}
1231 A foreign pointer to newly created instance
1232 @end table
1233
1234 Creates the object of type @code{object-type} by calling its constructors with arguments specified by @code{args-names}, @code{args-values}, @code{args-types}.
1235
1236 Example:
1237 @lisp
1238 (g-object-call-constructor "GtkButton" '("label" "use-underline") '("Hello" t) '("gchararray" "gboolean"))
1239 @result{}
1240 #.(SB-SYS:INT-SAP #X006D8900)
1241
1242 (g-object-call-get-property * "label")
1243 @result{}
1244 "Hello"
1245
1246 (g-object-call-get-property ** "use-underline")
1247 @result{}
1248 T
1249 @end lisp
1250
1251 @node g-type-from-object
1252 @section g-type-from-object
1253
1254 @lisp
1255 (g-type-from-object object-ptr) @result{} type
1256 @end lisp
1257
1258 @table @var
1259 @item @var{object-ptr}
1260 A foreign pointer to a GObject instance
1261 @item @var{type}
1262 A GType designator
1263 @end table
1264
1265 Returns the type of an object by a pointer to its instance
1266
1267 Example:
1268 @lisp
1269 (g-type-from-object (g-object-call-constructor "GtkButton" nil nil))
1270 @result{}
1271 "GtkButton"
1272 @end lisp
1273
1274 @node g-object-call-get-property
1275 @section g-object-call-get-property
1276
1277 @lisp
1278 (g-object-call-get-property object-ptr property-name &optional property-type) @result{} property-value
1279 @end lisp
1280
1281 @table @var
1282 @item @var{object-ptr}
1283 A foreign pointer to a GObject instance
1284 @item @var{property-name}
1285 A string naming the property
1286 @item @var{property-type}
1287 Optional GType designator specifying the type of a property
1288 @item @var{property-value}
1289 The value of a property
1290 @end table
1291
1292 Retrieves the value of a property @code{property-name} of object pointed to by @code{object-ptr}. @code{property-type} specifies the type of a property; it may be omitted.
1293
1294 Example:
1295 @lisp
1296 (g-object-call-constructor "GtkButton" '("label" "use-underline") '("Hello" t) '("gchararray" "gboolean"))
1297 @result{}
1298 #.(SB-SYS:INT-SAP #X006D8900)
1299
1300 (g-object-call-get-property * "label")
1301 @result{}
1302 "Hello"
1303
1304 (g-object-call-get-property ** "use-underline")
1305 @result{}
1306 T
1307 @end lisp
1308
1309 @node g-object-call-set-property
1310 @section g-object-call-set-property
1311
1312 @lisp
1313 (g-object-call-set-property object-ptr property-name new-value &optional property-type)
1314 @end lisp
1315
1316 @table @var
1317 @item @var{object-ptr}
1318 A foreign pointer to a GObject instance
1319 @item @var{property-name}
1320 A string naming the property
1321 @item @var{new-value}
1322 A new value of a property
1323 @item @var{property-type}
1324 Optional GType designator specifying the type of a property
1325 @end table
1326
1327 Sets the property value of property @code{property-name} of object @code{object-ptr} to @code{new-value}.
1328
1329 Example:
1330 @lisp
1331 (g-object-call-constructor "GtkButton" nil nil)
1332 @result{}
1333 #.(SB-SYS:INT-SAP #X006D8B40)
1334
1335 (g-object-call-set-property * "label" "Hello")
1336 @result{}
1337 ; No value
1338
1339 (g-object-call-get-property ** "label")
1340 @result{}
1341 "Hello"
1342 @end lisp
1343
1344 @node GObject high-level
1345 @chapter GObject high-level
1346 @menu
1347 * GObject metaclass::
1348 * Using objects::
1349 * Signals::
1350 * GObject foreign class::
1351 @end menu
1352
1353 GObject high-level support includes integration of GObject and CLOS systems. This enables to use GObjects classes as CLOS classes (with support from @code{gobject-class} metaclass):
1354 @itemize
1355 @item objects are created with @code{make-instance}
1356 @item properties are used as regular slots
1357 @end itemize
1358
1359 GObjects are reference counted, and CL-GTK2-GOBJECT manages its own reference to GObjects. This enables to have transparent garbage collection of unreferenced GObjects.
1360
1361 To be able to use particular GObject class with CLOS, it should be defined and registered. This is accomplished by @code{defclass}'ing it with @code{gobject-class} metaclass. After GObject class is defined, it may be used as CLOS class.
1362
1363 Example GObject class of definition:
1364 @lisp
1365 (defclass dialog (gtk-window atk-implementor-iface buildable)
1366   ((has-separator :accessor dialog-has-separator
1367                   :initarg :has-separator
1368                   :allocation :gobject-property
1369                   :g-property-type "gboolean"
1370                   :g-property-name "has-separator"))
1371   (:metaclass gobject-class)
1372   (:g-type-name . "GtkDialog")
1373   (:g-type-initializer . "gtk_dialog_get_type"))
1374 @end lisp
1375
1376 This example defines the CLOS class @code{dialog} that corresponds to GObject class @code{GtkDialog}. Whenever object of GObject type @code{GtkDialog} are to be received from foreign functions or passed to foreign functions, it will be mapped to CLOS class @code{dialog}. Properties that have @code{:allocation} of @code{:gobject-property} are mapped to GObject properties, and reading or writing this slot reads or writes corresponding GObject class property.
1377
1378 GObject does not expose objects methods. Because of this, methods are not automatically mapped to CLOS generic functions and methods. Methods should be manually wrapped with CFFI as foreign functions. Foreign type @code{g-object} aids in it. This type automatically wraps (and unwraps) the GObject class instances and handles the reference counting.
1379
1380 GObject high-level support enables connect signals to signal handlers. Any function may be connected as a signal handler, and GObject will release the reference on signal handler whenever it become unneded (e.g., when object is destroyed or handler is disconnected).
1381
1382 @node GObject metaclass
1383 @section GObject metaclass
1384
1385 See MOP for information what metaclass is and why is it useful.
1386
1387 GObject metaclass @code{gobject-class} bridges two object systems: GObject and CLOS.
1388
1389 Classes that correspond to GObject classes are instances of this class.
1390
1391 Defining the class with metaclass @code{gobject-class} registers the type @code{:g-type-name} for conversions using GValue and CFFI foreign type @code{g-object}.
1392
1393 This class has the following slots:
1394 @itemize
1395 @item @var{g-type-name} (accessor @code{gobject-class-g-type-name}, initarg @code{:g-type-name})
1396
1397 Specifies the name of GObject class
1398 @item @var{g-type-initializer} (accessor @code{gobject-class-g-type-initializer}, initarg @code{:g-type-initializer})
1399
1400 Name of type initializer function. This function initializes the class and returns its GType. Typically it is named @code{class_get_type}.
1401 @item @var{interface-p} (accessor @code{gobject-class-interface-p}, initarg @code{:interface-p})
1402
1403 A boolean specifying whether this CLOS class corresponds to GInterface.
1404 @end itemize
1405
1406 This metaclass defines the GObject classes.
1407
1408 Slots which have @code{:allocation} of @code{:gobject-property} are mapped to GObject properties. Such slots have following attributes:
1409 @itemize
1410 @item @var{:g-property-type}
1411
1412 A string naming GType of property
1413 @item @var{:g-property-name}
1414
1415 A name of a property
1416 @end itemize
1417
1418 Slots which have @code{:allocation} of @code{:gobject-fn} are mapped to a pair of accessor functions (usually named @code{class_get_property} and @code{class_set_property}). This is included because some properties are not exposed as GObject properties. Such slots have following attributes:
1419 @itemize
1420 @item @var{:g-property-type}
1421 A CFFI foreign type of property
1422 @item @var{:g-getter}
1423 A string naming foreign getter function of a property or a symbol designating Lisp getter function. Foreign getter function should have signature @code{type class_get_property(object *)}. Lisp function should be of type @code{(function (class) type)}.
1424 @item @var{:g-setter}
1425 A string naming foreign setter function of a property or a symbol designating Lisp setter function. Foreign setter function should have signature @code{void class_set_property(object *, type)}. Lisp function should be of type @code{(function (class type))}.
1426 @end itemize
1427
1428 Initargs of a slot are used to construct the GObject class.
1429
1430 Example:
1431 @lisp
1432 (defclass container (widget atk-implementor-iface buildable)
1433     ((border-width :allocation :gobject-property
1434                    :g-property-type "guint"
1435                    :accessor container-border-width
1436                    :initarg :border-width
1437                    :g-property-name "border-width")
1438      (resize-mode :allocation :gobject-property
1439                   :g-property-type "GtkResizeMode"
1440                   :accessor container-resize-mode
1441                   :initarg :resize-mode
1442                   :g-property-name "resize-mode")
1443      (child :allocation :gobject-property
1444             :g-property-type "GtkWidget"
1445             :accessor container-child
1446             :initarg :child
1447             :g-property-name "child")
1448      (focus-child :allocation :gobject-fn
1449                   :g-property-type g-object
1450                   :accessor container-focus-child
1451                   :initarg :focus-child
1452                   :g-getter "gtk_container_get_focus_child"
1453                   :g-setter "gtk_container_set_focus_child")
1454      (focus-vadjustment :allocation :gobject-fn
1455                         :g-property-type (g-object adjustment)
1456                         :accessor container-focus-vadjustment
1457                         :initarg :focus-vadjustment
1458                         :g-getter "gtk_container_get_focus_vadjustment"
1459                         :g-setter "gtk_container_set_focus_vadjustment")
1460      (focus-hadjustment :allocation :gobject-fn
1461                         :g-property-type (g-object adjustment)
1462                         :accessor container-focus-hadjustment
1463                         :initarg :focus-hadjustment
1464                         :g-getter "gtk_container_get_focus_hadjustment"
1465                         :g-setter "gtk_container_set_focus_hadjustment"))
1466     (:metaclass gobject-class)
1467     (:g-type-name . "GtkContainer")
1468     (:g-type-initializer . "gtk_container_get_type"))
1469 @end lisp
1470 (note the dot in @code{(:g-type-name . "GtkContainer")} and in @code{(:g-type-initializer . "gtk_container_get_type")}. It should be present)
1471
1472 @node Using objects
1473 @section Using objects
1474 Instances are created with @code{make-instance}. If initargs of GObject properties are supplied, they are passed to constructor. Some slots (properties) may only be set at construction time (e.g., @code{type} property of @code{GtkWindow}). Properties may be accessed (read or assigned) with defined @code{:accessor}, @code{:reader} or @code{:writer} functions.
1475
1476 Example:
1477 @lisp
1478 (make-instance 'gtk:dialog :has-separator t)
1479 @result{}
1480 #<GTK:DIALOG @{10036C5A71@}>
1481
1482 (defvar *d* (make-instance 'gtk:dialog :has-separator t))
1483 @result{}
1484 *D*
1485
1486 (gtk:dialog-has-separator *d*)
1487 @result{}
1488 T
1489
1490 (setf (gtk:dialog-has-separator *d*) nil)
1491 @result{}
1492 NIL
1493
1494 (gtk:dialog-has-separator *d*)
1495 @result{}
1496 NIL
1497 @end lisp
1498
1499 @node Signals
1500 @section Signals
1501
1502 To connect handler to a signal, @code{connect-signal} function is used.
1503
1504 @code{(connect-signal object signal handler &key after)}
1505
1506 @table @var
1507 @item @var{object}
1508 An instance of GObject object
1509 @item @var{signal}
1510 A signal name
1511 @item @var{handler}
1512 A function
1513 @item @var{after}
1514 A boolean specifying whether the handler should be called after the default handler
1515 @end table
1516
1517 Connects the @code{handler} to signal @code{signal} on object @code{object}. Signature of @code{handler} should comply with signature of a signal. @code{handler} will be called with arguments of type specified by signal with the object (on which the signal was emitted) prepended to them and it should return the value of the signal's return type.
1518
1519 Example:
1520 @lisp
1521 (defvar *d* (make-instance 'gtk:dialog))
1522 @result{}
1523 *D*
1524
1525 *d*
1526 @result{}
1527 #<GTK:DIALOG @{1002D866F1@}>
1528
1529 (parse-signal-name "GtkDialog" "response")
1530 @result{}
1531 #<Signal [#86] void GtkDialog.response(gint) [RUN-LAST]>
1532
1533 (connect-signal *d* "response" (lambda (dialog response-value) (print dialog) (print response-value)))
1534
1535 (emit-signal *d* "response" 14)
1536 @result{}
1537 ;; Prints:
1538 #<GTK:DIALOG @{1002D866F1@}>
1539 14 
1540 @end lisp
1541
1542 Function @code{emit-signal} is used to emit signals on objects.
1543
1544 @code{(emit-signal object signal-name &rest args) @result{} return-value}
1545
1546 @table @var
1547 @item @var{object}
1548 An object on which the signal should be emitted
1549 @item @var{signal-name}
1550 A string naming the signal
1551 @item @var{args}
1552 Arguments for a signal
1553 @item @var{return-value}
1554 Return value of a signal
1555 @end table
1556
1557 Emits the signal and calls all handlers of the signal. If signal returns a value, it is returned from @code{emit-signal}.
1558
1559 Example:
1560 @lisp
1561 (defvar *d* (make-instance 'gtk:dialog))
1562 @result{}
1563 *D*
1564
1565 *d*
1566 @result{}
1567 #<GTK:DIALOG @{1002D866F1@}>
1568
1569 (parse-signal-name "GtkDialog" "response")
1570 @result{}
1571 #<Signal [#86] void GtkDialog.response(gint) [RUN-LAST]>
1572
1573 (connect-signal *d* "response" (lambda (dialog response-value) (print dialog) (print response-value)))
1574
1575 (emit-signal *d* "response" 14)
1576 @result{}
1577 ;; Prints:
1578 #<GTK:DIALOG @{1002D866F1@}>
1579 14 
1580 @end lisp
1581
1582 @node GObject foreign class
1583 @section GObject foreign class
1584
1585 To enable passing GObject instance between Lisp code and foreign code, @code{g-object} foreign type is introduced.
1586
1587 This type has the following syntax:
1588 @code{(g-object &optional type)} or @code{g-object}.
1589
1590 When the @code{g-object} foreign type is specified as a return type of a function, the value is converted to instance of corresponding CLOS class. If @code{type} is specified then it is checked that object is of this type.
1591
1592 When the @code{g-object} foreign type is specified as a type of function's argument, the value is converted to pointer to GObject. If @code{type} is specified then it is checked that the object is of this type.
1593
1594 This defines the function that may be called with instances of types @code{container} and @code{widget}:
1595 @lisp
1596 (defcfun (container-add "gtk_container_add") :void
1597   (container (g-object container))
1598   (widget (g-object widget)))
1599
1600 (let ((window (make-instance 'gtk-window))
1601       (widget (make-instance 'button)))
1602   (container-add window widget))
1603 @end lisp
1604 (@code{gtk-window} is a subclass of @code{container}; @code{button} is a subclass of @code{widget})
1605
1606 This defines the function that returns an instance of GObject class:
1607 @lisp
1608 (defcfun (bin-child "gtk_bin_get_child") (g-object widget)
1609   (bin (g-object bin)))
1610
1611 (let ((window (make-instance 'gtk-window))
1612       (widget (make-instance 'button)))
1613   (container-add window widget)
1614   (bin-child window))
1615 @result{}
1616 #<GTK:BUTTON @{1002DE74B1@}>
1617 @end lisp
1618
1619 @node Creating GObjects classes and implementing GInterfaces
1620 @chapter Creating GObjects classes and implementing GInterfaces
1621
1622 @menu
1623 * define-vtable::
1624 * register-object-type-implementation::
1625 @end menu
1626
1627 Creating GObject classes from Lisp is the most complex part of GObject binding.
1628
1629 GObject binding at the moment provides only limited scenarios of creating GObject classes. It lets register GObject class (as a subclass of another class or of GObject), specify its properties and implemented interfaces. Each property is associated with Lisp getter and setter functions. Each interface is associated wth vtable (table of virtual function pointers, see @uref{http://en.wikipedia.org/wiki/Vtable}) that specifies a list of methods and their signatures. If class is ever created from GObject side (not from Lisp side, must be constructable with no parameters).
1630
1631 Each virtual function is mapped to a generic function for which class should provide a specialized method. This function should not be called by user. Rather, user code should call corresponding foreign function.
1632
1633 Practically speaking, creating GObject class requires defining CLOS class that correspond to GObject class and calling @code{register-object-type-implementation} with information about the class (its GType name, superclass, interfaces and properties).
1634
1635 Interface that is implemented by a class should have its vtable defined by @code{define-vtable}. Vtable definitions consists of a list of functions's names and signatures and their locations in vtable.
1636
1637 Unfortunately, GObject does not provide information about vtables, and does not support using GClosures to implement virtual functions. Therefore, implementation for all interface's functions are defined as CFFI foreign callbacks. These callbacks in turn call corresponding generic functions that should be specialized on required objects.
1638
1639 @node define-vtable
1640 @section define-vtable
1641
1642 @lisp
1643 (define-vtable (type-name cstruct-name)
1644   &body item*)
1645
1646 item ::= (name callback-name return-type &rest arg*)
1647 item ::= (:skip cffi-structure-item)
1648 arg ::= (arg-name arg-type)
1649 @end lisp
1650
1651 @table @var
1652 @item @var{type-name}
1653 A string naming the GObject type of interface
1654 @item @var{cstruct-name}
1655 A name for a generated CFFI foreign structure
1656 @item @var{name}
1657 A name for implementation generic function
1658 @item @var{callback-name}
1659 A name for generated callback function
1660 @item @var{return-type}
1661 A CFFI specifier for foreign function return type
1662 @item @var{arg-name}
1663 A symbol naming the argument of interface method
1664 @item @var{arg-type}
1665 A CFFI specifier for foreign function argument type
1666 @end table
1667
1668 Macro that specifies the vtable for an interface. This macro defines generic functions (named by @code{name}) that correspond to methods of an interface. On these generic functions methods should be defined that implement the interface method. @code{item}s specify the CFFI foreign structure for vtable. Vtable contains not only function pointers, but other slots. Such slots should be specified here with @code{:skip} prepended to them. This is needed to be able to correctly calculate offsets to function pointers in vtable.
1669
1670 Example:
1671 @lisp
1672 (define-vtable ("GtkTreeModel" c-gtk-tree-model)
1673   (:skip parent-instance g-type-interface)
1674   ;;some signals
1675   (:skip tree-model-row-changed :pointer)
1676   (:skip tree-model-row-inserted :pointer)
1677   (:skip tree-model-row-has-child-toggled :pointer)
1678   (:skip tree-model-row-deleted :pointer)
1679   (:skip tree-model-rows-reordered :pointer)
1680   ;;methods
1681   (tree-model-get-flags-impl tree-model-get-flags-cb
1682     tree-model-flags (tree-model g-object))
1683   (tree-model-get-n-columns-impl tree-model-get-n-columns-cb
1684     :int (tree-model g-object))
1685   (tree-model-get-column-type-impl tree-model-get-column-type-cb
1686     g-type (tree-model g-object) (index :int))
1687   (tree-model-get-iter-impl tree-model-get-iter-cb
1688     :boolean (tree-model g-object) (iter (g-boxed-ref tree-iter)) (path (g-boxed-ref tree-path)))
1689   (tree-model-get-path-impl tree-model-get-path-cb
1690     (g-boxed-ref tree-path) (tree-model g-object) (iter (g-boxed-ref tree-iter)))
1691   (tree-model-get-value-impl tree-model-get-value-cb
1692     :void (tree-model g-object) (iter (g-boxed-ref tree-iter)) (n :int) (value (:pointer g-value)))
1693   (tree-model-iter-next-impl tree-model-iter-next-cb
1694     :boolean (tree-model g-object) (iter (g-boxed-ref tree-iter)))
1695   (tree-model-iter-children-impl tree-model-iter-children-cb
1696     :boolean (tree-model g-object) (iter (g-boxed-ref tree-iter)) (parent (g-boxed-ref tree-iter)))
1697   (tree-model-iter-has-child-impl tree-model-iter-has-child-cb
1698     :boolean (tree-model g-object) (iter (g-boxed-ref tree-iter)))
1699   (tree-model-iter-n-children-impl tree-model-iter-n-children-cb
1700     :int (tree-model g-object) (iter (g-boxed-ref tree-iter)))
1701   (tree-model-iter-nth-child-impl tree-model-iter-nth-child-cb
1702     :boolean (tree-model g-object) (iter (g-boxed-ref tree-iter)) (parent (g-boxed-ref tree-iter)) (n :int))
1703   (tree-model-iter-parent-impl tree-model-iter-parent-cb
1704     :boolean (tree-model g-object) (iter (g-boxed-ref tree-iter)) (child (g-boxed-ref tree-iter)))
1705   (tree-model-ref-node-impl tree-model-ref-node-cb
1706     :void (tree-model g-object) (iter (g-boxed-ref tree-iter)))
1707   (tree-model-unref-node-impl tree-model-unref-node-cb
1708     :void (tree-model g-object) (iter (g-boxed-ref tree-iter))))
1709 @end lisp
1710
1711 @node register-object-type-implementation
1712 @section register-object-type-implementation
1713
1714 @lisp
1715 (register-object-type-implementation name class parent interfaces properties)
1716 @end lisp
1717
1718 @table @var
1719 @item @var{name}
1720 A string naming the new GObject class.
1721 @item @var{class}
1722 A class name of corresponding CLOS class. It should be inherited from @code{g-object} or its descendants.
1723 @item @var{parent}
1724 A string naming the GObject superclass
1725 @item @var{interfaces}
1726 A list of names of interfaces that this class implements.
1727 @item @var{properties}
1728 A list of properties that this class provides.
1729 Each property is defined as
1730 @lisp
1731 property ::= (property-name property-type accessor property-get-fn property-set-fn)
1732 @end lisp
1733 @end table
1734
1735 A macro that creates a new GObject type and registers the Lisp implementation for it.
1736
1737 Example:
1738 @lisp
1739 (register-object-type-implementation "LispArrayListStore" array-list-store "GObject" ("GtkTreeModel") nil)
1740 @end lisp
1741
1742 @node GBoxed
1743 @chapter GBoxed
1744 @menu
1745 * define-g-boxed-class::
1746 * define-g-boxed-ref::
1747 @end menu
1748
1749 GObject manual defines this type in the following way:
1750
1751 ``GBoxed is a generic wrapper mechanism for arbitrary C structures. The only thing the type system needs to know about the structures is how to copy and free them, beyond that they are treated as opaque chunks of memory.
1752
1753 Boxed types are useful for simple value-holder structures like rectangles or points. They can also be used for wrapping structures defined in non-GObject based libraries.''
1754
1755 Naturally, it is quite hard to provide support for such structures. At the moment, support for GBoxed is pretty bad.
1756
1757 Basically, two use cases of GBoxed structures are provided:
1758 @itemize
1759 @item structure is mapped to Lisp structure defined with @code{defstruct}. This is complex scenario and it supports inheritance between structure. Its main use is to define the @code{GdkEvent} structure wrapper. Macro @code{define-g-boxed-class} supports this use case.
1760 @item structure is mapped to Lisp wrapper that contains pointer to structure and provides accessor functions (by calling foreign function or calling Lisp function). Macro @code{define-g-boxed-ref} supports this use case.
1761 @end itemize
1762
1763 In both scenarios, foreign functions and GValue type registrations are provided that provide wrapping and unwrapping behaivour (it yet remains to be proven that the behaviour is correct in all cases with regard to issues of memory management, ownership, lifetime). In both cases it is possible to pass the structure by reference, allowing the foreign function (or the callback code) to change the contents of GBoxed.
1764
1765 It is expected that the support for GBoxed structures will be improved.
1766
1767 @node define-g-boxed-class
1768 @section define-g-boxed-class
1769
1770 @lisp
1771 (define-g-boxed-class g-name-and-c-name name (&optional superclass-and-dispatch (export t))
1772   &body slot*)
1773
1774 g-name-and-c-name ::= nil
1775 g-name-and-c-name ::= (g-name c-name)
1776 superclass-and-dispatch ::= (&optional superclass dispatch-slot dispatch-values)
1777 slot ::= slot-name slot-type &key initform parser unparser
1778 @end lisp
1779
1780 @table @var
1781 @item @var{g-name}
1782 A string naming the type of this GBoxed; for inherited classes, it should be @code{NIL}
1783 @item @var{c-name}
1784 A symbol naming the generated CFFI foreign structure definition corresponding to this GBoxed. This name should not conflict with other CFFI types.
1785 @item @var{name}
1786 A symbol naming the Lisp structure that will be generated
1787 @item @var{superclass}
1788 A symbol naming the structure defined with @code{define-g-boxed-class} that is the superclass of this structure
1789 @item @var{dispatch-slot}
1790 A slot of the superclass structure that identifies the specific type of structure (``discriminator'')
1791 @item @var{dispatch-values}
1792 A value or a list of values of the @code{dispatch-slot} that correspond to this GBoxed class
1793 @item @var{slot-name}
1794 Name of a slot
1795 @item @var{slot-type}
1796 CFFI foreign type of a slot
1797 @item @var{initform}
1798 An optional initform for @code{defstruct} slot
1799 @item @var{parser}
1800 An optional parser function designator for slot. Parser function is called to get the value for slot when the GBoxed is passed to Lisp with the following arguments: @code{(name pointer)} where the @code{name} is the name of a structure being defined and the @code{pointer} is a foreign pointer to the C structure.
1801 @item @var{unparser}
1802 An optional unparser function designator for a slot. Unparser function is called to write the slot value to GBoxed structure. It is called with arguments @code{(name pointer object)} where @code{name} is the name of a structure being defined, @code{pointer} is the pointer to the C structure and the @code{object} is object whose slot value should be written to structure.
1803 @end table
1804
1805 Defines the @code{defstruct} wrapper for GBoxed type. Various parameters control how the structure is converted between C and Lisp representations.
1806
1807 @code{define-g-boxed-class} supports basic single inheritance. This is provided to support ``generic'' C structures like @code{GdkEvent} that contain a ``type'' field and a @code{union} of other substructures. The natural mapping of such structure to Lisp is not one, but several structures that are inherited one from another. This supports e.g. method dispatching on @code{GdkEvent} types (if it is ever necessary).
1808
1809 The only use of @code{define-g-boxed-class} that involves inheritance is the @code{GdkEvent} structure. It is defined as follows.
1810 @lisp
1811 (define-g-boxed-class ("GdkEvent" event-struct) event ()
1812   (type event-type)
1813   (window (g-object gdk-window))
1814   (send-event (:boolean :int8)))
1815
1816 (define-g-boxed-class nil event-key ((event type (:key-press :key-release)))
1817   (time :uint32)
1818   (state modifier-type)
1819   (keyval :uint)
1820   (length :int)
1821   (string (:string :free-from-foreign nil :free-to-foreign nil))
1822   (hardware-keycode :uint16)
1823   (group :uint8)
1824   (is-modifier :uint))
1825
1826 (define-g-boxed-class nil event-button ((event type (:button-press :2button-press :3button-press :button-release)))
1827   (time :uint32)
1828   (x :double)
1829   (y :double)
1830   (axes (fixed-array :double 2))
1831   (state :uint)
1832   (button :uint)
1833   (device (g-object device))
1834   (x-root :double)
1835   (y-root :double))
1836 @end lisp
1837
1838 Some simpler uses include following examples:
1839 @lisp
1840 (define-g-boxed-class "GdkFont" font ()
1841   (type font-type :initform :font)
1842   (ascent :int :initform 0)
1843   (descent :int :initform 0))
1844
1845 (define-g-boxed-class "GdkColor" color ()
1846   (pixel :uint32 :initform 0)
1847   (red :uint16 :initform 0)
1848   (green :uint16 :initform 0)
1849   (blue :uint16 :initform 0))
1850
1851 (define-g-boxed-class "GdkGeometry" geometry ()
1852   (min-width :int :initform 0)
1853   (min-height :int :initform 0)
1854   (max-width :int :initform 0)
1855   (max-height :int :initform 0)
1856   (base-width :int :initform 0)
1857   (base-height :int :initform 0)
1858   (width-increment :int :initform 0)
1859   (height-increment :int :initform 0)
1860   (min-aspect :double :initform 0.0d0)
1861   (max-aspect :double :initform 0.0d0)
1862   (gravity gravity :initform :north-west))
1863 @end lisp
1864
1865 @node define-g-boxed-ref
1866 @section define-g-boxed-ref
1867
1868 @code{g-boxed-ref} class is defined:
1869 @lisp
1870 (defclass g-boxed-ref ()
1871   ((pointer :accessor pointer :initarg :pointer)))
1872 @end lisp
1873
1874 This class holds the pointer to structure. GBoxed-ref types are subclasses of this class.
1875
1876 @lisp
1877 (define-g-boxed-ref g-name name
1878   &rest property*)
1879
1880 property ::= (:free-function free-function)
1881 property ::= (:alloc-function alloc-function)
1882 property ::= (:slots &rest slot*)
1883 slot ::= (slot-name &key reader writer type (accessor slot-name))
1884 @end lisp
1885
1886 @table @var
1887 @item @var{g-name}
1888 A string that names the GBoxed type
1889 @item @var{name}
1890 A symbol that is the name for generated class
1891 @item @var{free-function}
1892 Mandatory designator for a function that frees the allocated object. This function accepts a single argument - CFFI foreign pointer.
1893 @item @var{alloc-function}
1894 Mandatory designator for a function that allocates the object. This function accepts zero arguments and returns CFFI foreign pointer to fresh object.
1895 @item @var{slot-name}
1896 A symbol naming the slot
1897 @item @var{type}
1898 A CFFI foreign type of a slot
1899 @item @var{reader}
1900 @code{NIL} or a string or a function designator. If it is @code{NIL} the the slot is not readable. If it is a string then it names the C function that accepts the pointer to structure and returns the value of a slot of specified CFFI type. If it is a function designator that it designates a function that accepts the Lisp object and returns its slot value.
1901 @item @var{writer}
1902 @code{NIL} or string or a function designator. If it is a @code{NIL} then the slot is not writable. If it is a string then it names the C function that accepts the pointer to C structure and a value (of specified CFFI type) and assigns it to the slot of a structure. If it is a function designator then it specifies a function that accepts the new slot value and a Lisp object and assigns it to the slot.
1903 @item @var{accessor}
1904 A symbol namin the accessor function for slot.
1905 @end table
1906
1907 Defines a class corresponding to GBoxed type that is passed by reference (e.g., @code{GtkTextIter}). Class is made a subclass of @code{g-boxed-ref}.
1908
1909 The memory occupied by this class is managed automatically: after the GC collects the Lisp instance, @code{free-function} is used to free the structure (if the instance was created by lisp code).
1910
1911 Example:
1912 @lisp
1913 (defcstruct tree-iter
1914   (stamp :int)
1915   (user-data :pointer)
1916   (user-data-2 :pointer)
1917   (user-data-3 :pointer))
1918
1919 (defun tree-iter-get-stamp (i) (foreign-slot-value (pointer i) 'tree-iter 'stamp))
1920 (defun tree-iter-set-stamp (value i) (setf (foreign-slot-value (pointer i) 'tree-iter 'stamp) value))
1921 (defun tree-iter-get-user-data (i) (pointer-address (foreign-slot-value (pointer i) 'tree-iter 'user-data)))
1922 (defun tree-iter-set-user-data (value i) (setf (foreign-slot-value (pointer i) 'tree-iter 'user-data) (make-pointer value)))
1923
1924 (defun tree-iter-alloc () (glib:g-malloc (foreign-type-size 'tree-iter)))
1925 (defun tree-iter-free (v) (glib:g-free v))
1926
1927 (define-g-boxed-ref "GtkTreeIter" tree-iter
1928   (:slots (stamp :reader tree-iter-get-stamp :writer tree-iter-set-stamp :accessor tree-iter-stamp)
1929           (user-data :reader tree-iter-get-user-data :writer tree-iter-set-user-data :accessor tree-iter-user-data))
1930   (:alloc-function tree-iter-alloc)
1931   (:free-function tree-iter-free))
1932 @end lisp
1933
1934 Another example:
1935 @lisp
1936 (define-foreign-type unichar ()
1937   ()
1938   (:actual-type :uint32)
1939   (:simple-parser unichar))
1940
1941 (defmethod translate-from-foreign (value (type unichar))
1942   (code-char value))
1943
1944 (defmethod translate-to-foreign (value (type unichar))
1945   (char-code value))
1946
1947 (define-g-boxed-ref "GtkTextIter" text-iter
1948   (:free-function gtk-text-iter-free)
1949   (:alloc-function gtk-text-iter-alloc)
1950   (:slots (text-iter-buffer :reader "gtk_text_iter_get_buffer" :type (g-object text-buffer))
1951           (text-iter-offset :reader "gtk_text_iter_get_offset" :writer "gtk_text_iter_set_offset" :type :int)
1952           (text-iter-line :reader "gtk_text_iter_get_line" :writer "gtk_text_iter_set_line" :type :int)
1953           (text-iter-line-offset :reader "gtk_text_iter_get_line_offset" :writer "gtk_text_iter_set_line_offset" :type :int)
1954           (text-iter-visible-line-offset :reader "gtk_text_iter_get_visible_line_offset" :writer "gtk_text_iter_set_visible_line_offset" :type :int)
1955           (text-iter-char :reader "gtk_text_iter_get_char" :type unichar)
1956           (text-iter-pixbuf :reader "gtk_text_iter_get_pixbuf" :type (g-object pixbuf))
1957           (text-iter-marks :reader "gtk_text_iter_get_marks" :type (gslist (g-object text-mark) :free-from-foreign t))
1958           (text-iter-child-anchor :reader "gtk_text_iter_get_child_anchor" :type (g-object text-child-anchor))
1959           (text-iter-tags :reader "gtk_text_iter_get_tags" :type (gslist (g-object text-tag) :free-from-foreign t))
1960           (text-iter-chars-in-line :reader "gtk_text_iter_get_chars_in_line" :type :int)
1961           (text-iter-language :reader "gtk_text_iter_get_language" :type :pointer)
1962           (text-iter-is-end :reader "gtk_text_iter_is_end" :type :boolean)
1963           (text-iter-is-start :reader "gtk_text_iter_is_start" :type :boolean)
1964           (text-iter-can-insert :reader "gtk_text_iter_can_insert" :type :boolean)
1965           (text-iter-starts-word :reader "gtk_text_iter_starts_word" :type :boolean)
1966           (text-iter-ends-word :reader "gtk_text_iter_ends_word" :type :boolean)
1967           (text-iter-inside-word :reader "gtk_text_iter_inside_word" :type :boolean)
1968           (text-iter-starts-line :reader "gtk_text_iter_starts_line" :type :boolean)
1969           (text-iter-ends-line :reader "gtk_text_iter_ends_line" :type :boolean)
1970           (text-iter-starts-sentence :reader "gtk_text_iter_starts_sentence" :type :boolean)
1971           (text-iter-ends-sentence :reader "gtk_text_iter_ends_sentence" :type :boolean)
1972           (text-iter-inside-sentence :reader "gtk_text_iter_inside_sentence" :type :boolean)
1973           (text-iter-is-cursor-position :reader "gtk_text_iter_is_cursor_position" :type :boolean)))
1974
1975 (defcstruct %text-iter
1976   (dummy1 :pointer)
1977   (dummy2 :pointer)
1978   (dummy3 :int)
1979   (dummy4 :int)
1980   (dummy5 :int)
1981   (dummy6 :int)
1982   (dummy7 :int)
1983   (dummy8 :int)
1984   (dummy9 :pointer)
1985   (dummy10 :pointer)
1986   (dummy11 :int)
1987   (dummy12 :int)
1988   (dummy13 :int)
1989   (dummy14 :pointer))
1990
1991 (defcfun gtk-text-iter-copy :pointer
1992   (iter :pointer))
1993
1994 (defcfun gtk-text-iter-free :void
1995   (iter :pointer))
1996
1997 (defun gtk-text-iter-alloc ()
1998   (with-foreign-object (iter '%text-iter)
1999     (gtk-text-iter-copy iter)))
2000 @end lisp
2001
2002 @node Generating type definitions by introspection
2003 @chapter Generating type definitions by introspection
2004 @menu
2005 * define-g-object-class::
2006 * define-g-interface::
2007 * define-g-enum::
2008 * define-g-flags::
2009 * get-g-enum-definition::
2010 * get-g-flags-definition::
2011 * get-g-interface-definition::
2012 * get-g-class-definition::
2013 * Specifying additional properties for CLOS classes::
2014 * Generating names for CLOS classes and accessors::
2015 * generate-types-hierarchy-to-file::
2016 @end menu
2017
2018 CL-GTK2-GOBJECT includes facilities for automatically generating parts of bindings for libraries that use GObject type system.
2019
2020 @node define-g-object-class
2021 @section define-g-object-class
2022
2023 @lisp
2024 (define-g-object-class g-type-name name
2025   (&key (superclass 'g-object) (export t) interfaces type-initializer)
2026   (&rest property*))
2027
2028 property ::= (name accessor gname type readable writable)
2029 property ::= (:cffi name acessor type reader writer)
2030 @end lisp
2031
2032 Parameters of @code{define-g-object-class}
2033 @table @var
2034 @item @var{superclass}
2035 A symbol naming the superclass of this class
2036 @item @var{export}
2037 Whether to export the name of the class and names of autogenerated properties names from the current package.
2038 @item @var{interfaces}
2039 A list of interfaces the this class implements
2040 @item @var{type-initializer}
2041 A string naming the type initiliazer function. It is usually named @code{class_get_type}.
2042 @item @var{properties}
2043 A list of slots of a class
2044 @end table
2045
2046 Parameters of @code{property}:
2047 @table @var
2048 @item @var{name}
2049 A symbol naming the slot
2050 @item @var{accessor}
2051 A symbol naming the accessor function for this slot
2052 @item @var{gname}
2053 A string naming the property of GObject
2054 @item @var{type}
2055 A string naming the type of property of GObject (for GObject properties); or a symbol naming CFFI foreign type (for slots mapped to foreign accessors)
2056 @item @var{readable}
2057 A boolean specifying whether the slot can be read
2058 @item @var{writable}
2059 A boolean specifying whether the slot can be assigned to
2060 @item @var{reader}
2061 A string or a symbol naming getter function. See description of @code{gobject-class} metaclass for information.
2062 @item @var{writter}
2063 A string or a symbol naming setter function. See description of @code{gobject-class} metaclass for information.
2064 @end table
2065
2066 Macro that expands to @code{defclass} for specified class. Additionally, if @code{export} is true, it exports accessor names and name of a class.
2067
2068 Example:
2069 @lisp
2070 (define-g-object-class "GtkContainer" container
2071   (:superclass widget :export t :interfaces
2072                ("AtkImplementorIface" "GtkBuildable")
2073                :type-initializer "gtk_container_get_type")
2074   ((border-width container-border-width "border-width" "guint" t t)
2075    (resize-mode container-resize-mode "resize-mode" "GtkResizeMode" t t)
2076    (child container-child "child" "GtkWidget" nil t)
2077    (:cffi focus-child container-focus-child g-object "gtk_container_get_focus_child" "gtk_container_set_focus_child")
2078    (:cffi focus-vadjustment container-focus-vadjustment (g-object adjustment) "gtk_container_get_focus_vadjustment" "gtk_container_set_focus_vadjustment")
2079    (:cffi focus-hadjustment container-focus-hadjustment (g-object adjustment) "gtk_container_get_focus_hadjustment" "gtk_container_set_focus_hadjustment")))
2080 @end lisp
2081
2082 @node define-g-interface
2083 @section define-g-interface
2084
2085 @lisp
2086 (define-g-interface g-type-name name (&key (export t) type-initializer)
2087   &body property*)
2088
2089 property ::= (name accessor gname type readable writable)
2090 property ::= (:cffi name acessor type reader writer)
2091 @end lisp
2092
2093 Parameters of @code{define-g-interface}
2094 @table @var
2095 @item @var{export}
2096 Whether to export the name of the interface and names of autogenerated properties names from the current package.
2097 @item @var{type-initializer}
2098 A string naming the type initiliazer function. It is usually named @code{interface_get_type}.
2099 @item @var{properties}
2100 A list of slots of a interface
2101 @end table
2102
2103 Parameters of @code{property}:
2104 @table @var
2105 @item @var{name}
2106 A symbol naming the slot
2107 @item @var{accessor}
2108 A symbol naming the accessor function for this slot
2109 @item @var{gname}
2110 A string naming the property of GObject
2111 @item @var{type}
2112 A string naming the type of property of GObject (for GObject properties); or a symbol naming CFFI foreign type (for slots mapped to foreign accessors)
2113 @item @var{readable}
2114 A boolean specifying whether the slot can be read
2115 @item @var{writable}
2116 A boolean specifying whether the slot can be assigned to
2117 @item @var{reader}
2118 A string or a symbol naming getter function. See description of @code{gobject-class} metaclass for information.
2119 @item @var{writter}
2120 A string or a symbol naming setter function. See description of @code{gobject-class} metaclass for information.
2121 @end table
2122
2123 Macro that expands to @code{defclass} for specified interface. Additionally, if @code{export} is true, it exports accessor names and name of a interface.
2124
2125 Example:
2126 @lisp
2127 (define-g-interface "GtkFileChooser" file-chooser
2128   (:export t :type-initializer "gtk_file_chooser_get_type")
2129   (do-overwrite-confirmation file-chooser-do-overwrite-confirmation "do-overwrite-confirmation" "gboolean" t t)
2130   (select-multiple file-chooser-select-multiple "select-multiple" "gboolean" t t)
2131   (filter file-chooser-filter "filter" "GtkFileFilter" t t)
2132   (local-only file-chooser-local-only "local-only" "gboolean" t t)
2133   (preview-widget file-chooser-preview-widget "preview-widget" "GtkWidget" t t)
2134   (use-preview-label file-chooser-use-preview-label "use-preview-label" "gboolean" t t)
2135   (preview-widget-active file-chooser-preview-widget-active "preview-widget-active" "gboolean" t t)
2136   (file-system-backend file-chooser-file-system-backend "file-system-backend" "gchararray" nil nil)
2137   (extra-widget file-chooser-extra-widget "extra-widget" "GtkWidget" t t)
2138   (show-hidden file-chooser-show-hidden "show-hidden" "gboolean" t t)
2139   (action file-chooser-action "action" "GtkFileChooserAction" t t)
2140   (:cffi current-name file-chooser-current-name
2141    (:string :free-to-foreign t :encoding :utf-8) nil "gtk_file_chooser_set_current_name")
2142   (:cffi filename file-chooser-filename
2143    (g-string :free-from-foreign t :free-to-foreign t)
2144    "gtk_file_chooser_get_filename" "gtk_file_chooser_set_filename")
2145   (:cffi current-folder file-chooser-current-folder
2146    (g-string :free-from-foreign t :free-to-foreign t)
2147    "gtk_file_chooser_get_current_folder"
2148    "gtk_file_chooser_set_current_folder")
2149   (:cffi uri file-chooser-uri
2150    (g-string :free-from-foreign t :free-to-foreign t)
2151    "gtk_file_chooser_get_uri" "gtk_file_chooser_set_uri")
2152   (:cffi current-folder-uri file-chooser-current-folder-uri
2153    (g-string :free-from-foreign t :free-to-foreign t)
2154    "gtk_file_chooser_get_current_folder_uri"
2155    "gtk_file_chooser_set_current_folder_uri")
2156   (:cffi preview-filename file-chooser-preview-filename
2157    (g-string :free-from-foreign t :free-to-foreign t)
2158    "gtk_file_chooser_get_preview_filename" nil)
2159   (:cffi preview-uri file-chooser-preview-uri
2160    (g-string :free-from-foreign t :free-to-foreign t)
2161    "gtk_file_chooser_get_preview_uri" nil))
2162 @end lisp
2163
2164 @node define-g-enum
2165 @section define-g-enum
2166
2167 @lisp
2168 (define-g-enum g-name name (&key (export t) type-initializer) &body value*)
2169
2170 value ::= :keyword
2171 value ::= (:keyword integer)
2172 @end lisp
2173
2174 @table @var
2175 @item @var{g-name}
2176 A string naming the GEnum type
2177 @item @var{name}
2178 A symbol naming the CFFI enumeration type
2179 @item @var{export}
2180 A boolean indicating whether to export @code{name}
2181 @item @var{type-initializer}
2182 A string naming the foreign type initializer function. Usually named @code{enum_get_type}.
2183 @end table
2184
2185 Macro that defines CFFI enumeration, registers it with GValue, and calls the type initializer.
2186
2187 Example:
2188 @lisp
2189 (define-g-enum "GtkTextDirection" text-direction
2190   (:export t :type-initializer "gtk_text_direction_get_type")
2191   (:none 0) (:ltr 1) (:rtl 2))
2192
2193 (define-g-enum "GtkSizeGroupMode" size-group-mode
2194  (:export t :type-initializer "gtk_size_group_mode_get_type")
2195  :none :horizontal :vertical :both)
2196 @end lisp
2197
2198 @node define-g-flags
2199 @section define-g-flags
2200
2201 @lisp
2202 (define-g-flags g-name name (&key (export t) type-initializer) &body value*)
2203
2204 value ::= :keyword
2205 value ::= (:keyword integer)
2206 @end lisp
2207
2208 @table @var
2209 @item @var{g-name}
2210 A string naming the GFlags type
2211 @item @var{name}
2212 A symbol naming the CFFI flags type
2213 @item @var{export}
2214 A boolean indicating whether to export @code{name}
2215 @item @var{type-initializer}
2216 A string naming the foreign type initializer function. Usually named @code{flags_get_type}.
2217 @end table
2218
2219 Macro that defines CFFI bitfield, registers it with GValue, and calls the type initializer.
2220
2221 Example:
2222 @lisp
2223 (define-g-flags "GtkAttachOptions" attach-options
2224   (:export t :type-initializer "gtk_attach_options_get_type")
2225   (:expand 1) (:shrink 2) (:fill 4))
2226
2227 (define-g-flags "GtkButtonAction" button-action
2228   (:export t :type-initializer "gtk_button_action_get_type")
2229   :ignored :selects :drags :expands)
2230 @end lisp
2231
2232 @node get-g-enum-definition
2233 @section get-g-enum-definition
2234
2235 @lisp
2236 (get-g-enum-definition type &optional lisp-name-package) @result{} definition
2237 @end lisp
2238
2239 @table @var
2240 @item @var{type}
2241 A string naming the GEnum type
2242 @item @var{lisp-name-package}
2243 A package that will be used as a package for generated symbols (enum name). If not specified, symbols are interned in @code{*package*}
2244 @item @var{definition}
2245 A Lisp form that when evaluated defines the GEnum.
2246 @end table
2247
2248 Uses GObject introspection capabilities to automatically produce the definition of GEnum. The foreign library that defines the enum type should be loaded.
2249
2250 See @ref{Generating names for CLOS classes and accessors} for information about used method for generating names.
2251
2252 Example:
2253 @lisp
2254 (get-g-enum-definition "GtkDirectionType")
2255 @result{}
2256 (DEFINE-G-ENUM "GtkDirectionType" GTK-DIRECTION-TYPE
2257                (:EXPORT T :TYPE-INITIALIZER "gtk_direction_type_get_type")
2258                (:TAB-FORWARD 0) (:TAB-BACKWARD 1) (:UP 2) (:DOWN 3) (:LEFT 4)
2259                (:RIGHT 5))
2260 @end lisp
2261
2262 @node get-g-flags-definition
2263 @section get-g-flags-definition
2264
2265 @lisp
2266 (get-g-flags-definition type &optional lisp-name-package) @result{} definition
2267 @end lisp
2268
2269 @table @var
2270 @item @var{type}
2271 A string naming the GFlags type
2272 @item @var{lisp-name-package}
2273 A package that will be used as a package for generated symbols (flags name). If not specified, symbols are interned in @code{*package*}
2274 @item @var{definition}
2275 A Lisp form that when evaluated defines the GFlags.
2276 @end table
2277
2278 Uses GObject introspection capabilities to automatically produce the definition of GFlags. The foreign library that defines the flags type should be loaded.
2279
2280 See @ref{Generating names for CLOS classes and accessors} for information about used method for generating names.
2281
2282 Example:
2283 @lisp
2284 (get-g-flags-definition "GtkCalendarDisplayOptions")
2285 @result{}
2286 (DEFINE-G-FLAGS "GtkCalendarDisplayOptions" GTK-CALENDAR-DISPLAY-OPTIONS
2287                 (:EXPORT T :TYPE-INITIALIZER
2288                  "gtk_calendar_display_options_get_type")
2289                 (:SHOW-HEADING 1) (:SHOW-DAY-NAMES 2) (:NO-MONTH-CHANGE 4)
2290                 (:SHOW-WEEK-NUMBERS 8) (:WEEK-START-MONDAY 16)
2291                 (:SHOW-DETAILS 32))
2292 @end lisp
2293
2294 @node get-g-interface-definition
2295 @section get-g-interface-definition
2296
2297 @lisp
2298 get-g-interface-definition type &optional lisp-name-package) @result{} definition
2299 @end lisp
2300
2301 @table @var
2302 @item @var{type}
2303 A string naming the GInterface type
2304 @item @var{lisp-name-package}
2305 A package that will be used as a package for generated symbols (type name, accessor names). If not specified, symbols are interned in @code{*package*}
2306 @item @var{definition}
2307 A Lisp form that when evaluated defines the GInterface.
2308 @end table
2309
2310 Uses GObject introspection capabilities to automatically produce the definition of GInterface. The foreign library that defines the GInterface type should be loaded.
2311
2312 See @ref{Generating names for CLOS classes and accessors} for information about used method for generating names.
2313
2314 Example:
2315 @lisp
2316 (get-g-interface-definition "GtkActivatable")
2317 @result{}
2318 (DEFINE-G-INTERFACE "GtkActivatable" GTK-ACTIVATABLE
2319                     (:EXPORT T :TYPE-INITIALIZER "gtk_activatable_get_type")
2320                     (USE-ACTION-APPEARANCE
2321                      GTK-ACTIVATABLE-USE-ACTION-APPEARANCE
2322                      "use-action-appearance" "gboolean" T T)
2323                     (RELATED-ACTION GTK-ACTIVATABLE-RELATED-ACTION
2324                      "related-action" "GtkAction" T T))
2325 @end lisp
2326
2327 @node get-g-class-definition
2328 @section get-g-class-definition
2329
2330
2331 @lisp
2332 get-g-class-definition type &optional lisp-name-package) @result{} definition
2333 @end lisp
2334
2335 @table @var
2336 @item @var{type}
2337 A string naming the GObject type
2338 @item @var{lisp-name-package}
2339 A package that will be used as a package for generated symbols (type name, accessor names). If not specified, symbols are interned in @code{*package*}
2340 @item @var{definition}
2341 A Lisp form that when evaluated defines the GObject.
2342 @end table
2343
2344 Uses GObject introspection capabilities to automatically produce the definition of GClass. The foreign library that defines the GObject type should be loaded.
2345
2346 See @ref{Generating names for CLOS classes and accessors} for information about used method for generating names.
2347
2348 Example:
2349 @lisp
2350 (get-g-class-definition "GtkButton")
2351 @result{}
2352 (DEFINE-G-OBJECT-CLASS "GtkButton" GTK-BUTTON
2353                        (:SUPERCLASS GTK-BIN :EXPORT T :INTERFACES
2354                         ("AtkImplementorIface" "GtkActivatable" "GtkBuildable")
2355                         :TYPE-INITIALIZER "gtk_button_get_type")
2356                        ((LABEL GTK-BUTTON-LABEL "label" "gchararray" T T)
2357                         (IMAGE GTK-BUTTON-IMAGE "image" "GtkWidget" T T)
2358                         (RELIEF GTK-BUTTON-RELIEF "relief" "GtkReliefStyle" T
2359                          T)
2360                         (USE-UNDERLINE GTK-BUTTON-USE-UNDERLINE "use-underline"
2361                          "gboolean" T T)
2362                         (USE-STOCK GTK-BUTTON-USE-STOCK "use-stock" "gboolean"
2363                          T T)
2364                         (FOCUS-ON-CLICK GTK-BUTTON-FOCUS-ON-CLICK
2365                          "focus-on-click" "gboolean" T T)
2366                         (XALIGN GTK-BUTTON-XALIGN "xalign" "gfloat" T T)
2367                         (YALIGN GTK-BUTTON-YALIGN "yalign" "gfloat" T T)
2368                         (IMAGE-POSITION GTK-BUTTON-IMAGE-POSITION
2369                          "image-position" "GtkPositionType" T T)))
2370 @end lisp
2371
2372 @node Specifying additional properties for CLOS classes
2373 @section Specifying additional properties for CLOS classes
2374
2375 Some properties are not exposed through GObject introspection facilities, but are rather present as a pair of functions (@code{class_get_property}, @code{class_set_property}). @code{gobject-class} metaclass supports such properties. For these properties to be included in automatically generated class definitions, they should be made known to the generator.
2376
2377 Definitions generator uses variable @code{*additional-properties*} to get this information.
2378
2379 Variable @code{*additional-properties*} contains a plist that maps GType names to a list of properties definitions (See @ref{define-g-object-class} for syntax of properties definitions).
2380
2381 To supply the bindings generator with this information, bind @code{*additional-properties*} to such list when the generator is run.
2382
2383 Example:
2384 @lisp
2385 (("GtkTreeViewColumn"
2386   (:cffi gtk::tree-view
2387          gtk::tree-view-column-tree-view
2388          g-object "gtk_tree_view_column_get_tree_view" nil)
2389   (:cffi gtk::sort-column-id
2390          gtk::tree-view-column-sort-column-id
2391          :int "gtk_tree_view_column_get_sort_column_id" "gtk_tree_view_column_set_sort_column_id")
2392   (:cffi gtk::cell-renderers
2393          gtk::tree-view-column-cell-renderers
2394          (glist g-object  :free-from-foreign t) "gtk_tree_view_column_get_cell_renderers" nil))
2395  ("GtkTreeSelection"
2396   (:cffi gtk::mode
2397          gtk::tree-selection-mode
2398          gtk::selection-mode "gtk_tree_selection_get_mode" "gtk_tree_selection_set_mode")
2399   (:cffi gtk::select-function
2400          gtk::tree-selection-select-function
2401          nil gtk::tree-selection-get-selection-function gtk::tree-selection-set-select-function)))
2402 @end lisp
2403
2404 @node Generating names for CLOS classes and accessors
2405 @section Generating names for CLOS classes and accessors
2406
2407 Names of types are generated by mapping @code{CamelCaseNames} to @code{dash-separated-names} and interning them in specified package. Additionally, prefix from beginning of the name may be stripped (@code{"GtkWidget"} has prefix @code{"Gtk"}, after stripping it maps to @code{widget}). Some names may require special processing (e.g., @code{"GObject"}, @code{"GInitiallyUnowned"} should map to class names in @code{gobject} package; @code{"GtkWindow"} and @code{"GdkWindow"} should receive different @code{symbol-name}s so that they can both be imported in one package).
2408
2409 Accessors for slots are generated by concatenating class name, dash and slot name, producing names like @code{class-slot}: @code{container-child}, @code{button-label}, etc.
2410
2411 Name generation affected by following variables:
2412 @itemize
2413 @item @var{*strip-prefix*}
2414 A string variable specifying the prefix that should to be stripped from the names to generate symbols (e.g., if @code{(equal "Gtk" *strip-prefix*)}, then type named @code{"GtkWidget"} will map to class named @code{widget}.
2415 @item @var{*lisp-name-exceptions*}
2416 A plist mapping from strings (type names) to symbols (class names) that have special name processing.
2417 Example:
2418 @lisp
2419 `(("GObject" gobject:g-object)
2420   ("GtkObject" ,(intern "GTK-OBJECT" (find-package :gtk)))
2421   ("GInitiallyUnowned" gobject::g-initially-unowned)
2422   ("GtkWindow" ,(intern "GTK-WINDOW" (find-package :gtk)))
2423   ("GtkUIManager" ,(intern "UI-MANAGER" (find-package :gtk)))
2424   ("GtkUIManagerItemType" ,(intern "UI-MANAGER-ITEM-TYPE" (find-package :gtk))))
2425 @end lisp
2426 @end itemize
2427
2428 @node generate-types-hierarchy-to-file
2429 @section generate-types-hierarchy-to-file
2430
2431 @lisp
2432 (generate-types-hierarchy-to-file file
2433                                   root-type
2434                                   &key include-referenced
2435                                   prefix
2436                                   package
2437                                   exceptions
2438                                   prologue
2439                                   interfaces
2440                                   enums
2441                                   flags
2442                                   objects
2443                                   exclusions
2444                                   additional-properties)
2445 @end lisp
2446
2447 @table @var
2448 @item @var{file}
2449 A string or pathname naming the file, or a stream.
2450 @item @var{root-type}
2451 A GType designator for a root type. All types that inherit from this type will be defined.
2452 @item @var{&key include-referenced}
2453 A boolean. Specifies whether referenced types should be included. Type is referenced if it is an interface or a type of property of type included in generation
2454 @item @var{prefix}
2455 A string naming the prefix that should be removed from the beginning of names
2456 @item @var{package}
2457 A package which will contain generated names of types, slots and accessors. It will also be the current package when the definitions are written to file
2458 @item @var{exceptions}
2459 A plist that maps GType names to their Lisp names.
2460 See @ref{Generating names for CLOS classes and accessors} for more info on exceptions from name generation mechanism
2461 @item @var{prologue}
2462 A string that will be included verbatim in generated code file
2463 @item @var{interfaces}
2464 Additional list of interfaces that will also be included in generation
2465 @item @var{enums}
2466 Additional list of enums that will also be included in generation
2467 @item @var{flags}
2468 Additional list of flags that will also be included in generation
2469 @item @var{objects}
2470 Additional list of object types that will also be included in generation
2471 @item @var{exclusions}
2472 A list of GType names that will be excluded from generation
2473 @item @var{additional-properties}
2474 A plist of properties definitions that will be added to generated classes.
2475 See @ref{Specifying additional properties for CLOS classes} for more information.
2476 @end table
2477
2478 Generates definitions for all types in a type hierarchy. Recursively scan types hierarchy (starting from @code{root} and @code{objects} and @code{interfaces}) (except types that were specifically excluded) and generate defintion for every mentioned type. Parameters control various aspects of definition generation.
2479
2480 Example of usage:
2481 @lisp
2482 (generate-types-hierarchy-to-file
2483  "gtk.generated-classes.lisp"
2484  "GtkObject"
2485  :include-referenced t
2486  :prefix "Gtk"
2487  :package (or (find-package :gtk) (make-package :gtk))
2488  :exceptions `(("GObject" gobject:g-object)
2489                ("GtkObject" ,(intern "GTK-OBJECT" (find-package :gtk)))
2490                ("GInitiallyUnowned" gobject::g-initially-unowned)
2491                ("GtkWindow" ,(intern "GTK-WINDOW" (find-package :gtk)))
2492                ("GtkUIManager" ,(intern "UI-MANAGER" (find-package :gtk)))
2493                ("GtkUIManagerItemType" ,(intern "UI-MANAGER-ITEM-TYPE" (find-package :gtk))))
2494  :prologue (format nil "(in-package :gtk)")
2495  :interfaces '("GtkBuildable" "GtkCellEditable" ...)
2496  :objects '("GtkSettings" "GtkRcStyle" ...)
2497  :flags '("GtkTextSearchFlags" "GtkAccelFlags" ...)
2498  :enums '("GtkTextDirection" "GtkSizeGroupMode" ...)
2499  :exclusions '("PangoStretch" "PangoVariant" ...)
2500  :additional-properties
2501  '(("GtkTreeViewColumn"
2502     (:cffi
2503      gtk::tree-view
2504      gtk::tree-view-column-tree-view
2505      g-object
2506      "gtk_tree_view_column_get_tree_view"
2507      nil)
2508     ...)
2509    ...))
2510 @end lisp
2511
2512 @bye
2513