Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
gtk
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Nikita Churaev
gtk
Commits
adce3190
Commit
adce3190
authored
Feb 10, 2006
by
Matthias Clasen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Apply a patch by Murray to improve comboboxentry docs
parent
8633322c
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
32 additions
and
1 deletion
+32
-1
ChangeLog
ChangeLog
+10
-0
ChangeLog.pre-2-10
ChangeLog.pre-2-10
+10
-0
docs/reference/gtk/tmpl/gtkcomboboxentry.sgml
docs/reference/gtk/tmpl/gtkcomboboxentry.sgml
+9
-0
gtk/gtkcombobox.c
gtk/gtkcombobox.c
+3
-1
No files found.
ChangeLog
View file @
adce3190
2006-02-10 Murray Cumming <murrayc@murrayc.com>
* docs/reference/gtk/tmpl/gtkcomboboxentry.sgml: Mention that
the changed signal is emitted when typing - not just when
selecting from the list. Suggest use of GtkEntry::action to
detect end of typing.
* gtk/gtkcombobox.c: (gtk_combo_box_class_init): changed signal
documentation: Mention that the GtkComboBoxEntry emits it when
the users types, not just when he selects from the list.
2006-02-10 Murray Cumming <murrayc@murrayc.com
* gtk/gtkassistant.h: Correct the declaration of the prepare
...
...
ChangeLog.pre-2-10
View file @
adce3190
2006-02-10 Murray Cumming <murrayc@murrayc.com>
* docs/reference/gtk/tmpl/gtkcomboboxentry.sgml: Mention that
the changed signal is emitted when typing - not just when
selecting from the list. Suggest use of GtkEntry::action to
detect end of typing.
* gtk/gtkcombobox.c: (gtk_combo_box_class_init): changed signal
documentation: Mention that the GtkComboBoxEntry emits it when
the users types, not just when he selects from the list.
2006-02-10 Murray Cumming <murrayc@murrayc.com
* gtk/gtkassistant.h: Correct the declaration of the prepare
...
...
docs/reference/gtk/tmpl/gtkcomboboxentry.sgml
View file @
adce3190
...
...
@@ -19,6 +19,15 @@ and the entry will show the content of the text column in the selected row. To
get the text from the entry, use gtk_combo_box_get_active_text().
</para>
<para>The changed signal will be emitted while typing into a GtkComboBoxEntry,
as well as when selecting an item from the GtkComboBoxEntry's list. Use
gtk_combo_box_get_active() or gtk_combo_box_get_active_iter() to discover
whether an item was actually selected from the list.
</para>
<para>Connect to the activate signal of the GtkEntry (use gtk_bin_get_child()) to
detect when the user actually finishes entering text.</para>
<para>
The convenience API to construct simple text-only #GtkComboBox<!-- -->es can
also be used with #GtkComboBoxEntry<!-- -->s which have been constructed
...
...
gtk/gtkcombobox.c
View file @
adce3190
...
...
@@ -534,10 +534,12 @@ gtk_combo_box_class_init (GtkComboBoxClass *klass)
* GtkComboBox::changed:
* @widget: the object which received the signal
*
* The changed signal
get
s emitted when the active
* The changed signal
i
s emitted when the active
* item is changed. The can be due to the user selecting
* a different item from the list, or due to a
* call to gtk_combo_box_set_active_iter().
* It will also be emitted while typing into a GtkComboBoxEntry,
* as well as when selecting an item from the GtkComboBoxEntry's list.
*
* Since: 2.4
*/
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment