comparison src/gtkimhtml.h @ 11267:477e5cca8287

[gaim-migrate @ 13449] Combining the Message Text tab in the preferences into the Conversation tab. Along the way, I found and fixed a number of bugs relating to the formatting toolbar, etc. This also includes part of patch #1240388 from Sadrul. I'm still seeing a couple bugs with the backcolor stuff, but I confirmed they were there before this change. Hopefully I haven't introduced any new bugs. Holler at me if I did. committer: Tailor Script <tailor@pidgin.im>
author Richard Laager <rlaager@wiktel.com>
date Mon, 15 Aug 2005 04:15:22 +0000
parents 409d6a11da51
children 1cbe76d30e81
comparison
equal deleted inserted replaced
11266:a0e769ca84cf 11267:477e5cca8287
577 577
578 /** 578 /**
579 * Toggles bold at the cursor location or selection in a GTK+ IM/HTML. 579 * Toggles bold at the cursor location or selection in a GTK+ IM/HTML.
580 * 580 *
581 * @param imhtml The GTK+ IM/HTML. 581 * @param imhtml The GTK+ IM/HTML.
582 * 582 */
583 * @return @c TRUE if bold was turned on, or @c FALSE if it was turned off. 583 void gtk_imhtml_toggle_bold(GtkIMHtml *imhtml);
584 */
585 gboolean gtk_imhtml_toggle_bold(GtkIMHtml *imhtml);
586 584
587 /** 585 /**
588 * Toggles italic at the cursor location or selection in a GTK+ IM/HTML. 586 * Toggles italic at the cursor location or selection in a GTK+ IM/HTML.
589 * 587 *
590 * @param imhtml The GTK+ IM/HTML. 588 * @param imhtml The GTK+ IM/HTML.
591 * 589 */
592 * @return @c TRUE if italic was turned on, or @c FALSE if it was turned off. 590 void gtk_imhtml_toggle_italic(GtkIMHtml *imhtml);
593 */
594 gboolean gtk_imhtml_toggle_italic(GtkIMHtml *imhtml);
595 591
596 /** 592 /**
597 * Toggles underline at the cursor location or selection in a GTK+ IM/HTML. 593 * Toggles underline at the cursor location or selection in a GTK+ IM/HTML.
598 * 594 *
599 * @param imhtml The GTK+ IM/HTML. 595 * @param imhtml The GTK+ IM/HTML.
600 * 596 */
601 * @return @c TRUE if underline was turned on, or @c FALSE if it was turned off. 597 void gtk_imhtml_toggle_underline(GtkIMHtml *imhtml);
602 */
603 gboolean gtk_imhtml_toggle_underline(GtkIMHtml *imhtml);
604 598
605 /** 599 /**
606 * Toggles strikethrough at the cursor location or selection in a GTK+ IM/HTML. 600 * Toggles strikethrough at the cursor location or selection in a GTK+ IM/HTML.
607 * 601 *
608 * @param imhtml The GTK+ IM/HTML. 602 * @param imhtml The GTK+ IM/HTML.
609 * 603 */
610 * @return @c TRUE if strikethrough was turned on, or @c FALSE if it was turned off. 604 void gtk_imhtml_toggle_strike(GtkIMHtml *imhtml);
611 */
612 gboolean gtk_imhtml_toggle_strike(GtkIMHtml *imhtml);
613 605
614 /** 606 /**
615 * Toggles a foreground color at the current location or selection in a GTK 607 * Toggles a foreground color at the current location or selection in a GTK
616 * IM/HTML. 608 * IM/HTML.
617 * 609 *