cvs: php-gtk-doc /manual/en/reference/gtk gtkbox.xml gtkcelleditable.xml gtkexpander.xml
[email protected] ("Elizabeth Marie Smith")
| Newsgroups | php.gtk.doc |
|---|---|
| Message-ID | <cvsauroraeosrose1160406743@cvsserver> |
auroraeosrose Mon Oct 9 15:12:23 2006 UTC
Modified files:
/php-gtk-doc/manual/en/reference/gtk gtkbox.xml gtkcelleditable.xml
gtkexpander.xml
Log:
DailyDoc - GtkCellEditable and fill in missing methods/signals/constructors from GtkBox and GtkExpander
http://cvs.php.net/viewvc.cgi/php-gtk-doc/manual/en/reference/gtk/gtkbox.xml?r1=1.16&r2=1.17&diff_format=u
Index: php-gtk-doc/manual/en/reference/gtk/gtkbox.xml
diff -u php-gtk-doc/manual/en/reference/gtk/gtkbox.xml:1.16 php-gtk-doc/manual/en/reference/gtk/gtkbox.xml:1.17
--- php-gtk-doc/manual/en/reference/gtk/gtkbox.xml:1.16 Thu Oct 5 19:41:06 2006
+++ php-gtk-doc/manual/en/reference/gtk/gtkbox.xml Mon Oct 9 15:12:23 2006
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
-<!-- $Revision: 1.16 $ -->
+<!-- $Revision: 1.17 $ -->
<classentry id="gtk.gtkbox">
<classmeta>
<classtitle>GtkBox</classtitle>
@@ -330,10 +330,22 @@
</funcprototype>
</funcsynopsis>
<shortdesc>
-
+ Returns array of information about a packed widget.
</shortdesc>
<desc>
-
+ <para>
+ This method returns an array with four elements containing information
+ about how the child widget is packed. Index 0 contains the
+ <literal>expand</literal> value for the widget where 0 is
+ <literal>false</literal> and 1 is <literal>true</literal>. Index 1 contains
+ the <literal>fill</literal> value for the widget where 0 is
+ <literal>false</literal> and 1 is <literal>true</literal>. Index 2 contains
+ the <literal>padding</literal> value for the widget as an integer of the
+ number of pixels of padding. Index 3 contains the
+ <literal>pack_type</literal> value for the widget: either <optionname
+ enum="GtkPackType">Gtk::PACK_START</optionname> or <optionname
+ enum="GtkPackType">Gtk::PACK_END</optionname>
+ </para>
</desc>
</method>
http://cvs.php.net/viewvc.cgi/php-gtk-doc/manual/en/reference/gtk/gtkcelleditable.xml?r1=1.2&r2=1.3&diff_format=u
Index: php-gtk-doc/manual/en/reference/gtk/gtkcelleditable.xml
diff -u php-gtk-doc/manual/en/reference/gtk/gtkcelleditable.xml:1.2 php-gtk-doc/manual/en/reference/gtk/gtkcelleditable.xml:1.3
--- php-gtk-doc/manual/en/reference/gtk/gtkcelleditable.xml:1.2 Fri Aug 11 05:15:33 2006
+++ php-gtk-doc/manual/en/reference/gtk/gtkcelleditable.xml Mon Oct 9 15:12:23 2006
@@ -1,15 +1,16 @@
<?xml version="1.0" encoding="utf-8" ?>
-<!-- $Revision: 1.2 $ -->
+<!-- $Revision: 1.3 $ -->
<classentry id="gtk.gtkcelleditable" type="interface">
<classmeta>
<classtitle>GtkCellEditable</classtitle>
<classparent>GInterface</classparent>
<shortdesc>
-
+ An interface providing cell editing in a <classname>GtkTreeView</classname>.
</shortdesc>
<desc>
<para>
-
+ This interface provides editing of a cell contained in a
+ <classname>GtkTreeView</classname>.
</para>
</desc>
</classmeta>
@@ -24,10 +25,15 @@
</funcprototype>
</funcsynopsis>
<shortdesc>
-
+ Emits the <signalname class="GtkCellEditable">editing-done</signalname>
+ signal.
</shortdesc>
- <desc>
-
+ <desc>
+ <para>
+ This method emits the <signalname
+ class="GtkCellEditable">editing-done</signalname> signal that notifies the
+ cell renderer to update its value from the cell.
+ </para>
</desc>
</method>
@@ -39,10 +45,16 @@
</funcprototype>
</funcsynopsis>
<shortdesc>
-
+ Emits the <signalname class="GtkCellEditable">remove-widget</signalname>
+ signal.
</shortdesc>
<desc>
-
+ <para>
+ This method emits the <signalname
+ class="GtkCellEditable">remove-widget</signalname> signal which indicates
+ that the cell is finished editing, and the celleditable widget may now be
+ destroyed.
+ </para>
</desc>
</method>
@@ -54,12 +66,60 @@
</funcprototype>
</funcsynopsis>
<shortdesc>
-
+ Begins the editing on a widget.
</shortdesc>
<desc>
-
+ <para>
+ This method begins editing on a GtkCellEditable widget that has been
+ reparented over the treeview cell. <literal>event</literal> is the
+ <classname>GdkEvent</classname> that began the editing process. It may be
+ NULL, in the instance that editing was initiated through programatic means.
+ </para>
</desc>
</method>
</methods>
+ <signals>
+
+ <signal id="gtk.gtkcelleditable.signal.editing-done">
+ <signalname>editing-done</signalname>
+ <funcsynopsis>
+ <funcprototype>
+ <funcdef>void <cbfunction>callback</cbfunction></funcdef>
+ <paramdef>GtkCellEditable <parameter>celleditable</parameter></paramdef>
+ </funcprototype>
+ </funcsynopsis>
+ <shortdesc>
+ This signal is emitted when editing is complete.
+ </shortdesc>
+ <desc>
+ <para>
+ After editing is complete, calling <function
+ class="GtkCellEditable">editing_done</function> emits this signal.
+ </para>
+ </desc>
+ </signal>
+
+ <signal id="gtk.gtkcelleditable.signal.remove-widget">
+ <signalname>remove-widget</signalname>
+ <funcsynopsis>
+ <funcprototype>
+ <funcdef>void <cbfunction>callback</cbfunction></funcdef>
+ <paramdef>GtkCellEditable <parameter>celleditable</parameter></paramdef>
+ </funcprototype>
+ </funcsynopsis>
+ <shortdesc>
+ This signal is emitted when the celleditable widget can be destroyed.
+ </shortdesc>
+ <desc>
+ <para>
+ This signal is emitted when the cellrenderer for the treeview cell has
+ retrieved the edited information and the celleditable widget can be
+ destroyed.
+ </para>
+ </desc>
+ </signal>
+
+ </signals>
+
</classentry>
\ No newline at end of file
http://cvs.php.net/viewvc.cgi/php-gtk-doc/manual/en/reference/gtk/gtkexpander.xml?r1=1.10&r2=1.11&diff_format=u
Index: php-gtk-doc/manual/en/reference/gtk/gtkexpander.xml
diff -u php-gtk-doc/manual/en/reference/gtk/gtkexpander.xml:1.10 php-gtk-doc/manual/en/reference/gtk/gtkexpander.xml:1.11
--- php-gtk-doc/manual/en/reference/gtk/gtkexpander.xml:1.10 Thu Oct 5 19:41:07 2006
+++ php-gtk-doc/manual/en/reference/gtk/gtkexpander.xml Mon Oct 9 15:12:23 2006
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
-<!-- $Revision: 1.10 $ -->
+<!-- $Revision: 1.11 $ -->
<classentry id="gtk.gtkexpander">
<classmeta>
<classtitle>GtkExpander</classtitle>
@@ -66,10 +66,25 @@
</funcprototype>
</funcsynopsis>
<shortdesc>
-
+ Creates a GtkExpander instance with a mnemonic label.
</shortdesc>
<desc>
-
+ <para>
+ This is a static method which creates a new
+ <classname>GtkExpander</classname> instance using <literal>label</literal>
+ as the text of the label. If characters in label are preceded by an
+ underscore, they are underlined. If you need a literal underscore character
+ in a label, use '__' (two underscores). The first underlined character
+ represents a keyboard accelerator called a mnemonic. Pressing Alt with that
+ key activates the button. If label is <literal>Null</literal> the expander
+ will have no label.
+ </para>
+ <para>
+ This method is a shortcut, you can achieve the same results by creating a
+ new <classname>GtkExpander</classname> instance with a label containing an
+ underscore and then calling the <function
+ class="GtkExpander">set_use_underline</function>
+ </para>
<simpara>
&static;
</simpara>
@@ -378,7 +393,10 @@
Emitted when the expander is activated.
</shortdesc>
<desc>
-
+ <para>
+ This signal is emitted when the expander is activated by the user clicking
+ on the expander toggle.
+ </para>
</desc>
</signal>