diff --git a/doc/ChangeLog b/doc/ChangeLog index e715cc33b..7e6a62004 100644 --- a/doc/ChangeLog +++ b/doc/ChangeLog @@ -1,6 +1,9 @@ 2005-05-04 John Luke * en/Gtk/AboutDialog.xml: doc + * en/Gtk/CellRendererCombo.xml: doc + * en/Gtk/CellRendererProgress.xml: doc + * en/Gtk/IconView.xml: doc 2005-05-04 Dan Winship diff --git a/doc/en/Gtk/CellRendererCombo.xml b/doc/en/Gtk/CellRendererCombo.xml index f5d1f08b9..a77a70a2d 100644 --- a/doc/en/Gtk/CellRendererCombo.xml +++ b/doc/en/Gtk/CellRendererCombo.xml @@ -9,8 +9,11 @@ Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. - To be added - To be added + Renders a combobox in a cell + + renders text in a cell like from which it is derived. But while offers a simple entry to edit the text, offers a or widget to edit the text. The values to display in the combo box are taken from the tree model specified in the model property. + +The combo cell renderer takes care of adding a text cell renderer to the combo box and sets it to display the column specified by its text-column property. Further cell renderers can be added in a handler for the editing-started signal. Gtk.CellRendererText @@ -72,9 +75,9 @@ - To be added + Default constructor a - To be added + @@ -98,9 +101,14 @@ - To be added + Specifies the model column which holds the possible values for the combo box. a - To be added + + + this refers to the model specified in the model property, not the model backing the tree view to which this cell renderer is attached. + + + automatically adds a text cell renderer for this column to its combo box. @@ -111,9 +119,9 @@ - To be added + Holds a tree model containing the possible values for the combo box. a - To be added + Use the property to specify the column holding the values. @@ -124,9 +132,9 @@ - To be added + Whether to use an entry. a - To be added + If , the cell renderer will include an entry and allow to enter values other than the ones in the popup list. diff --git a/doc/en/Gtk/CellRendererProgress.xml b/doc/en/Gtk/CellRendererProgress.xml index ca690ce1f..c8d93aeb5 100644 --- a/doc/en/Gtk/CellRendererProgress.xml +++ b/doc/en/Gtk/CellRendererProgress.xml @@ -9,8 +9,8 @@ Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. - To be added - To be added + Renders numbers as progress bars + Gtk.CellRenderer @@ -72,9 +72,9 @@ - To be added + Default constructor a - To be added + @@ -98,9 +98,9 @@ - To be added + Determines the label which will be drawn over the progress bar. a - To be added + Setting this property to causes the default label to be displayed. Setting this property to an empty string causes no label to be displayed. @@ -111,9 +111,9 @@ - To be added + Determines the percentage to which the progress bar will be "filled in". a - To be added + Allowed values are between 0 and 100. diff --git a/doc/en/Gtk/IconView.xml b/doc/en/Gtk/IconView.xml index 8a7ef389d..35cc251e6 100644 --- a/doc/en/Gtk/IconView.xml +++ b/doc/en/Gtk/IconView.xml @@ -9,8 +9,9 @@ Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. - To be added - To be added + A widget which displays a list of icons in a grid + + provides an alternative view on a list model. It displays the model as a grid of icons with labels. Like , it allows to select one or multiple items (depending on the selection mode, see ). In addition to selection with the arrow keys, supports rubberband selection, which is controlled by dragging the pointer. Gtk.Container @@ -158,8 +159,8 @@ - To be added - To be added + Unselects all the icons. + @@ -172,9 +173,9 @@ - To be added + Calls a function for each selected icon. a - To be added + Note that the model or selection cannot be modified from within this function. @@ -187,9 +188,9 @@ - To be added + Unselects the row at . a - To be added + @@ -200,8 +201,8 @@ - To be added - To be added + Selects all the icons. + The IconView must has its selection mode set to . @@ -214,10 +215,10 @@ - To be added + Returns if the icon pointed to by is currently selected. a a - To be added + If does not point to a valid location, is returned. @@ -248,9 +249,9 @@ - To be added + Activates the item determined by . a - To be added + @@ -263,9 +264,9 @@ - To be added + Selects the row at . a - To be added + @@ -302,9 +303,9 @@ - To be added + Default constructor a - To be added + @@ -315,10 +316,10 @@ - To be added + Create a new IconView with a model. a a - To be added + @@ -342,9 +343,9 @@ - To be added + Specifies the selection mode of icon view. a - To be added + If the mode is , rubberband selection is enabled, for the other modes, only keyboard selection is possible. @@ -355,9 +356,9 @@ - To be added + The columns property contains the number of the columns in which the items should be displayed. a - To be added + If it is -1, the number of columns will be chosen automatically to fill the available area. @@ -368,9 +369,9 @@ - To be added + Space which is inserted at the edges of the icon view. a - To be added + Default value is 6. @@ -381,9 +382,11 @@ - To be added + How the text and icon of each item are positioned relative to each other. + + a - To be added + Default value is @@ -394,9 +397,9 @@ - To be added + The width used for each item. a - To be added + @@ -407,9 +410,9 @@ - To be added + Contains the number of the model column containing the texts which are displayed. a - To be added + The text column must be of type . If this property and the MarkupColumn property are both set to -1, no text is displayed. @@ -420,7 +423,7 @@ - To be added + Space which is inserted between cells of an item. a To be added @@ -433,9 +436,9 @@ - To be added + Contains the number of the model column containing the pixbufs which are displayed a - To be added + The pixbuf column must be of type . Setting this property to -1 turns off the display of pixbufs. @@ -446,9 +449,9 @@ - To be added + Space which is inserted between grid rows. a - To be added + Default value is 6. @@ -459,9 +462,9 @@ - To be added + Space which is inserted between grid column. a - To be added + Default value is 6. @@ -472,9 +475,9 @@ - To be added + Contains the number of the model column containing markup information to be displayed. a - To be added + The markup column must be of type . If this property and the TextColumn property are both set to column numbers, it overrides the text column. If both are set to -1, no texts are displayed. @@ -485,9 +488,9 @@ - To be added + The model for the icon view. a - To be added + @@ -498,9 +501,9 @@ - To be added + Creates a list of paths of all selected items. a - To be added + @@ -511,7 +514,7 @@ - To be added + Emitted when the current selection changes. To be added @@ -523,8 +526,8 @@ - To be added - To be added + Emitted when UnselectAll () is called. + @@ -535,8 +538,8 @@ - To be added - To be added + Emitted when an item is activated. + @@ -547,8 +550,8 @@ - To be added - To be added + Emitted when SelectAll () is called. + @@ -560,7 +563,7 @@ To be added - To be added + @@ -572,7 +575,7 @@ To be added - To be added + @@ -596,7 +599,7 @@ To be added - To be added +