From 14f3add82ea6edf2dc710976af0e95247a91a317 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pedro=20Mart=C3=ADnez=20Juli=C3=A1?= Date: Thu, 24 Apr 2003 18:14:30 +0000 Subject: [PATCH] =?UTF-8?q?2003-04-24=20=20Pedro=20Mart=EF=BF=BDnez=20Juli?= =?UTF-8?q?=EF=BF=BD=20=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * en/Gtk/Combo.xml: Edit document. Ready to validate. There are a few TODO attributes but I think that will not be documented. svn path=/trunk/gtk-sharp/; revision=13981 --- doc/en/Gtk/Combo.xml | 91 +++++++++++++++++++++++++++++++------------- 1 file changed, 64 insertions(+), 27 deletions(-) diff --git a/doc/en/Gtk/Combo.xml b/doc/en/Gtk/Combo.xml index c4b9820a0..d592aa17c 100644 --- a/doc/en/Gtk/Combo.xml +++ b/doc/en/Gtk/Combo.xml @@ -7,8 +7,45 @@ Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. - To be added - To be added + A text entry field with a dropdown list + + + The GtkCombo widget consists of a single-line text entry field and a + drop-down list. The drop-down list is displayed when the user clicks + on a small arrow button to the right of the entry field. + + + The drop-down list is a GtkList widget and can be accessed using the + list member of the GtkCombo. List elements can contain arbitrary + widgets, but if an element is not a plain label, then you must use + the gtk_list_set_item_string() function. This sets the string which + will be placed in the text entry field when the item is selected. + + + By default, the user can step through the items in the list using the + arrow (cursor) keys, though this behaviour can be turned off with + gtk_combo_set_use_arrows(). + + + + Creating a GtkCombo widget with simple text items: + + + Gtk.Combo MakeCombo () { + GLib.List l = new GLib.List (IntPtr.Zero, typeof(string)); + l.Append(Marshal.StringToHGlobalAnsi("String 1")); + l.Append(Marshal.StringToHGlobalAnsi("String 2")); + Gtk.Combo combo = new Gtk.Combo + (new GLib.Type((uint)TypeFundamentals.TypeString)); + combo.PopdownStrings = l; + return combo; + } + + + See for more about GLib.List. + + + Gtk.HBox @@ -39,7 +76,7 @@ - To be added + Convenience function to set all of the items in the popup list. To be added: an object of type 'string []' To be added @@ -55,7 +92,7 @@ - To be added + Sets the string to place in the Gtk.Entry field when a particular list item is selected. This is needed if the list item is not a simple label. To be added: an object of type 'Gtk.Item' To be added: an object of type 'string' To be added @@ -69,7 +106,7 @@ - To be added + Stops the Gtk.Combo widget from showing the popup list when the Gtk.Entry emits the "activate" signal, i.e. when the Return key is pressed. This may be useful if, for example, you want the Return key to close a dialog instead. To be added @@ -107,7 +144,7 @@ - To be added + Creates a new Combo. To be added: an object of type 'Gtk.Combo' To be added @@ -131,7 +168,7 @@ Gtk.Button - To be added + The Button asociated with the Combo. To be added: an object of type 'Gtk.Button' To be added @@ -143,7 +180,7 @@ Gtk.Entry - To be added + The Entry asociated with the Combo. To be added: an object of type 'Gtk.Entry' To be added @@ -158,7 +195,7 @@ - To be added + Property to set all of the items in the popup list. To be added: an object of type 'GLib.List' To be added: an object of type 'GLib.List' To be added @@ -174,7 +211,7 @@ - To be added + Does nothing. ---- To get out ---- To be added: an object of type 'bool' To be added: an object of type 'bool' To be added @@ -190,10 +227,10 @@ - To be added + Specifies if the arrow (cursor) keys can be used to step through the items in the list. To be added: an object of type 'bool' - To be added: an object of type 'bool' - To be added + TRUE if the arrow keys can be used to step through the items in the list. + This is on by default. @@ -222,9 +259,9 @@ - To be added - To be added: an object of type 'bool' - To be added: an object of type 'bool' + Specifies whether the value entered in the text entry field must match one of the values in the list. If this is set then the user will not be able to perform any other action until a valid value has been entered. + TRUE if the value entered must match one of the values in the list. + TRUE if the value entered must match one of the values in the list. To be added @@ -238,9 +275,9 @@ - To be added - To be added: an object of type 'bool' - To be added: an object of type 'bool' + Specifies if an empty field is acceptable. + TRUE if an empty value is considered valid. + TRUE if an empty value is considered valid. To be added @@ -254,9 +291,9 @@ - To be added - To be added: an object of type 'bool' - To be added: an object of type 'bool' + Specifies if the arrow (cursor) keys can be used to step through the items in the list. This is true by default. + TRUE if the arrow keys can be used to step through the items in the list. + TRUE if the arrow keys can be used to step through the items in the list. To be added @@ -270,10 +307,10 @@ - To be added - To be added: an object of type 'bool' - To be added: an object of type 'bool' - To be added + Specifies whether the text entered into the Entry field and the text in the list items is case sensitive. + TRUE if the text in the list items is case sensitive. + TRUE if the text in the list items is case sensitive. + This may be useful, for example, when you have set true ValueInList to limit the values entered, but you are not worried about differences in case. @@ -293,4 +330,4 @@ - \ No newline at end of file +