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
eee5ae75
Commit
eee5ae75
authored
Apr 25, 2006
by
Matthias Clasen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
additions
parent
92723e10
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
64 additions
and
33 deletions
+64
-33
docs/reference/gtk/tmpl/gtkfontbutton.sgml
docs/reference/gtk/tmpl/gtkfontbutton.sgml
+2
-1
docs/reference/gtk/tmpl/gtkiconview.sgml
docs/reference/gtk/tmpl/gtkiconview.sgml
+8
-10
docs/reference/gtk/tmpl/gtkimage.sgml
docs/reference/gtk/tmpl/gtkimage.sgml
+2
-2
docs/reference/gtk/tmpl/gtktreeview.sgml
docs/reference/gtk/tmpl/gtktreeview.sgml
+52
-20
No files found.
docs/reference/gtk/tmpl/gtkfontbutton.sgml
View file @
eee5ae75
...
@@ -20,7 +20,8 @@ dialog to change the font. It is suitable widget for selecting a font in a prefe
...
@@ -20,7 +20,8 @@ dialog to change the font. It is suitable widget for selecting a font in a prefe
<!-- ##### STRUCT GtkFontButton ##### -->
<!-- ##### STRUCT GtkFontButton ##### -->
<para>
<para>
The GtkFontButton struct has only private members and should not be used
directly.
</para>
</para>
...
...
docs/reference/gtk/tmpl/gtkiconview.sgml
View file @
eee5ae75
...
@@ -180,11 +180,9 @@ A function used by gtk_icon_view_selected_foreach() to map all
...
@@ -180,11 +180,9 @@ A function used by gtk_icon_view_selected_foreach() to map all
selected rows. It will be called on every selected row in the view.
selected rows. It will be called on every selected row in the view.
</para>
</para>
@icon_view:
@icon_view:
a #GtkIconView
@path: The #GtkTreePath of a selected row
@path: The #GtkTreePath of a selected row
@data: user data
@data: user data
<!-- # Unused Parameters # -->
@model: The #GtkTreeModel being viewed
<!-- ##### FUNCTION gtk_icon_view_new ##### -->
<!-- ##### FUNCTION gtk_icon_view_new ##### -->
...
@@ -563,15 +561,15 @@ selected rows. It will be called on every selected row in the view.
...
@@ -563,15 +561,15 @@ selected rows. It will be called on every selected row in the view.
<!-- ##### ENUM GtkIconViewDropPosition ##### -->
<!-- ##### ENUM GtkIconViewDropPosition ##### -->
<para>
<para>
An enum for determining where a dropped item goes.
</para>
</para>
@GTK_ICON_VIEW_NO_DROP:
@GTK_ICON_VIEW_NO_DROP:
no drop possible
@GTK_ICON_VIEW_DROP_INTO:
@GTK_ICON_VIEW_DROP_INTO:
dropped item replaces the item
@GTK_ICON_VIEW_DROP_LEFT:
@GTK_ICON_VIEW_DROP_LEFT:
droppped item is inserted to the left
@GTK_ICON_VIEW_DROP_RIGHT:
@GTK_ICON_VIEW_DROP_RIGHT:
dropped item is inserted to the right
@GTK_ICON_VIEW_DROP_ABOVE:
@GTK_ICON_VIEW_DROP_ABOVE:
dropped item is inserted above
@GTK_ICON_VIEW_DROP_BELOW:
@GTK_ICON_VIEW_DROP_BELOW:
dropped item is inserted below
<!-- ##### FUNCTION gtk_icon_view_enable_model_drag_source ##### -->
<!-- ##### FUNCTION gtk_icon_view_enable_model_drag_source ##### -->
<para>
<para>
...
...
docs/reference/gtk/tmpl/gtkimage.sgml
View file @
eee5ae75
...
@@ -189,7 +189,8 @@ functions), but they will all return %NULL values.
...
@@ -189,7 +189,8 @@ functions), but they will all return %NULL values.
@GTK_IMAGE_STOCK: the widget contains a stock icon name (see <xref linkend="gtk-Stock-Items"/>)
@GTK_IMAGE_STOCK: the widget contains a stock icon name (see <xref linkend="gtk-Stock-Items"/>)
@GTK_IMAGE_ICON_SET: the widget contains a #GtkIconSet
@GTK_IMAGE_ICON_SET: the widget contains a #GtkIconSet
@GTK_IMAGE_ANIMATION: the widget contains a #GdkPixbufAnimation
@GTK_IMAGE_ANIMATION: the widget contains a #GdkPixbufAnimation
@GTK_IMAGE_ICON_NAME:
@GTK_IMAGE_ICON_NAME: the widget contains a named icon.
This image type was added in GTK+ 2.6
<!-- ##### FUNCTION gtk_image_get_icon_set ##### -->
<!-- ##### FUNCTION gtk_image_get_icon_set ##### -->
<para>
<para>
...
@@ -437,7 +438,6 @@ functions), but they will all return %NULL values.
...
@@ -437,7 +438,6 @@ functions), but they will all return %NULL values.
@Returns: the #GtkImage
@Returns: the #GtkImage
<!-- # Unused Parameters # -->
<!-- # Unused Parameters # -->
@val:
@mask: a #GdkBitmap that indicates which parts of the image should be transparent.
@mask: a #GdkBitmap that indicates which parts of the image should be transparent.
...
...
docs/reference/gtk/tmpl/gtktreeview.sgml
View file @
eee5ae75
...
@@ -275,10 +275,10 @@ they work together.
...
@@ -275,10 +275,10 @@ they work together.
An enum for determining where a dropped row goes.
An enum for determining where a dropped row goes.
</para>
</para>
@GTK_TREE_VIEW_DROP_BEFORE:
@GTK_TREE_VIEW_DROP_BEFORE:
dropped row is inserted before
@GTK_TREE_VIEW_DROP_AFTER:
@GTK_TREE_VIEW_DROP_AFTER:
dropped row is inserted after
@GTK_TREE_VIEW_DROP_INTO_OR_BEFORE:
@GTK_TREE_VIEW_DROP_INTO_OR_BEFORE:
dropped row becomes a child or is inserted before
@GTK_TREE_VIEW_DROP_INTO_OR_AFTER:
@GTK_TREE_VIEW_DROP_INTO_OR_AFTER:
dropped row becomes a child or is inserted after
<!-- ##### STRUCT GtkTreeViewPrivate ##### -->
<!-- ##### STRUCT GtkTreeViewPrivate ##### -->
<para>
<para>
...
@@ -367,8 +367,6 @@ has some similarity to strcmp() returning 0 for equal strings.
...
@@ -367,8 +367,6 @@ has some similarity to strcmp() returning 0 for equal strings.
@tree_view:
@tree_view:
@model:
@model:
<!-- # Unused Parameters # -->
@tree_model:
<!-- ##### FUNCTION gtk_tree_view_get_selection ##### -->
<!-- ##### FUNCTION gtk_tree_view_get_selection ##### -->
...
@@ -387,8 +385,6 @@ has some similarity to strcmp() returning 0 for equal strings.
...
@@ -387,8 +385,6 @@ has some similarity to strcmp() returning 0 for equal strings.
@tree_view:
@tree_view:
@Returns:
@Returns:
<!-- # Unused Parameters # -->
@layout:
<!-- ##### FUNCTION gtk_tree_view_set_hadjustment ##### -->
<!-- ##### FUNCTION gtk_tree_view_set_hadjustment ##### -->
...
@@ -398,8 +394,6 @@ has some similarity to strcmp() returning 0 for equal strings.
...
@@ -398,8 +394,6 @@ has some similarity to strcmp() returning 0 for equal strings.
@tree_view:
@tree_view:
@adjustment:
@adjustment:
<!-- # Unused Parameters # -->
@layout:
<!-- ##### FUNCTION gtk_tree_view_get_vadjustment ##### -->
<!-- ##### FUNCTION gtk_tree_view_get_vadjustment ##### -->
...
@@ -409,8 +403,6 @@ has some similarity to strcmp() returning 0 for equal strings.
...
@@ -409,8 +403,6 @@ has some similarity to strcmp() returning 0 for equal strings.
@tree_view:
@tree_view:
@Returns:
@Returns:
<!-- # Unused Parameters # -->
@layout:
<!-- ##### FUNCTION gtk_tree_view_set_vadjustment ##### -->
<!-- ##### FUNCTION gtk_tree_view_set_vadjustment ##### -->
...
@@ -420,8 +412,6 @@ has some similarity to strcmp() returning 0 for equal strings.
...
@@ -420,8 +412,6 @@ has some similarity to strcmp() returning 0 for equal strings.
@tree_view:
@tree_view:
@adjustment:
@adjustment:
<!-- # Unused Parameters # -->
@layout:
<!-- ##### FUNCTION gtk_tree_view_get_headers_visible ##### -->
<!-- ##### FUNCTION gtk_tree_view_get_headers_visible ##### -->
...
@@ -466,8 +456,6 @@ has some similarity to strcmp() returning 0 for equal strings.
...
@@ -466,8 +456,6 @@ has some similarity to strcmp() returning 0 for equal strings.
@tree_view:
@tree_view:
@setting:
@setting:
<!-- # Unused Parameters # -->
@active:
<!-- ##### FUNCTION gtk_tree_view_set_rules_hint ##### -->
<!-- ##### FUNCTION gtk_tree_view_set_rules_hint ##### -->
...
@@ -768,8 +756,6 @@ has some similarity to strcmp() returning 0 for equal strings.
...
@@ -768,8 +756,6 @@ has some similarity to strcmp() returning 0 for equal strings.
@cell_x:
@cell_x:
@cell_y:
@cell_y:
@Returns:
@Returns:
<!-- # Unused Parameters # -->
@window:
<!-- ##### FUNCTION gtk_tree_view_get_cell_area ##### -->
<!-- ##### FUNCTION gtk_tree_view_get_cell_area ##### -->
...
@@ -936,8 +922,6 @@ has some similarity to strcmp() returning 0 for equal strings.
...
@@ -936,8 +922,6 @@ has some similarity to strcmp() returning 0 for equal strings.
@tree_view:
@tree_view:
@enable_search:
@enable_search:
<!-- # Unused Parameters # -->
@use_search:
<!-- ##### FUNCTION gtk_tree_view_get_enable_search ##### -->
<!-- ##### FUNCTION gtk_tree_view_get_enable_search ##### -->
...
@@ -987,6 +971,54 @@ has some similarity to strcmp() returning 0 for equal strings.
...
@@ -987,6 +971,54 @@ has some similarity to strcmp() returning 0 for equal strings.
@search_destroy:
@search_destroy:
<!-- ##### FUNCTION gtk_tree_view_get_search_entry ##### -->
<para>
</para>
@tree_view:
@Returns:
<!-- ##### FUNCTION gtk_tree_view_set_search_entry ##### -->
<para>
</para>
@tree_view:
@entry:
<!-- ##### USER_FUNCTION GtkTreeViewSearchPositionFunc ##### -->
<para>
</para>
@tree_view:
@search_dialog:
@user_data:
<!-- ##### FUNCTION gtk_tree_view_get_search_position_func ##### -->
<para>
</para>
@tree_view:
@Returns:
<!-- ##### FUNCTION gtk_tree_view_set_search_position_func ##### -->
<para>
</para>
@tree_view:
@func:
@data:
@destroy:
<!-- ##### FUNCTION gtk_tree_view_get_fixed_height_mode ##### -->
<!-- ##### FUNCTION gtk_tree_view_get_fixed_height_mode ##### -->
<para>
<para>
...
...
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