~ubuntu-branches/ubuntu/precise/glib2.0/precise-updates

« back to all changes in this revision

Viewing changes to docs/reference/gobject/html/signal.html

  • Committer: Package Import Robot
  • Author(s): Sebastien Bacher
  • Date: 2012-02-02 19:24:45 UTC
  • mfrom: (1.59.38)
  • Revision ID: package-import@ubuntu.com-20120202192445-n258a4h70odnnq4m
Tags: 2.31.14-0ubuntu1
* New upstream version:
  GResource:
  - GLib now includes a commandline utility, gresource, to explore 
    resources in ELF files
  - The resource compiler can now optionally strip ignorable 
    whitespace from XML resources
  - The resource compiler can now generate build dependencies
  - The resource compiler will now autoselect output formats
  GApplication:
  - The menu markup parser API has been dropped, the menu XML support 
    lives in GTK+ now
  GValueArray has been deprecated
* debian/libglib2.0-0.symbols: 
  - new version update
* debian/libglib2.0-bin.install:
  - list the new gresource command and its manpage
* debian/control.in:
  - Breaks on gtk << 3.3.12, glib and gtk needs to be updated together
    due to the gmenu parser changes
  - Build-Depends on libelf-dev for the gresources tools, thanks ricotz
* debian/docs:
  - dropped, no need to install ChangeLog and NEWS from the past century
* debian/libglib2.0-bin.install:
  - ship the glib-compile-resources manpage, thanks ricotz
* debian/patches/git_gsettings_lists_set.patch:
  - git patch, fix "gsettings set ..." command line issues (lp: #925382)

Show diffs side-by-side

added added

removed removed

Lines of Context:
190
190
                        no accumulator was specified. If an accumulator was specified during signal creation,
191
191
                        this accumulator is used to calculate the return_value as a function of the return
192
192
                        values of all the closures invoked during emission. 
193
 
                        <sup>[<a name="id419314" href="#ftn.id419314" class="footnote">8</a>]</sup>
 
193
                        <sup>[<a name="id578853" href="#ftn.id578853" class="footnote">8</a>]</sup>
194
194
                        If no closure is invoked during
195
195
                        emission, the return_value is nonetheless initialized to zero/null.
196
196
                        </p></li>
273
273
<p>
274
274
            Of the three main connection functions,
275
275
                only one has an explicit detail parameter as a <a href="./../glib/glib/glib-Quarks.html#GQuark"><span class="type">GQuark</span></a>
276
 
                <sup>[<a name="id419518" href="#ftn.id419518" class="footnote">9</a>]</sup>:
 
276
                <sup>[<a name="id579057" href="#ftn.id579057" class="footnote">9</a>]</sup>:
277
277
</p>
278
278
<pre class="programlisting">
279
279
gulong     g_signal_connect_closure_by_id          (gpointer          instance,
357
357
</div>
358
358
<div class="footnotes">
359
359
<br><hr width="100" align="left">
360
 
<div class="footnote"><p><sup>[<a id="ftn.id419314" href="#id419314" class="para">8</a>] </sup>
 
360
<div class="footnote"><p><sup>[<a id="ftn.id578853" href="#id578853" class="para">8</a>] </sup>
361
361
                          James (again!!) gives a few non-trivial examples of accumulators:
362
362
                          <span class="quote">“<span class="quote">
363
363
                                For instance, you may have an accumulator that ignores NULL returns from 
365
365
                                to return the list of values returned by the closures.
366
366
                          </span>”</span>
367
367
                        </p></div>
368
 
<div class="footnote"><p><sup>[<a id="ftn.id419518" href="#id419518" class="para">9</a>] </sup>A GQuark is an integer which uniquely represents a string. It is possible to transform
 
368
<div class="footnote"><p><sup>[<a id="ftn.id579057" href="#id579057" class="para">9</a>] </sup>A GQuark is an integer which uniquely represents a string. It is possible to transform
369
369
                   back and forth between the integer and string representations with the functions 
370
370
                   <code class="function"><a href="./../glib/glib/glib-Quarks.html#g-quark-from-string">g_quark_from_string</a></code> and <code class="function"><a href="./../glib/glib/glib-Quarks.html#g-quark-to-string">g_quark_to_string</a></code>.
371
371
                  </p></div>