diff options
author | Matthias Clasen <matthiasc@src.gnome.org> | 2002-01-08 00:04:57 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2002-01-08 00:04:57 +0000 |
commit | c1808baa01e7db5e304a857132087e496641726a (patch) | |
tree | 7f7af3dece9f8d380eeab17ce26ad17519c181f8 /gtk/gtkstyle.c | |
parent | 947c91dca741232a76aca65173cabefae9d70855 (diff) | |
download | gtk+-c1808baa01e7db5e304a857132087e496641726a.tar.gz |
Doc typo fix. (#68172)
* gtk/gtksocket.c (gtk_socket_get_id): Doc typo fix. (#68172)
* gtk/gtktreemodel.c (gtk_tree_path_is_descendant): Fix docs.
* gtk/gtktreemodel.c (gtk_tree_model_rows_reordered): Document.
* gtk/gtkwindow.c (gtk_window_remove_accel_group): Fix docs.
* gtk/gtkrc.c (gtk_rc_get_style_by_paths),
gtk/gtkwidget.c (gtk_widget_get_toplevel,
gtk_widget_push_composite_child), gtk/gtkdialog.c
(gtk_dialog_new_with_buttons, gtk_dialog_run): Keep gtk-doc
from messing up the indentation of inline examples.
* gtk/gtkmain.c, gtk/gtkrc.c: Consistently call g_getenv()
instead of getenv().
* gtk/gtktreemodel.c, gtk/gtkaccelgroup.c, gtk/gtkclipboard.c,
gtk/gtkdnd.c, gtk/gtkiconfactory.c, gtk/gtkrc.c,
gtk/gtkstyle.c, gtk/gtkselection.c: Doc fixes.
* gtk/gtkaccelmap.c (gtk_accel_map_add_filter,
gtk_accel_map_foreach_unfiltered, gtk_accel_map_load_scanner):
Document.
* gtk/tmpl/gtksocket.sgml: Mention gtk_socket_get_id()
instead of GTK_WINDOW_XWINDOW(). (#68172)
* gtk/gtk-sections.txt: Move functions which are documented
as "private" or "internal" into Private subsections.
* gtk/tmpl/gtkdnd.sgml, gtk/tmpl/gtkobject.sgml,
gtk/tmpl/gtkrc.sgml, gtk/tmpl/gtktooltips.sgml,
gtk/tmpl/gtkwidget.sgml, gtk/tmpl/gtkclipboard.sgml,
gtk/tmpl/gtkstyle.sgml, gtk/tmpl/gtkselection.sgml,
gtk/tmpl/gtkfeatures.sgml: Minor markup fixes.
* gtk/tmpl/gtksignal.sgml: Add link to GLib signal docs.
* gtk/tmpl/gtkpreview.sgml, gtk/tmpl/gtktext.sgml,
gtk/tmpl/gtktree.sgml: Remove "deprecated" from short desc.
* gtk/tmpl/gtkrc.sgml: Correct names of default RC files.
Diffstat (limited to 'gtk/gtkstyle.c')
-rw-r--r-- | gtk/gtkstyle.c | 62 |
1 files changed, 60 insertions, 2 deletions
diff --git a/gtk/gtkstyle.c b/gtk/gtkstyle.c index 9f5d91bad9..f503e35b07 100644 --- a/gtk/gtkstyle.c +++ b/gtk/gtkstyle.c @@ -822,6 +822,20 @@ gtk_style_lookup_icon_set (GtkStyle *style, return gtk_icon_factory_lookup_default (stock_id); } +/** + * gtk_draw_hline: + * @style: a #GtkStyle + * @window: a #GdkWindow + * @state_type: a state + * @x1: the starting x coordinate + * @x2: the ending x coordinate + * @y: the y coordinate + * + * Draws a horizontal line from (@x1, @y) to (@x2, @y) in @window + * using the given style and state. + * + * This function is deprecated, use gtk_paint_hline() instead. + **/ void gtk_draw_hline (GtkStyle *style, GdkWindow *window, @@ -837,6 +851,20 @@ gtk_draw_hline (GtkStyle *style, } +/** + * gtk_draw_vline: + * @style: a #GtkStyle + * @window: a #GdkWindow + * @state_type: a state + * @y1: the starting y coordinate + * @y2: the ending y coordinate + * @x: the x coordinate + * + * Draws a vertical line from (@x, @y1) to (@x, @y2) in @window + * using the given style and state. + * + * This function is deprecated, use gtk_paint_vline() instead. + **/ void gtk_draw_vline (GtkStyle *style, GdkWindow *window, @@ -4666,6 +4694,22 @@ hls_to_rgb (gdouble *h, } } + +/** + * gtk_paint_hline: + * @style: a #GtkStyle + * @window: a #GdkWindow + * @state_type: a state + * @area: rectangle to which the output is clipped + * @widget: + * @detail: + * @x1: the starting x coordinate + * @x2: the ending x coordinate + * @y: the y coordinate + * + * Draws a horizontal line from (@x1, @y) to (@x2, @y) in @window + * using the given style and state. + **/ void gtk_paint_hline (GtkStyle *style, GdkWindow *window, @@ -4683,6 +4727,20 @@ gtk_paint_hline (GtkStyle *style, GTK_STYLE_GET_CLASS (style)->draw_hline (style, window, state_type, area, widget, detail, x1, x2, y); } +/** + * gtk_paint_vline: + * @style: a #GtkStyle + * @window: a #GdkWindow + * @state_type: a state + * @area: rectangle to which the output is clipped + * @widget: + * @detail: + * @y1: the starting y coordinate + * @y2: the ending y coordinate + * @x: the x coordinate + * + * Draws a vertical line from (@x, @y1) to (@x, @y1) in @window + * using the given style and state. void gtk_paint_vline (GtkStyle *style, GdkWindow *window, @@ -5101,9 +5159,9 @@ gtk_border_free (GtkBorder *border) * @style: a #GtkStyle * * Gets the #GdkFont to use for the given style. This is - * meant only as a replacement for direct access to style->font + * meant only as a replacement for direct access to @style->font * and should not be used in new code. New code should - * use style->font_desc instead. + * use @style->font_desc instead. * * Return value: the #GdkFont for the style. This font is owned * by the style; if you want to keep around a copy, you must |