forked from AuroraMiddleware/gtk
Mention new functionality
svn path=/trunk/; revision=21935
This commit is contained in:
parent
8e2921f7c5
commit
9970427175
@ -1,5 +1,7 @@
|
|||||||
2008-12-26 Matthias Clasen <mclasen@redhat.com>
|
2008-12-26 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
|
* gtk/tmpl/gtkentry.sgml: Mention new functionality
|
||||||
|
|
||||||
* gtk/gtk-sections.txt: Add new api
|
* gtk/gtk-sections.txt: Add new api
|
||||||
|
|
||||||
2008-12-26 Matthias Clasen <mclasen@redhat.com>
|
2008-12-26 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
@ -12,6 +12,19 @@ by default. If the entered text is longer than the allocation
|
|||||||
of the widget, the widget will scroll so that the cursor
|
of the widget, the widget will scroll so that the cursor
|
||||||
position is visible.
|
position is visible.
|
||||||
</para>
|
</para>
|
||||||
|
<para>
|
||||||
|
Since 2.16, GtkEntry has the ability to display progress or activity
|
||||||
|
information behind the text. To make an entry display progress or activity
|
||||||
|
information, use gtk_entry_set_progress_fraction() or
|
||||||
|
gtk_entry_set_progress_pulse_step().
|
||||||
|
</para>
|
||||||
|
<para>
|
||||||
|
Additionally, GtkEntry can show icons at either side of the entry. These
|
||||||
|
icons can be activatable by clicking, can be set up as drag source and
|
||||||
|
can have tooltips. To add an icon, use gtk_entry_set_icon_from_gicon() or
|
||||||
|
one of the various other functions that set an icon from a stock id, an
|
||||||
|
icon name or a pixbuf.
|
||||||
|
</para>
|
||||||
|
|
||||||
<!-- ##### SECTION See_Also ##### -->
|
<!-- ##### SECTION See_Also ##### -->
|
||||||
<para>
|
<para>
|
||||||
@ -22,6 +35,11 @@ position is visible.
|
|||||||
<listitem><para>a widget for handling multi-line text entry.</para></listitem>
|
<listitem><para>a widget for handling multi-line text entry.</para></listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
|
|
||||||
|
<varlistentry>
|
||||||
|
<term>#GtkEntryCompletion</term>
|
||||||
|
<listitem><para>adds completion functionality to GtkEntry.</para></listitem>
|
||||||
|
</varlistentry>
|
||||||
|
|
||||||
</variablelist>
|
</variablelist>
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
@ -71,6 +89,24 @@ The #GtkEntry-struct struct contains only private data.
|
|||||||
@arg1:
|
@arg1:
|
||||||
@arg2:
|
@arg2:
|
||||||
|
|
||||||
|
<!-- ##### SIGNAL GtkEntry::icon-pressed ##### -->
|
||||||
|
<para>
|
||||||
|
|
||||||
|
</para>
|
||||||
|
|
||||||
|
@entry: the object which received the signal.
|
||||||
|
@arg1:
|
||||||
|
@event:
|
||||||
|
|
||||||
|
<!-- ##### SIGNAL GtkEntry::icon-released ##### -->
|
||||||
|
<para>
|
||||||
|
|
||||||
|
</para>
|
||||||
|
|
||||||
|
@entry: the object which received the signal.
|
||||||
|
@arg1:
|
||||||
|
@event:
|
||||||
|
|
||||||
<!-- ##### SIGNAL GtkEntry::insert-at-cursor ##### -->
|
<!-- ##### SIGNAL GtkEntry::insert-at-cursor ##### -->
|
||||||
<para>
|
<para>
|
||||||
|
|
||||||
@ -111,11 +147,26 @@ The #GtkEntry-struct struct contains only private data.
|
|||||||
|
|
||||||
@entry: the object which received the signal.
|
@entry: the object which received the signal.
|
||||||
|
|
||||||
|
<!-- ##### ARG GtkEntry:activatable-primary ##### -->
|
||||||
|
<para>
|
||||||
|
|
||||||
|
</para>
|
||||||
|
|
||||||
|
<!-- ##### ARG GtkEntry:activatable-secondary ##### -->
|
||||||
|
<para>
|
||||||
|
|
||||||
|
</para>
|
||||||
|
|
||||||
<!-- ##### ARG GtkEntry:activates-default ##### -->
|
<!-- ##### ARG GtkEntry:activates-default ##### -->
|
||||||
<para>
|
<para>
|
||||||
|
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
|
<!-- ##### ARG GtkEntry:caps-lock-warning ##### -->
|
||||||
|
<para>
|
||||||
|
|
||||||
|
</para>
|
||||||
|
|
||||||
<!-- ##### ARG GtkEntry:cursor-position ##### -->
|
<!-- ##### ARG GtkEntry:cursor-position ##### -->
|
||||||
<para>
|
<para>
|
||||||
|
|
||||||
@ -126,11 +177,31 @@ The #GtkEntry-struct struct contains only private data.
|
|||||||
|
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
|
<!-- ##### ARG GtkEntry:gicon-primary ##### -->
|
||||||
|
<para>
|
||||||
|
|
||||||
|
</para>
|
||||||
|
|
||||||
|
<!-- ##### ARG GtkEntry:gicon-secondary ##### -->
|
||||||
|
<para>
|
||||||
|
|
||||||
|
</para>
|
||||||
|
|
||||||
<!-- ##### ARG GtkEntry:has-frame ##### -->
|
<!-- ##### ARG GtkEntry:has-frame ##### -->
|
||||||
<para>
|
<para>
|
||||||
|
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
|
<!-- ##### ARG GtkEntry:icon-name-primary ##### -->
|
||||||
|
<para>
|
||||||
|
|
||||||
|
</para>
|
||||||
|
|
||||||
|
<!-- ##### ARG GtkEntry:icon-name-secondary ##### -->
|
||||||
|
<para>
|
||||||
|
|
||||||
|
</para>
|
||||||
|
|
||||||
<!-- ##### ARG GtkEntry:inner-border ##### -->
|
<!-- ##### ARG GtkEntry:inner-border ##### -->
|
||||||
<para>
|
<para>
|
||||||
|
|
||||||
@ -141,6 +212,11 @@ The #GtkEntry-struct struct contains only private data.
|
|||||||
|
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
|
<!-- ##### ARG GtkEntry:invisible-char-set ##### -->
|
||||||
|
<para>
|
||||||
|
|
||||||
|
</para>
|
||||||
|
|
||||||
<!-- ##### ARG GtkEntry:max-length ##### -->
|
<!-- ##### ARG GtkEntry:max-length ##### -->
|
||||||
<para>
|
<para>
|
||||||
|
|
||||||
@ -151,6 +227,26 @@ The #GtkEntry-struct struct contains only private data.
|
|||||||
|
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
|
<!-- ##### ARG GtkEntry:pixbuf-primary ##### -->
|
||||||
|
<para>
|
||||||
|
|
||||||
|
</para>
|
||||||
|
|
||||||
|
<!-- ##### ARG GtkEntry:pixbuf-secondary ##### -->
|
||||||
|
<para>
|
||||||
|
|
||||||
|
</para>
|
||||||
|
|
||||||
|
<!-- ##### ARG GtkEntry:progress-fraction ##### -->
|
||||||
|
<para>
|
||||||
|
|
||||||
|
</para>
|
||||||
|
|
||||||
|
<!-- ##### ARG GtkEntry:progress-pulse-step ##### -->
|
||||||
|
<para>
|
||||||
|
|
||||||
|
</para>
|
||||||
|
|
||||||
<!-- ##### ARG GtkEntry:scroll-offset ##### -->
|
<!-- ##### ARG GtkEntry:scroll-offset ##### -->
|
||||||
<para>
|
<para>
|
||||||
|
|
||||||
@ -161,11 +257,41 @@ The #GtkEntry-struct struct contains only private data.
|
|||||||
|
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
|
<!-- ##### ARG GtkEntry:sensitive-primary ##### -->
|
||||||
|
<para>
|
||||||
|
|
||||||
|
</para>
|
||||||
|
|
||||||
|
<!-- ##### ARG GtkEntry:sensitive-secondary ##### -->
|
||||||
|
<para>
|
||||||
|
|
||||||
|
</para>
|
||||||
|
|
||||||
<!-- ##### ARG GtkEntry:shadow-type ##### -->
|
<!-- ##### ARG GtkEntry:shadow-type ##### -->
|
||||||
<para>
|
<para>
|
||||||
|
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
|
<!-- ##### ARG GtkEntry:stock-primary ##### -->
|
||||||
|
<para>
|
||||||
|
|
||||||
|
</para>
|
||||||
|
|
||||||
|
<!-- ##### ARG GtkEntry:stock-secondary ##### -->
|
||||||
|
<para>
|
||||||
|
|
||||||
|
</para>
|
||||||
|
|
||||||
|
<!-- ##### ARG GtkEntry:storage-type-primary ##### -->
|
||||||
|
<para>
|
||||||
|
|
||||||
|
</para>
|
||||||
|
|
||||||
|
<!-- ##### ARG GtkEntry:storage-type-secondary ##### -->
|
||||||
|
<para>
|
||||||
|
|
||||||
|
</para>
|
||||||
|
|
||||||
<!-- ##### ARG GtkEntry:text ##### -->
|
<!-- ##### ARG GtkEntry:text ##### -->
|
||||||
<para>
|
<para>
|
||||||
|
|
||||||
@ -201,6 +327,16 @@ The #GtkEntry-struct struct contains only private data.
|
|||||||
|
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
|
<!-- ##### ARG GtkEntry:prelight ##### -->
|
||||||
|
<para>
|
||||||
|
|
||||||
|
</para>
|
||||||
|
|
||||||
|
<!-- ##### ARG GtkEntry:state-hint ##### -->
|
||||||
|
<para>
|
||||||
|
|
||||||
|
</para>
|
||||||
|
|
||||||
<!-- ##### FUNCTION gtk_entry_new ##### -->
|
<!-- ##### FUNCTION gtk_entry_new ##### -->
|
||||||
<para>
|
<para>
|
||||||
|
|
||||||
@ -299,6 +435,14 @@ The #GtkEntry-struct struct contains only private data.
|
|||||||
@ch:
|
@ch:
|
||||||
|
|
||||||
|
|
||||||
|
<!-- ##### FUNCTION gtk_entry_unset_invisible_char ##### -->
|
||||||
|
<para>
|
||||||
|
|
||||||
|
</para>
|
||||||
|
|
||||||
|
@entry:
|
||||||
|
|
||||||
|
|
||||||
<!-- ##### FUNCTION gtk_entry_set_editable ##### -->
|
<!-- ##### FUNCTION gtk_entry_set_editable ##### -->
|
||||||
<para>
|
<para>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user