Mon, 30 Apr 2001 13:12:42 +0000
[gaim-migrate @ 1790]
woo. more preferences redesigns. also gtk_imhtml_clear and gaim_setup_imhtml. this is knee-toe.
| 1428 | 1 | /* |
| 2 | * GtkIMHtml | |
| 3 | * | |
| 4 | * Copyright (C) 2000, Eric Warmenhoven <warmenhoven@yahoo.com> | |
| 5 | * | |
| 6 | * This program is free software; you can redistribute it and/or modify | |
| 7 | * under the terms of the GNU General Public License as published by | |
| 8 | * the Free Software Foundation; either version 2 of the License, or | |
| 9 | * (at your option) any later version. | |
| 10 | * | |
| 11 | * This program is distributed in the hope that it will be useful, | |
| 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 14 | * GNU General Public License for more details. | |
| 15 | * | |
| 16 | * You should have received a copy of the GNU General Public License | |
| 17 | * along with this program; if not, write to the Free Software | |
| 18 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
| 19 | * | |
| 20 | */ | |
| 21 | ||
| 22 | #ifndef __GTK_IMHTML_H | |
| 23 | #define __GTK_IMHTML_H | |
| 24 | ||
| 25 | #include <gdk/gdk.h> | |
| 26 | #include <gtk/gtklayout.h> | |
| 27 | ||
| 28 | #ifdef __cplusplus | |
| 29 | extern "C" { | |
| 30 | #endif | |
| 31 | ||
| 32 | #define GTK_TYPE_IMHTML (gtk_imhtml_get_type ()) | |
| 33 | #define GTK_IMHTML(obj) (GTK_CHECK_CAST ((obj), GTK_TYPE_IMHTML, GtkIMHtml)) | |
| 34 | #define GTK_IMHTML_CLASS(klass) (GTK_CHECK_CLASS_CAST ((klass), GTK_TYPE_IMHTML, GtkIMHtmlClass)) | |
| 35 | #define GTK_IS_IMHTML(obj) (GTK_CHECK_TYPE ((obj), GTK_TYPE_IMHTML)) | |
| 36 | #define GTK_IS_IMHTML_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((klass), GTK_TYPE_IMHTML)) | |
| 37 | ||
| 38 | typedef gchar** (*GtkIMHtmlImage) (gchar *url); | |
| 39 | ||
| 40 | typedef struct _GtkIMHtml GtkIMHtml; | |
| 41 | typedef struct _GtkIMHtmlClass GtkIMHtmlClass; | |
| 42 | ||
| 43 | struct _GtkIMHtml { | |
| 44 | GtkLayout layout; | |
| 45 | ||
| 46 | GdkFont *default_font; | |
| 47 | GdkColor *default_fg_color; | |
|
1460
c63c0e2b00c1
[gaim-migrate @ 1470]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
1428
diff
changeset
|
48 | GdkColor *default_bg_color; |
| 1428 | 49 | |
| 50 | GdkCursor *hand_cursor; | |
| 51 | GdkCursor *arrow_cursor; | |
| 52 | ||
| 53 | GList *bits; | |
| 54 | GList *urls; | |
|
1574
155ae4e33c31
[gaim-migrate @ 1584]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
1519
diff
changeset
|
55 | struct _GtkIMHtmlBit *tip_bit; |
|
155ae4e33c31
[gaim-migrate @ 1584]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
1519
diff
changeset
|
56 | GtkWidget *tip_window; |
|
155ae4e33c31
[gaim-migrate @ 1584]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
1519
diff
changeset
|
57 | guint tip_timer; |
| 1428 | 58 | |
| 59 | guint sel_startx, sel_starty; | |
| 60 | guint sel_endx, sel_endy; | |
| 61 | gboolean selection; | |
| 62 | GString *selected_text; | |
|
1515
89a3d8a63734
[gaim-migrate @ 1525]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
1460
diff
changeset
|
63 | struct line_info *sel_endchunk; |
| 1428 | 64 | guint scroll_timer; |
| 65 | ||
| 66 | guint x, y; | |
| 67 | guint xsize; | |
| 68 | guint llheight; | |
| 69 | guint llascent; | |
| 70 | GList *line; | |
| 71 | ||
| 72 | GtkIMHtmlImage img; | |
| 73 | ||
| 74 | gboolean smileys; | |
| 75 | gboolean comments; | |
| 76 | ||
| 77 | GHashTable *smiley_hash; | |
|
1519
bbb72e250233
[gaim-migrate @ 1529]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
1515
diff
changeset
|
78 | GString *smiley_start; |
| 1428 | 79 | gint smin, smax; |
| 80 | }; | |
| 81 | ||
| 82 | struct _GtkIMHtmlClass { | |
| 83 | GtkLayoutClass parent_class; | |
| 84 | ||
| 85 | void (*url_clicked) (GtkIMHtml *, const gchar *); | |
| 86 | }; | |
| 87 | ||
| 88 | typedef enum | |
| 89 | { | |
| 90 | GTK_IMHTML_NO_COLOURS = 1 << 0, | |
| 91 | GTK_IMHTML_NO_FONTS = 1 << 1, | |
| 92 | GTK_IMHTML_NO_COMMENTS = 1 << 2, | |
| 93 | GTK_IMHTML_NO_TITLE = 1 << 3, | |
| 94 | GTK_IMHTML_NO_NEWLINE = 1 << 4, | |
| 95 | GTK_IMHTML_NO_SIZES = 1 << 5, | |
| 96 | GTK_IMHTML_NO_SCROLL = 1 << 6, | |
| 97 | GTK_IMHTML_RETURN_LOG = 1 << 7 | |
| 98 | } GtkIMHtmlOptions; | |
| 99 | ||
| 100 | GtkType gtk_imhtml_get_type (void); | |
| 101 | GtkWidget* gtk_imhtml_new (GtkAdjustment *hadj, | |
| 102 | GtkAdjustment *vadj); | |
| 103 | ||
| 104 | void gtk_imhtml_set_adjustments (GtkIMHtml *imhtml, | |
| 105 | GtkAdjustment *hadj, | |
| 106 | GtkAdjustment *vadj); | |
| 107 | ||
| 108 | void gtk_imhtml_set_defaults (GtkIMHtml *imhtml, | |
| 109 | GdkFont *font, | |
|
1460
c63c0e2b00c1
[gaim-migrate @ 1470]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
1428
diff
changeset
|
110 | GdkColor *fg_color, |
|
c63c0e2b00c1
[gaim-migrate @ 1470]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
1428
diff
changeset
|
111 | GdkColor *bg_color); |
| 1428 | 112 | |
| 113 | void gtk_imhtml_set_img_handler (GtkIMHtml *imhtml, | |
| 114 | GtkIMHtmlImage handler); | |
| 115 | ||
| 116 | void gtk_imhtml_associate_smiley (GtkIMHtml *imhtml, | |
| 117 | gchar *text, | |
| 118 | gchar **xpm); | |
| 119 | ||
| 120 | void gtk_imhtml_show_smileys (GtkIMHtml *imhtml, | |
| 121 | gboolean show); | |
| 122 | ||
| 123 | void gtk_imhtml_show_comments (GtkIMHtml *imhtml, | |
| 124 | gboolean show); | |
| 125 | ||
| 126 | GString* gtk_imhtml_append_text (GtkIMHtml *imhtml, | |
| 127 | const gchar *text, | |
| 128 | GtkIMHtmlOptions options); | |
| 129 | ||
|
1780
431333222954
[gaim-migrate @ 1790]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
1574
diff
changeset
|
130 | void gtk_imhtml_clear (GtkIMHtml *imhtml); |
|
431333222954
[gaim-migrate @ 1790]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
1574
diff
changeset
|
131 | |
| 1428 | 132 | #ifdef __cplusplus |
| 133 | } | |
| 134 | #endif | |
| 135 | ||
| 136 | #endif |