comparison src/gtkimhtml.h @ 9034:bbb8733c7818

[gaim-migrate @ 9810] SimGuy says Oops. committer: Tailor Script <tailor@pidgin.im>
author Tim Ringenbach <marv@pidgin.im>
date Sun, 23 May 2004 18:38:07 +0000
parents 4ef4d3220f81
children 960bb3bd9ba6
comparison
equal deleted inserted replaced
9033:4ef4d3220f81 9034:bbb8733c7818
406 /** 406 /**
407 * Destroys and frees a GTK IM/HTML scalable horizontal rule. 407 * Destroys and frees a GTK IM/HTML scalable horizontal rule.
408 * 408 *
409 * @param scale The GTK IM/HTML scalable. 409 * @param scale The GTK IM/HTML scalable.
410 */ 410 */
411 void gtk_imhtml_hr_free(GtkIMHtmlScalable scale*); 411 void gtk_imhtml_hr_free(GtkIMHtmlScalable *scale);
412 412
413 /** 413 /**
414 * Rescales a GTK IM/HTML scalable horizontal rule to a given size. 414 * Rescales a GTK IM/HTML scalable horizontal rule to a given size.
415 * 415 *
416 * @param scale The GTK IM/HTML scalable. 416 * @param scale The GTK IM/HTML scalable.
417 * @param width The new width. 417 * @param width The new width.
418 * @param height The new height. 418 * @param height The new height.
419 */ 419 */
420 void gtk_imhtml_hr_scale(GtkIMHtmlScalable scale*, int width, int height); 420 void gtk_imhtml_hr_scale(GtkIMHtmlScalable *scale, int width, int height);
421 421
422 /** 422 /**
423 * Adds a GTK IM/HTML scalable horizontal rule to a given GTK IM/HTML at 423 * Adds a GTK IM/HTML scalable horizontal rule to a given GTK IM/HTML at
424 * a given iter. 424 * a given iter.
425 * 425 *
426 * @param scale The GTK IM/HTML scalable. 426 * @param scale The GTK IM/HTML scalable.
427 * @param imhtml The GTK IM/HTML. 427 * @param imhtml The GTK IM/HTML.
428 * @param iter The GtkTextIter at which to add the scalable. 428 * @param iter The GtkTextIter at which to add the scalable.
429 */ 429 */
430 void gtk_imhtml_hr_add_to(GtkIMHtmlScalable scale*, GtkIMHtml *, GtkTextIter *); 430 void gtk_imhtml_hr_add_to(GtkIMHtmlScalable *scale, GtkIMHtml *, GtkTextIter *);
431 431
432 /** 432 /**
433 * Finds and highlights a given string in a GTK IM/HTML. 433 * Finds and highlights a given string in a GTK IM/HTML.
434 * 434 *
435 * @param imhtml The GTK IM/HTML. 435 * @param imhtml The GTK IM/HTML.