Mercurial > audlegacy-plugins
annotate src/skins/ui_skinned_textbox.c @ 3024:965c0df4ae84
Patch from John Lindgren to skip corrupted frames, from Debian bug #514674.
author | Tony Vroon <chainsaw@gentoo.org> |
---|---|
date | Thu, 09 Apr 2009 23:58:13 +0100 |
parents | 963796db51ea |
children | 6baa6eaf8290 |
rev | line source |
---|---|
2586 | 1 /* |
2 * Audacious - a cross-platform multimedia player | |
3 * Copyright (c) 2007 Tomasz Moń | |
4 * | |
5 * Based on: | |
6 * BMP - Cross-platform multimedia player | |
7 * Copyright (C) 2003-2004 BMP development team. | |
8 * XMMS: | |
9 * Copyright (C) 1998-2003 XMMS development team. | |
10 * | |
11 * This program is free software; you can redistribute it and/or modify | |
12 * it under the terms of the GNU General Public License as published by | |
13 * the Free Software Foundation; under version 3 of the License. | |
14 * | |
15 * This program is distributed in the hope that it will be useful, | |
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 * GNU General Public License for more details. | |
19 * | |
20 * You should have received a copy of the GNU General Public License | |
21 * along with this program. If not, see <http://www.gnu.org/licenses>. | |
22 * | |
23 * The Audacious team does not consider modular code linking to | |
24 * Audacious or using our public API to be a derived work. | |
25 */ | |
26 | |
27 #include "ui_skinned_textbox.h" | |
28 #include "skins_cfg.h" | |
29 #include "plugin.h" | |
30 #include <string.h> | |
31 | |
32 #include "util.h" | |
33 | |
34 #define UI_SKINNED_TEXTBOX_GET_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE ((o), ui_skinned_textbox_get_type(), UiSkinnedTextboxPrivate)) | |
35 typedef struct _UiSkinnedTextboxPrivate UiSkinnedTextboxPrivate; | |
36 | |
37 #define TEXTBOX_SCROLL_SMOOTH_TIMEOUT 30 | |
38 #define TEXTBOX_SCROLL_WAIT 80 | |
39 | |
40 enum { | |
41 CLICKED, | |
42 DOUBLE_CLICKED, | |
43 RIGHT_CLICKED, | |
44 DOUBLED, | |
45 LAST_SIGNAL | |
46 }; | |
47 | |
48 struct _UiSkinnedTextboxPrivate { | |
49 SkinPixmapId skin_index; | |
50 gboolean scaled; | |
51 gboolean scroll_back; | |
52 gint nominal_y, nominal_height; | |
53 gint scroll_timeout; | |
54 gint font_ascent, font_descent; | |
55 PangoFontDescription *font; | |
56 gchar *fontname; | |
57 gchar *pixbuf_text; | |
58 gint skin_id; | |
59 gint drag_x, drag_off, offset; | |
60 gboolean is_scrollable, is_dragging; | |
61 gint pixbuf_width; | |
62 GdkPixbuf *pixbuf; | |
63 gboolean scroll_allowed, scroll_enabled; | |
64 gint scroll_dummy; | |
65 gint move_x, move_y; | |
66 }; | |
67 | |
68 static void ui_skinned_textbox_class_init (UiSkinnedTextboxClass *klass); | |
69 static void ui_skinned_textbox_init (UiSkinnedTextbox *textbox); | |
70 static void ui_skinned_textbox_destroy (GtkObject *object); | |
71 static void ui_skinned_textbox_realize (GtkWidget *widget); | |
2860
2e081c64a529
transform UiSkinnedTextbox into windowless widget
Tomasz Mon <desowin@gmail.com>
parents:
2836
diff
changeset
|
72 static void ui_skinned_textbox_unrealize (GtkWidget *widget); |
2e081c64a529
transform UiSkinnedTextbox into windowless widget
Tomasz Mon <desowin@gmail.com>
parents:
2836
diff
changeset
|
73 static void ui_skinned_textbox_map (GtkWidget *widget); |
2e081c64a529
transform UiSkinnedTextbox into windowless widget
Tomasz Mon <desowin@gmail.com>
parents:
2836
diff
changeset
|
74 static void ui_skinned_textbox_unmap (GtkWidget *widget); |
2586 | 75 static void ui_skinned_textbox_size_request (GtkWidget *widget, GtkRequisition *requisition); |
76 static void ui_skinned_textbox_size_allocate (GtkWidget *widget, GtkAllocation *allocation); | |
77 static gboolean ui_skinned_textbox_expose (GtkWidget *widget, GdkEventExpose *event); | |
78 static gboolean ui_skinned_textbox_button_press (GtkWidget *widget, GdkEventButton *event); | |
79 static gboolean ui_skinned_textbox_button_release (GtkWidget *widget, GdkEventButton *event); | |
80 static gboolean ui_skinned_textbox_motion_notify (GtkWidget *widget, GdkEventMotion *event); | |
81 static void ui_skinned_textbox_toggle_scaled (UiSkinnedTextbox *textbox); | |
82 static gboolean ui_skinned_textbox_should_scroll (UiSkinnedTextbox *textbox); | |
83 static void textbox_generate_xfont_pixmap (UiSkinnedTextbox *textbox, const gchar *pixmaptext); | |
84 static gboolean textbox_scroll (gpointer data); | |
85 static void textbox_generate_pixmap (UiSkinnedTextbox *textbox); | |
86 static void textbox_handle_special_char (gchar *c, gint * x, gint * y); | |
87 | |
88 static GtkWidgetClass *parent_class = NULL; | |
89 static guint textbox_signals[LAST_SIGNAL] = { 0 }; | |
90 | |
91 GType ui_skinned_textbox_get_type() { | |
92 static GType textbox_type = 0; | |
93 if (!textbox_type) { | |
94 static const GTypeInfo textbox_info = { | |
95 sizeof (UiSkinnedTextboxClass), | |
96 NULL, | |
97 NULL, | |
98 (GClassInitFunc) ui_skinned_textbox_class_init, | |
99 NULL, | |
100 NULL, | |
101 sizeof (UiSkinnedTextbox), | |
102 0, | |
103 (GInstanceInitFunc) ui_skinned_textbox_init, | |
104 }; | |
2590 | 105 textbox_type = g_type_register_static (GTK_TYPE_WIDGET, "UiSkinnedTextbox", &textbox_info, 0); |
2586 | 106 } |
107 | |
108 return textbox_type; | |
109 } | |
110 | |
111 static void ui_skinned_textbox_class_init(UiSkinnedTextboxClass *klass) { | |
112 GObjectClass *gobject_class; | |
113 GtkObjectClass *object_class; | |
114 GtkWidgetClass *widget_class; | |
115 | |
116 gobject_class = G_OBJECT_CLASS(klass); | |
117 object_class = (GtkObjectClass*) klass; | |
118 widget_class = (GtkWidgetClass*) klass; | |
119 parent_class = gtk_type_class (gtk_widget_get_type ()); | |
120 | |
121 object_class->destroy = ui_skinned_textbox_destroy; | |
122 | |
123 widget_class->realize = ui_skinned_textbox_realize; | |
2860
2e081c64a529
transform UiSkinnedTextbox into windowless widget
Tomasz Mon <desowin@gmail.com>
parents:
2836
diff
changeset
|
124 widget_class->unrealize = ui_skinned_textbox_unrealize; |
2e081c64a529
transform UiSkinnedTextbox into windowless widget
Tomasz Mon <desowin@gmail.com>
parents:
2836
diff
changeset
|
125 widget_class->map = ui_skinned_textbox_map; |
2e081c64a529
transform UiSkinnedTextbox into windowless widget
Tomasz Mon <desowin@gmail.com>
parents:
2836
diff
changeset
|
126 widget_class->unmap = ui_skinned_textbox_unmap; |
2586 | 127 widget_class->expose_event = ui_skinned_textbox_expose; |
128 widget_class->size_request = ui_skinned_textbox_size_request; | |
129 widget_class->size_allocate = ui_skinned_textbox_size_allocate; | |
130 widget_class->button_press_event = ui_skinned_textbox_button_press; | |
131 widget_class->button_release_event = ui_skinned_textbox_button_release; | |
132 widget_class->motion_notify_event = ui_skinned_textbox_motion_notify; | |
133 | |
134 klass->clicked = NULL; | |
135 klass->double_clicked = NULL; | |
136 klass->right_clicked = NULL; | |
137 klass->scaled = ui_skinned_textbox_toggle_scaled; | |
138 | |
139 textbox_signals[CLICKED] = | |
140 g_signal_new ("clicked", G_OBJECT_CLASS_TYPE (object_class), G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION, | |
141 G_STRUCT_OFFSET (UiSkinnedTextboxClass, clicked), NULL, NULL, | |
3017
963796db51ea
Don't use deprecated gtk macros and types
Tomasz Mon <desowin@gmail.com>
parents:
2860
diff
changeset
|
142 g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); |
2586 | 143 |
144 textbox_signals[DOUBLE_CLICKED] = | |
145 g_signal_new ("double-clicked", G_OBJECT_CLASS_TYPE (object_class), G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION, | |
146 G_STRUCT_OFFSET (UiSkinnedTextboxClass, double_clicked), NULL, NULL, | |
3017
963796db51ea
Don't use deprecated gtk macros and types
Tomasz Mon <desowin@gmail.com>
parents:
2860
diff
changeset
|
147 g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); |
2586 | 148 |
149 textbox_signals[RIGHT_CLICKED] = | |
150 g_signal_new ("right-clicked", G_OBJECT_CLASS_TYPE (object_class), G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION, | |
151 G_STRUCT_OFFSET (UiSkinnedTextboxClass, right_clicked), NULL, NULL, | |
3017
963796db51ea
Don't use deprecated gtk macros and types
Tomasz Mon <desowin@gmail.com>
parents:
2860
diff
changeset
|
152 g_cclosure_marshal_VOID__POINTER, G_TYPE_NONE, 1, G_TYPE_POINTER); |
2586 | 153 |
154 textbox_signals[DOUBLED] = | |
155 g_signal_new ("toggle-scaled", G_OBJECT_CLASS_TYPE (object_class), G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION, | |
156 G_STRUCT_OFFSET (UiSkinnedTextboxClass, scaled), NULL, NULL, | |
3017
963796db51ea
Don't use deprecated gtk macros and types
Tomasz Mon <desowin@gmail.com>
parents:
2860
diff
changeset
|
157 g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); |
2586 | 158 |
159 g_type_class_add_private (gobject_class, sizeof (UiSkinnedTextboxPrivate)); | |
160 } | |
161 | |
162 static void ui_skinned_textbox_init(UiSkinnedTextbox *textbox) { | |
163 UiSkinnedTextboxPrivate *priv = UI_SKINNED_TEXTBOX_GET_PRIVATE(textbox); | |
164 priv->move_x = 0; | |
165 priv->move_y = 0; | |
2860
2e081c64a529
transform UiSkinnedTextbox into windowless widget
Tomasz Mon <desowin@gmail.com>
parents:
2836
diff
changeset
|
166 |
2e081c64a529
transform UiSkinnedTextbox into windowless widget
Tomasz Mon <desowin@gmail.com>
parents:
2836
diff
changeset
|
167 textbox->event_window = NULL; |
2e081c64a529
transform UiSkinnedTextbox into windowless widget
Tomasz Mon <desowin@gmail.com>
parents:
2836
diff
changeset
|
168 GTK_WIDGET_SET_FLAGS (textbox, GTK_NO_WINDOW); |
2586 | 169 } |
170 | |
171 GtkWidget* ui_skinned_textbox_new(GtkWidget *fixed, gint x, gint y, gint w, gboolean allow_scroll, SkinPixmapId si) { | |
172 UiSkinnedTextbox *textbox = g_object_new (ui_skinned_textbox_get_type (), NULL); | |
173 UiSkinnedTextboxPrivate *priv = UI_SKINNED_TEXTBOX_GET_PRIVATE(textbox); | |
174 | |
175 textbox->height = aud_active_skin->properties.textbox_bitmap_font_height; | |
176 textbox->x = x; | |
177 textbox->y = y; | |
178 textbox->text = g_strdup(""); | |
179 textbox->width = w; | |
180 priv->scroll_allowed = allow_scroll; | |
181 priv->scroll_enabled = TRUE; | |
182 priv->skin_index = si; | |
183 priv->nominal_y = y; | |
184 priv->nominal_height = textbox->height; | |
185 priv->scroll_timeout = 0; | |
186 priv->scroll_dummy = 0; | |
187 | |
188 priv->scaled = FALSE; | |
189 | |
190 gtk_fixed_put(GTK_FIXED(fixed), GTK_WIDGET(textbox), textbox->x, textbox->y); | |
191 | |
192 return GTK_WIDGET(textbox); | |
193 } | |
194 | |
195 static void ui_skinned_textbox_destroy(GtkObject *object) { | |
196 UiSkinnedTextbox *textbox; | |
2836
fbb17b57229a
fix possible segfault on cleanup
Tomasz Mon <desowin@gmail.com>
parents:
2698
diff
changeset
|
197 UiSkinnedTextboxPrivate *priv; |
2586 | 198 |
199 g_return_if_fail (object != NULL); | |
200 g_return_if_fail (UI_SKINNED_IS_TEXTBOX (object)); | |
201 | |
202 textbox = UI_SKINNED_TEXTBOX (object); | |
2836
fbb17b57229a
fix possible segfault on cleanup
Tomasz Mon <desowin@gmail.com>
parents:
2698
diff
changeset
|
203 priv = UI_SKINNED_TEXTBOX_GET_PRIVATE(object); |
fbb17b57229a
fix possible segfault on cleanup
Tomasz Mon <desowin@gmail.com>
parents:
2698
diff
changeset
|
204 |
fbb17b57229a
fix possible segfault on cleanup
Tomasz Mon <desowin@gmail.com>
parents:
2698
diff
changeset
|
205 if (priv->scroll_timeout) { |
fbb17b57229a
fix possible segfault on cleanup
Tomasz Mon <desowin@gmail.com>
parents:
2698
diff
changeset
|
206 g_source_remove(priv->scroll_timeout); |
fbb17b57229a
fix possible segfault on cleanup
Tomasz Mon <desowin@gmail.com>
parents:
2698
diff
changeset
|
207 priv->scroll_timeout = 0; |
fbb17b57229a
fix possible segfault on cleanup
Tomasz Mon <desowin@gmail.com>
parents:
2698
diff
changeset
|
208 } |
2586 | 209 |
210 if (GTK_OBJECT_CLASS (parent_class)->destroy) | |
211 (* GTK_OBJECT_CLASS (parent_class)->destroy) (object); | |
212 } | |
213 | |
214 static void ui_skinned_textbox_realize(GtkWidget *widget) { | |
215 UiSkinnedTextbox *textbox; | |
216 GdkWindowAttr attributes; | |
217 gint attributes_mask; | |
218 | |
219 g_return_if_fail (widget != NULL); | |
220 g_return_if_fail (UI_SKINNED_IS_TEXTBOX(widget)); | |
221 | |
2860
2e081c64a529
transform UiSkinnedTextbox into windowless widget
Tomasz Mon <desowin@gmail.com>
parents:
2836
diff
changeset
|
222 if (GTK_WIDGET_CLASS (parent_class)->realize) |
2e081c64a529
transform UiSkinnedTextbox into windowless widget
Tomasz Mon <desowin@gmail.com>
parents:
2836
diff
changeset
|
223 (* GTK_WIDGET_CLASS (parent_class)->realize) (widget); |
2e081c64a529
transform UiSkinnedTextbox into windowless widget
Tomasz Mon <desowin@gmail.com>
parents:
2836
diff
changeset
|
224 |
2586 | 225 textbox = UI_SKINNED_TEXTBOX(widget); |
226 | |
227 attributes.x = widget->allocation.x; | |
228 attributes.y = widget->allocation.y; | |
229 attributes.width = widget->allocation.width; | |
230 attributes.height = widget->allocation.height; | |
2860
2e081c64a529
transform UiSkinnedTextbox into windowless widget
Tomasz Mon <desowin@gmail.com>
parents:
2836
diff
changeset
|
231 attributes.wclass = GDK_INPUT_ONLY; |
2586 | 232 attributes.window_type = GDK_WINDOW_CHILD; |
233 attributes.event_mask = gtk_widget_get_events(widget); | |
2860
2e081c64a529
transform UiSkinnedTextbox into windowless widget
Tomasz Mon <desowin@gmail.com>
parents:
2836
diff
changeset
|
234 attributes.event_mask |= GDK_BUTTON_PRESS_MASK | |
2586 | 235 GDK_BUTTON_RELEASE_MASK | GDK_POINTER_MOTION_MASK | |
236 GDK_POINTER_MOTION_HINT_MASK; | |
237 | |
2860
2e081c64a529
transform UiSkinnedTextbox into windowless widget
Tomasz Mon <desowin@gmail.com>
parents:
2836
diff
changeset
|
238 attributes_mask = GDK_WA_X | GDK_WA_Y; |
2e081c64a529
transform UiSkinnedTextbox into windowless widget
Tomasz Mon <desowin@gmail.com>
parents:
2836
diff
changeset
|
239 textbox->event_window = gdk_window_new (widget->window, &attributes, attributes_mask); |
2586 | 240 |
241 widget->style = gtk_style_attach(widget->style, widget->window); | |
242 | |
2860
2e081c64a529
transform UiSkinnedTextbox into windowless widget
Tomasz Mon <desowin@gmail.com>
parents:
2836
diff
changeset
|
243 gdk_window_set_user_data(textbox->event_window, widget); |
2e081c64a529
transform UiSkinnedTextbox into windowless widget
Tomasz Mon <desowin@gmail.com>
parents:
2836
diff
changeset
|
244 } |
2e081c64a529
transform UiSkinnedTextbox into windowless widget
Tomasz Mon <desowin@gmail.com>
parents:
2836
diff
changeset
|
245 |
2e081c64a529
transform UiSkinnedTextbox into windowless widget
Tomasz Mon <desowin@gmail.com>
parents:
2836
diff
changeset
|
246 static void ui_skinned_textbox_unrealize(GtkWidget *widget) { |
2e081c64a529
transform UiSkinnedTextbox into windowless widget
Tomasz Mon <desowin@gmail.com>
parents:
2836
diff
changeset
|
247 UiSkinnedTextbox *textbox = UI_SKINNED_TEXTBOX(widget); |
2e081c64a529
transform UiSkinnedTextbox into windowless widget
Tomasz Mon <desowin@gmail.com>
parents:
2836
diff
changeset
|
248 |
2e081c64a529
transform UiSkinnedTextbox into windowless widget
Tomasz Mon <desowin@gmail.com>
parents:
2836
diff
changeset
|
249 if ( textbox->event_window != NULL ) |
2e081c64a529
transform UiSkinnedTextbox into windowless widget
Tomasz Mon <desowin@gmail.com>
parents:
2836
diff
changeset
|
250 { |
2e081c64a529
transform UiSkinnedTextbox into windowless widget
Tomasz Mon <desowin@gmail.com>
parents:
2836
diff
changeset
|
251 gdk_window_set_user_data( textbox->event_window , NULL ); |
2e081c64a529
transform UiSkinnedTextbox into windowless widget
Tomasz Mon <desowin@gmail.com>
parents:
2836
diff
changeset
|
252 gdk_window_destroy( textbox->event_window ); |
2e081c64a529
transform UiSkinnedTextbox into windowless widget
Tomasz Mon <desowin@gmail.com>
parents:
2836
diff
changeset
|
253 textbox->event_window = NULL; |
2e081c64a529
transform UiSkinnedTextbox into windowless widget
Tomasz Mon <desowin@gmail.com>
parents:
2836
diff
changeset
|
254 } |
2e081c64a529
transform UiSkinnedTextbox into windowless widget
Tomasz Mon <desowin@gmail.com>
parents:
2836
diff
changeset
|
255 |
2e081c64a529
transform UiSkinnedTextbox into windowless widget
Tomasz Mon <desowin@gmail.com>
parents:
2836
diff
changeset
|
256 if (GTK_WIDGET_CLASS (parent_class)->unrealize) |
2e081c64a529
transform UiSkinnedTextbox into windowless widget
Tomasz Mon <desowin@gmail.com>
parents:
2836
diff
changeset
|
257 (* GTK_WIDGET_CLASS (parent_class)->unrealize) (widget); |
2e081c64a529
transform UiSkinnedTextbox into windowless widget
Tomasz Mon <desowin@gmail.com>
parents:
2836
diff
changeset
|
258 } |
2e081c64a529
transform UiSkinnedTextbox into windowless widget
Tomasz Mon <desowin@gmail.com>
parents:
2836
diff
changeset
|
259 |
2e081c64a529
transform UiSkinnedTextbox into windowless widget
Tomasz Mon <desowin@gmail.com>
parents:
2836
diff
changeset
|
260 static void ui_skinned_textbox_map (GtkWidget *widget) |
2e081c64a529
transform UiSkinnedTextbox into windowless widget
Tomasz Mon <desowin@gmail.com>
parents:
2836
diff
changeset
|
261 { |
2e081c64a529
transform UiSkinnedTextbox into windowless widget
Tomasz Mon <desowin@gmail.com>
parents:
2836
diff
changeset
|
262 UiSkinnedTextbox *textbox = UI_SKINNED_TEXTBOX (widget); |
2e081c64a529
transform UiSkinnedTextbox into windowless widget
Tomasz Mon <desowin@gmail.com>
parents:
2836
diff
changeset
|
263 |
2e081c64a529
transform UiSkinnedTextbox into windowless widget
Tomasz Mon <desowin@gmail.com>
parents:
2836
diff
changeset
|
264 if (textbox->event_window != NULL) |
2e081c64a529
transform UiSkinnedTextbox into windowless widget
Tomasz Mon <desowin@gmail.com>
parents:
2836
diff
changeset
|
265 gdk_window_show (textbox->event_window); |
2e081c64a529
transform UiSkinnedTextbox into windowless widget
Tomasz Mon <desowin@gmail.com>
parents:
2836
diff
changeset
|
266 |
2e081c64a529
transform UiSkinnedTextbox into windowless widget
Tomasz Mon <desowin@gmail.com>
parents:
2836
diff
changeset
|
267 if (GTK_WIDGET_CLASS (parent_class)->map) |
2e081c64a529
transform UiSkinnedTextbox into windowless widget
Tomasz Mon <desowin@gmail.com>
parents:
2836
diff
changeset
|
268 (* GTK_WIDGET_CLASS (parent_class)->map) (widget); |
2e081c64a529
transform UiSkinnedTextbox into windowless widget
Tomasz Mon <desowin@gmail.com>
parents:
2836
diff
changeset
|
269 } |
2e081c64a529
transform UiSkinnedTextbox into windowless widget
Tomasz Mon <desowin@gmail.com>
parents:
2836
diff
changeset
|
270 |
2e081c64a529
transform UiSkinnedTextbox into windowless widget
Tomasz Mon <desowin@gmail.com>
parents:
2836
diff
changeset
|
271 static void ui_skinned_textbox_unmap (GtkWidget *widget) |
2e081c64a529
transform UiSkinnedTextbox into windowless widget
Tomasz Mon <desowin@gmail.com>
parents:
2836
diff
changeset
|
272 { |
2e081c64a529
transform UiSkinnedTextbox into windowless widget
Tomasz Mon <desowin@gmail.com>
parents:
2836
diff
changeset
|
273 UiSkinnedTextbox *textbox = UI_SKINNED_TEXTBOX (widget); |
2e081c64a529
transform UiSkinnedTextbox into windowless widget
Tomasz Mon <desowin@gmail.com>
parents:
2836
diff
changeset
|
274 |
2e081c64a529
transform UiSkinnedTextbox into windowless widget
Tomasz Mon <desowin@gmail.com>
parents:
2836
diff
changeset
|
275 if (textbox->event_window != NULL) |
2e081c64a529
transform UiSkinnedTextbox into windowless widget
Tomasz Mon <desowin@gmail.com>
parents:
2836
diff
changeset
|
276 gdk_window_hide (textbox->event_window); |
2e081c64a529
transform UiSkinnedTextbox into windowless widget
Tomasz Mon <desowin@gmail.com>
parents:
2836
diff
changeset
|
277 |
2e081c64a529
transform UiSkinnedTextbox into windowless widget
Tomasz Mon <desowin@gmail.com>
parents:
2836
diff
changeset
|
278 if (GTK_WIDGET_CLASS (parent_class)->unmap) |
2e081c64a529
transform UiSkinnedTextbox into windowless widget
Tomasz Mon <desowin@gmail.com>
parents:
2836
diff
changeset
|
279 (* GTK_WIDGET_CLASS (parent_class)->unmap) (widget); |
2586 | 280 } |
281 | |
282 static void ui_skinned_textbox_size_request(GtkWidget *widget, GtkRequisition *requisition) { | |
283 UiSkinnedTextbox *textbox = UI_SKINNED_TEXTBOX(widget); | |
284 UiSkinnedTextboxPrivate *priv = UI_SKINNED_TEXTBOX_GET_PRIVATE(textbox); | |
285 | |
286 requisition->width = textbox->width*(priv->scaled ? config.scale_factor : 1); | |
287 requisition->height = textbox->height*(priv->scaled ? config.scale_factor : 1 ); | |
288 } | |
289 | |
290 static void ui_skinned_textbox_size_allocate(GtkWidget *widget, GtkAllocation *allocation) { | |
291 UiSkinnedTextbox *textbox = UI_SKINNED_TEXTBOX (widget); | |
292 UiSkinnedTextboxPrivate *priv = UI_SKINNED_TEXTBOX_GET_PRIVATE(textbox); | |
293 | |
294 widget->allocation = *allocation; | |
295 widget->allocation.x *= (priv->scaled ? config.scale_factor : 1); | |
296 widget->allocation.y *= (priv->scaled ? config.scale_factor : 1); | |
297 if (GTK_WIDGET_REALIZED (widget)) | |
2860
2e081c64a529
transform UiSkinnedTextbox into windowless widget
Tomasz Mon <desowin@gmail.com>
parents:
2836
diff
changeset
|
298 if (textbox->event_window) |
2e081c64a529
transform UiSkinnedTextbox into windowless widget
Tomasz Mon <desowin@gmail.com>
parents:
2836
diff
changeset
|
299 gdk_window_move_resize(textbox->event_window, widget->allocation.x, widget->allocation.y, allocation->width, allocation->height); |
2586 | 300 |
301 if (textbox->x + priv->move_x - widget->allocation.x/(priv->scaled ? config.scale_factor : 1) <3); | |
302 priv->move_x = 0; | |
303 if (textbox->y + priv->move_y - widget->allocation.y/(priv->scaled ? config.scale_factor : 1) <3); | |
304 priv->move_y = 0; | |
305 textbox->x = widget->allocation.x/(priv->scaled ? config.scale_factor : 1); | |
306 textbox->y = widget->allocation.y/(priv->scaled ? config.scale_factor : 1); | |
307 | |
308 if (textbox->width - (guint) (widget->allocation.width / (priv->scaled ? config.scale_factor : 1)) > 2) { | |
309 textbox->width = (guint) (widget->allocation.width / (priv->scaled ? config.scale_factor : 1)); | |
310 if (priv->pixbuf_text) g_free(priv->pixbuf_text); | |
311 priv->pixbuf_text = NULL; | |
312 priv->offset = 0; | |
313 gtk_widget_set_size_request(widget, textbox->width, textbox->height); | |
314 gtk_widget_queue_draw(GTK_WIDGET(textbox)); | |
315 } | |
316 } | |
317 | |
318 static gboolean ui_skinned_textbox_expose(GtkWidget *widget, GdkEventExpose *event) { | |
319 g_return_val_if_fail (widget != NULL, FALSE); | |
320 g_return_val_if_fail (UI_SKINNED_IS_TEXTBOX (widget), FALSE); | |
321 g_return_val_if_fail (event != NULL, FALSE); | |
322 | |
323 UiSkinnedTextbox *textbox = UI_SKINNED_TEXTBOX (widget); | |
324 UiSkinnedTextboxPrivate *priv = UI_SKINNED_TEXTBOX_GET_PRIVATE(textbox); | |
325 g_return_val_if_fail (textbox->width > 0 && textbox->height > 0, FALSE); | |
326 | |
327 GdkPixbuf *obj = NULL; | |
328 gint cw; | |
329 | |
330 if (textbox->text && (!priv->pixbuf_text || strcmp(textbox->text, priv->pixbuf_text))) | |
331 textbox_generate_pixmap(textbox); | |
332 | |
333 if (priv->pixbuf) { | |
334 if (skin_get_id() != priv->skin_id) { | |
335 priv->skin_id = skin_get_id(); | |
336 textbox_generate_pixmap(textbox); | |
337 } | |
338 obj = gdk_pixbuf_new(GDK_COLORSPACE_RGB, TRUE, 8, textbox->width, textbox->height); | |
339 | |
340 if (config.twoway_scroll) { // twoway scroll | |
341 cw = priv->pixbuf_width - priv->offset; | |
342 if (cw > textbox->width) | |
343 cw = textbox->width; | |
344 gdk_pixbuf_copy_area(priv->pixbuf, priv->offset, 0, cw, textbox->height, obj, 0, 0); | |
345 if (cw < textbox->width) | |
346 gdk_pixbuf_copy_area(priv->pixbuf, 0, 0, textbox->width - cw, textbox->height, | |
347 obj, textbox->width - cw, textbox->height); | |
348 } else { // oneway scroll | |
349 int cw1, cw2; | |
350 | |
351 if (priv->offset >= priv->pixbuf_width) | |
352 priv->offset = 0; | |
353 | |
354 if (priv->pixbuf_width - priv->offset > textbox->width) { // case1 | |
355 cw1 = textbox->width; | |
356 gdk_pixbuf_copy_area(priv->pixbuf, priv->offset, 0, cw1, textbox->height, | |
357 obj, 0, 0); | |
358 } else { // case 2 | |
359 cw1 = priv->pixbuf_width - priv->offset; | |
360 gdk_pixbuf_copy_area(priv->pixbuf, priv->offset, 0, cw1, textbox->height, obj, 0, 0); | |
361 cw2 = textbox->width - cw1; | |
362 gdk_pixbuf_copy_area(priv->pixbuf, 0, 0, cw2, textbox->height, obj, cw1, 0); | |
363 } | |
364 } | |
365 | |
2860
2e081c64a529
transform UiSkinnedTextbox into windowless widget
Tomasz Mon <desowin@gmail.com>
parents:
2836
diff
changeset
|
366 ui_skinned_widget_draw_with_coordinates(widget, obj, textbox->width, textbox->height, |
2e081c64a529
transform UiSkinnedTextbox into windowless widget
Tomasz Mon <desowin@gmail.com>
parents:
2836
diff
changeset
|
367 widget->allocation.x, |
2e081c64a529
transform UiSkinnedTextbox into windowless widget
Tomasz Mon <desowin@gmail.com>
parents:
2836
diff
changeset
|
368 widget->allocation.y, |
2e081c64a529
transform UiSkinnedTextbox into windowless widget
Tomasz Mon <desowin@gmail.com>
parents:
2836
diff
changeset
|
369 priv->scaled); |
2586 | 370 |
371 g_object_unref(obj); | |
372 } | |
373 | |
374 return FALSE; | |
375 } | |
376 | |
377 static gboolean ui_skinned_textbox_button_press(GtkWidget *widget, GdkEventButton *event) { | |
378 g_return_val_if_fail (widget != NULL, FALSE); | |
379 g_return_val_if_fail (UI_SKINNED_IS_TEXTBOX (widget), FALSE); | |
380 g_return_val_if_fail (event != NULL, FALSE); | |
381 | |
382 UiSkinnedTextbox *textbox = UI_SKINNED_TEXTBOX (widget); | |
383 UiSkinnedTextboxPrivate *priv = UI_SKINNED_TEXTBOX_GET_PRIVATE(textbox); | |
384 | |
385 if (event->type == GDK_BUTTON_PRESS) { | |
386 textbox = UI_SKINNED_TEXTBOX(widget); | |
387 if (event->button == 3 && !g_signal_has_handler_pending(widget, textbox_signals[RIGHT_CLICKED], 0, TRUE)) | |
388 return FALSE; | |
389 else if (event->button == 1) { | |
390 if (priv->scroll_allowed) { | |
391 if ((priv->pixbuf_width > textbox->width) && priv->is_scrollable) { | |
392 priv->is_dragging = TRUE; | |
393 priv->drag_off = priv->offset; | |
394 priv->drag_x = event->x; | |
395 } | |
396 } else | |
397 g_signal_emit(widget, textbox_signals[CLICKED], 0); | |
398 | |
399 } else if (event->button == 3) { | |
400 g_signal_emit(widget, textbox_signals[RIGHT_CLICKED], 0, event); | |
401 } else | |
402 priv->is_dragging = FALSE; | |
403 } else if (event->type == GDK_2BUTTON_PRESS) { | |
404 if (event->button == 1) { | |
405 if (g_signal_has_handler_pending(widget, textbox_signals[DOUBLE_CLICKED], 0, TRUE)) | |
406 g_signal_emit(widget, textbox_signals[DOUBLE_CLICKED], 0); | |
407 else | |
408 return FALSE; | |
409 } | |
410 } | |
411 | |
412 return TRUE; | |
413 } | |
414 | |
415 static gboolean ui_skinned_textbox_button_release(GtkWidget *widget, GdkEventButton *event) { | |
416 UiSkinnedTextboxPrivate *priv = UI_SKINNED_TEXTBOX_GET_PRIVATE(widget); | |
417 | |
418 if (event->button == 1) { | |
419 priv->is_dragging = FALSE; | |
420 } | |
421 | |
422 return TRUE; | |
423 } | |
424 | |
425 static gboolean ui_skinned_textbox_motion_notify(GtkWidget *widget, GdkEventMotion *event) { | |
426 g_return_val_if_fail (widget != NULL, FALSE); | |
427 g_return_val_if_fail (UI_SKINNED_IS_TEXTBOX (widget), FALSE); | |
428 g_return_val_if_fail (event != NULL, FALSE); | |
429 UiSkinnedTextbox *textbox = UI_SKINNED_TEXTBOX(widget); | |
430 UiSkinnedTextboxPrivate *priv = UI_SKINNED_TEXTBOX_GET_PRIVATE(widget); | |
431 | |
432 if (priv->is_dragging) { | |
433 if (priv->scroll_allowed && | |
434 priv->pixbuf_width > textbox->width) { | |
435 priv->offset = priv->drag_off - (event->x - priv->drag_x); | |
436 | |
437 while (priv->offset < 0) | |
438 priv->offset = 0; | |
439 | |
440 while (priv->offset > (priv->pixbuf_width - textbox->width)) | |
441 priv->offset = (priv->pixbuf_width - textbox->width); | |
442 | |
443 gtk_widget_queue_draw(widget); | |
444 } | |
445 } | |
446 | |
447 return TRUE; | |
448 } | |
449 | |
450 static void ui_skinned_textbox_toggle_scaled(UiSkinnedTextbox *textbox) { | |
451 GtkWidget *widget = GTK_WIDGET (textbox); | |
452 UiSkinnedTextboxPrivate *priv = UI_SKINNED_TEXTBOX_GET_PRIVATE(textbox); | |
453 | |
454 priv->scaled = !priv->scaled; | |
455 | |
456 gtk_widget_set_size_request(widget, textbox->width*(priv->scaled ? config.scale_factor : 1 ), | |
457 textbox->height*(priv->scaled ? config.scale_factor : 1 )); | |
458 | |
459 gtk_widget_queue_draw(GTK_WIDGET(textbox)); | |
460 } | |
461 | |
462 static gboolean ui_skinned_textbox_should_scroll(UiSkinnedTextbox *textbox) { | |
463 UiSkinnedTextboxPrivate *priv = UI_SKINNED_TEXTBOX_GET_PRIVATE(textbox); | |
464 | |
465 if (!priv->scroll_allowed) | |
466 return FALSE; | |
467 | |
468 if (priv->font) { | |
469 gint width; | |
470 text_get_extents(priv->fontname, textbox->text, &width, NULL, NULL, NULL); | |
471 | |
472 if (width <= textbox->width) | |
473 return FALSE; | |
474 else | |
475 return TRUE; | |
476 } | |
477 | |
478 if (g_utf8_strlen(textbox->text, -1) * aud_active_skin->properties.textbox_bitmap_font_width > textbox->width) | |
479 return TRUE; | |
480 | |
481 return FALSE; | |
482 } | |
483 | |
484 void ui_skinned_textbox_set_xfont(GtkWidget *widget, gboolean use_xfont, const gchar * fontname) { | |
485 UiSkinnedTextbox *textbox = UI_SKINNED_TEXTBOX (widget); | |
486 UiSkinnedTextboxPrivate *priv = UI_SKINNED_TEXTBOX_GET_PRIVATE(textbox); | |
487 | |
488 gint ascent, descent; | |
489 | |
490 g_return_if_fail(textbox != NULL); | |
491 | |
492 if (priv->font) { | |
493 pango_font_description_free(priv->font); | |
494 priv->font = NULL; | |
495 } | |
496 | |
497 textbox->y = priv->nominal_y; | |
498 textbox->height = priv->nominal_height; | |
499 | |
500 /* Make sure the pixmap is regenerated */ | |
501 if (priv->pixbuf_text) { | |
502 g_free(priv->pixbuf_text); | |
503 priv->pixbuf_text = NULL; | |
504 } | |
505 | |
506 if (!use_xfont || strlen(fontname) == 0) | |
507 return; | |
508 | |
509 priv->font = pango_font_description_from_string(fontname); | |
510 priv->fontname = g_strdup(fontname); | |
511 | |
512 text_get_extents(fontname, | |
513 "AaBbCcDdEeFfGgHhIiJjKkLlMmNnOoPpQqRrSsTtUuVvWwXxYyZz ", | |
514 NULL, NULL, &ascent, &descent); | |
515 priv->font_ascent = ascent; | |
516 priv->font_descent = descent; | |
517 | |
518 | |
519 if (priv->font == NULL) | |
520 return; | |
521 | |
522 textbox->height = priv->font_ascent; | |
523 if (textbox->height > priv->nominal_height) | |
524 textbox->y -= (textbox->height - priv->nominal_height) / 2; | |
525 else | |
526 textbox->height = priv->nominal_height; | |
527 } | |
528 | |
529 void ui_skinned_textbox_set_text(GtkWidget *widget, const gchar *text) { | |
530 g_return_if_fail(text != NULL); | |
531 UiSkinnedTextbox *textbox = UI_SKINNED_TEXTBOX (widget); | |
532 UiSkinnedTextboxPrivate *priv = UI_SKINNED_TEXTBOX_GET_PRIVATE(textbox); | |
533 | |
534 if (!strcmp(textbox->text, text)) | |
535 return; | |
536 if (textbox->text) | |
537 g_free(textbox->text); | |
538 | |
539 textbox->text = aud_str_to_utf8(text); | |
540 priv->scroll_back = FALSE; | |
541 gtk_widget_queue_draw(GTK_WIDGET(textbox)); | |
542 } | |
543 | |
544 static void textbox_generate_xfont_pixmap(UiSkinnedTextbox *textbox, const gchar *pixmaptext) { | |
545 /* FIXME: should operate directly on priv->pixbuf, it shouldn't use pixmap */ | |
546 gint length, i; | |
547 GdkGC *gc, *maskgc; | |
548 GdkColor *c, pattern; | |
549 GdkBitmap *mask; | |
550 PangoLayout *layout; | |
551 gint width; | |
552 GdkPixmap *pixmap; | |
553 | |
554 g_return_if_fail(textbox != NULL); | |
555 g_return_if_fail(pixmaptext != NULL); | |
556 g_return_if_fail(textbox->height > 0); | |
557 | |
558 UiSkinnedTextboxPrivate *priv = UI_SKINNED_TEXTBOX_GET_PRIVATE(textbox); | |
559 | |
560 length = g_utf8_strlen(pixmaptext, -1); | |
561 | |
562 text_get_extents(priv->fontname, pixmaptext, &width, NULL, NULL, NULL); | |
563 | |
564 priv->pixbuf_width = MAX(width, textbox->width); | |
565 pixmap = gdk_pixmap_new(mainwin->window, priv->pixbuf_width, | |
566 textbox->height, | |
567 gdk_rgb_get_visual()->depth); | |
568 gc = gdk_gc_new(pixmap); | |
569 c = skin_get_color(aud_active_skin, SKIN_TEXTBG); | |
570 for (i = 0; i < textbox->height; i++) { | |
571 gdk_gc_set_foreground(gc, &c[6 * i / textbox->height]); | |
572 gdk_draw_line(pixmap, gc, 0, i, priv->pixbuf_width, i); | |
573 } | |
574 | |
575 mask = gdk_pixmap_new(mainwin->window, priv->pixbuf_width, textbox->height, 1); | |
576 maskgc = gdk_gc_new(mask); | |
577 pattern.pixel = 0; | |
578 gdk_gc_set_foreground(maskgc, &pattern); | |
579 | |
580 gdk_draw_rectangle(mask, maskgc, TRUE, 0, 0, priv->pixbuf_width, textbox->height); | |
581 pattern.pixel = 1; | |
582 gdk_gc_set_foreground(maskgc, &pattern); | |
583 | |
584 gdk_gc_set_foreground(gc, skin_get_color(aud_active_skin, SKIN_TEXTFG)); | |
585 | |
586 layout = gtk_widget_create_pango_layout(mainwin, pixmaptext); | |
587 pango_layout_set_font_description(layout, priv->font); | |
588 | |
589 gdk_draw_layout(pixmap, gc, 0, (priv->font_descent / 2), layout); | |
590 g_object_unref(layout); | |
591 | |
592 g_object_unref(maskgc); | |
593 | |
594 gdk_gc_set_clip_mask(gc, mask); | |
595 c = skin_get_color(aud_active_skin, SKIN_TEXTFG); | |
596 for (i = 0; i < textbox->height; i++) { | |
597 gdk_gc_set_foreground(gc, &c[6 * i / textbox->height]); | |
598 gdk_draw_line(pixmap, gc, 0, i, priv->pixbuf_width, i); | |
599 } | |
600 priv->pixbuf = gdk_pixbuf_get_from_drawable(NULL, pixmap, gdk_colormap_get_system(), 0, 0, 0, 0, priv->pixbuf_width, textbox->height); | |
601 g_object_unref(mask); | |
602 g_object_unref(gc); | |
603 } | |
604 | |
605 static gboolean textbox_scroll(gpointer data) { | |
606 UiSkinnedTextbox *textbox = UI_SKINNED_TEXTBOX(data); | |
607 UiSkinnedTextboxPrivate *priv = UI_SKINNED_TEXTBOX_GET_PRIVATE(textbox); | |
608 | |
609 if (!priv->is_dragging) { | |
610 if (priv->scroll_dummy < TEXTBOX_SCROLL_WAIT) | |
611 priv->scroll_dummy++; | |
612 else { | |
613 if(config.twoway_scroll) { | |
614 if (priv->scroll_back) | |
615 priv->offset -= 1; | |
616 else | |
617 priv->offset += 1; | |
618 | |
619 if (priv->offset >= (priv->pixbuf_width - textbox->width)) { | |
620 priv->scroll_back = TRUE; | |
621 priv->scroll_dummy = 0; | |
622 priv->offset = priv->pixbuf_width - textbox->width; | |
623 } | |
624 if (priv->offset <= 0) { | |
625 priv->scroll_back = FALSE; | |
626 priv->scroll_dummy = 0; | |
627 priv->offset = 0; | |
628 } | |
629 } | |
630 else { // oneway scroll | |
631 priv->scroll_back = FALSE; | |
632 priv->offset += 1; | |
633 } | |
634 gtk_widget_queue_draw(GTK_WIDGET(textbox)); | |
635 } | |
636 } | |
637 return TRUE; | |
638 } | |
639 | |
640 static void textbox_generate_pixmap(UiSkinnedTextbox *textbox) { | |
641 gint length, i, x, y, wl; | |
642 gchar *pixmaptext; | |
643 gchar *tmp, *stxt; | |
644 | |
645 g_return_if_fail(textbox != NULL); | |
646 UiSkinnedTextboxPrivate *priv = UI_SKINNED_TEXTBOX_GET_PRIVATE(textbox); | |
647 | |
648 if (priv->pixbuf) { | |
649 g_object_unref(priv->pixbuf); | |
650 priv->pixbuf = NULL; | |
651 } | |
652 | |
653 /* | |
654 * Don't reset the offset if only text after the last '(' has | |
655 * changed. This is a hack to avoid visual noice on vbr files | |
656 * where we guess the length. | |
657 */ | |
658 if (!(priv->pixbuf_text && strrchr(textbox->text, '(') && | |
659 !strncmp(priv->pixbuf_text, textbox->text, | |
660 strrchr(textbox->text, '(') - textbox->text))) | |
661 priv->offset = 0; | |
662 | |
663 g_free(priv->pixbuf_text); | |
664 priv->pixbuf_text = g_strdup(textbox->text); | |
665 | |
666 /* | |
667 * wl is the number of (partial) letters visible. Only makes | |
668 * sense when using skinned font. | |
669 */ | |
670 wl = textbox->width / 5; | |
671 if (wl * 5 != textbox->width) | |
672 wl++; | |
673 | |
674 length = g_utf8_strlen(textbox->text, -1); | |
675 | |
676 priv->is_scrollable = FALSE; | |
677 | |
678 priv->is_scrollable = ui_skinned_textbox_should_scroll(textbox); | |
679 | |
680 if (priv->is_scrollable) { | |
681 if(!config.twoway_scroll) { | |
682 pixmaptext = g_strdup_printf("%s *** ", priv->pixbuf_text); | |
683 length += 5; | |
684 } else | |
685 pixmaptext = g_strdup(priv->pixbuf_text); | |
686 } else | |
687 if (!priv->font && length <= wl) { | |
688 gint pad = wl - length; | |
689 gchar *padchars = g_strnfill(pad, ' '); | |
690 | |
691 pixmaptext = g_strconcat(priv->pixbuf_text, padchars, NULL); | |
692 g_free(padchars); | |
693 length += pad; | |
694 } else | |
695 pixmaptext = g_strdup(priv->pixbuf_text); | |
696 | |
697 if (priv->is_scrollable) { | |
698 if (priv->scroll_enabled && !priv->scroll_timeout) { | |
699 gint tag; | |
700 tag = TEXTBOX_SCROLL_SMOOTH_TIMEOUT; | |
701 priv->scroll_timeout = g_timeout_add(tag, textbox_scroll, textbox); | |
702 } | |
703 } else { | |
704 if (priv->scroll_timeout) { | |
705 g_source_remove(priv->scroll_timeout); | |
706 priv->scroll_timeout = 0; | |
707 } | |
708 priv->offset = 0; | |
709 } | |
710 | |
711 if (priv->font) { | |
712 textbox_generate_xfont_pixmap(textbox, pixmaptext); | |
713 g_free(pixmaptext); | |
714 return; | |
715 } | |
716 | |
717 priv->pixbuf_width = length * aud_active_skin->properties.textbox_bitmap_font_width; | |
718 priv->pixbuf = gdk_pixbuf_new(GDK_COLORSPACE_RGB, TRUE, 8, | |
719 priv->pixbuf_width, aud_active_skin->properties.textbox_bitmap_font_height); | |
720 | |
721 for (tmp = stxt = g_utf8_strup(pixmaptext, -1), i = 0; | |
722 tmp != NULL && i < length; i++, tmp = g_utf8_next_char(tmp)) { | |
723 gchar c = *tmp; | |
724 x = y = -1; | |
725 if (c >= 'A' && c <= 'Z') { | |
726 x = aud_active_skin->properties.textbox_bitmap_font_width * (c - 'A'); | |
727 y = 0; | |
728 } | |
729 else if (c >= '0' && c <= '9') { | |
730 x = aud_active_skin->properties.textbox_bitmap_font_width * (c - '0'); | |
731 y = aud_active_skin->properties.textbox_bitmap_font_height; | |
732 } | |
733 else | |
734 textbox_handle_special_char(tmp, &x, &y); | |
735 | |
736 skin_draw_pixbuf(GTK_WIDGET(textbox), aud_active_skin, | |
737 priv->pixbuf, priv->skin_index, | |
738 x, y, i * aud_active_skin->properties.textbox_bitmap_font_width, 0, | |
739 aud_active_skin->properties.textbox_bitmap_font_width, | |
740 aud_active_skin->properties.textbox_bitmap_font_height); | |
741 } | |
742 g_free(stxt); | |
743 g_free(pixmaptext); | |
744 } | |
745 | |
746 void ui_skinned_textbox_set_scroll(GtkWidget *widget, gboolean scroll) { | |
747 g_return_if_fail(widget != NULL); | |
2635
b990e7eb0c25
save config on plugin cleanup
Tomasz Mon <desowin@gmail.com>
parents:
2590
diff
changeset
|
748 g_return_if_fail(UI_SKINNED_IS_TEXTBOX(widget)); |
b990e7eb0c25
save config on plugin cleanup
Tomasz Mon <desowin@gmail.com>
parents:
2590
diff
changeset
|
749 |
2586 | 750 UiSkinnedTextbox *textbox = UI_SKINNED_TEXTBOX(widget); |
751 UiSkinnedTextboxPrivate *priv = UI_SKINNED_TEXTBOX_GET_PRIVATE(textbox); | |
752 | |
753 priv->scroll_enabled = scroll; | |
754 if (priv->scroll_enabled && priv->is_scrollable && priv->scroll_allowed) { | |
755 gint tag; | |
756 tag = TEXTBOX_SCROLL_SMOOTH_TIMEOUT; | |
757 if (priv->scroll_timeout) { | |
758 g_source_remove(priv->scroll_timeout); | |
759 priv->scroll_timeout = 0; | |
760 } | |
761 priv->scroll_timeout = g_timeout_add(tag, textbox_scroll, textbox); | |
762 | |
763 } else { | |
764 | |
765 if (priv->scroll_timeout) { | |
766 g_source_remove(priv->scroll_timeout); | |
767 priv->scroll_timeout = 0; | |
768 } | |
769 | |
770 priv->offset = 0; | |
771 gtk_widget_queue_draw(GTK_WIDGET(textbox)); | |
772 } | |
773 } | |
774 | |
775 static void textbox_handle_special_char(gchar *c, gint * x, gint * y) { | |
776 gint tx, ty; | |
777 | |
778 switch (*c) { | |
779 case '"': | |
780 tx = 26; | |
781 ty = 0; | |
782 break; | |
783 case '\r': | |
784 tx = 10; | |
785 ty = 1; | |
786 break; | |
787 case ':': | |
788 case ';': | |
789 tx = 12; | |
790 ty = 1; | |
791 break; | |
792 case '(': | |
793 tx = 13; | |
794 ty = 1; | |
795 break; | |
796 case ')': | |
797 tx = 14; | |
798 ty = 1; | |
799 break; | |
800 case '-': | |
801 tx = 15; | |
802 ty = 1; | |
803 break; | |
804 case '`': | |
805 case '\'': | |
806 tx = 16; | |
807 ty = 1; | |
808 break; | |
809 case '!': | |
810 tx = 17; | |
811 ty = 1; | |
812 break; | |
813 case '_': | |
814 tx = 18; | |
815 ty = 1; | |
816 break; | |
817 case '+': | |
818 tx = 19; | |
819 ty = 1; | |
820 break; | |
821 case '\\': | |
822 tx = 20; | |
823 ty = 1; | |
824 break; | |
825 case '/': | |
826 tx = 21; | |
827 ty = 1; | |
828 break; | |
829 case '[': | |
830 tx = 22; | |
831 ty = 1; | |
832 break; | |
833 case ']': | |
834 tx = 23; | |
835 ty = 1; | |
836 break; | |
837 case '^': | |
838 tx = 24; | |
839 ty = 1; | |
840 break; | |
841 case '&': | |
842 tx = 25; | |
843 ty = 1; | |
844 break; | |
845 case '%': | |
846 tx = 26; | |
847 ty = 1; | |
848 break; | |
849 case '.': | |
850 case ',': | |
851 tx = 27; | |
852 ty = 1; | |
853 break; | |
854 case '=': | |
855 tx = 28; | |
856 ty = 1; | |
857 break; | |
858 case '$': | |
859 tx = 29; | |
860 ty = 1; | |
861 break; | |
862 case '#': | |
863 tx = 30; | |
864 ty = 1; | |
865 break; | |
866 case '?': | |
867 tx = 3; | |
868 ty = 2; | |
869 break; | |
870 case '*': | |
871 tx = 4; | |
872 ty = 2; | |
873 break; | |
874 default: | |
875 tx = 29; | |
876 ty = 0; | |
877 break; | |
878 } | |
879 | |
880 const gchar *change[] = {"Ą", "A", "Ę", "E", "Ć", "C", "Ł", "L", "Ó", "O", "Ś", "S", "Ż", "Z", "Ź", "Z", | |
881 "Ń", "N", "Ü", "U", NULL}; | |
882 int i; | |
883 for (i = 0; change[i]; i+=2) { | |
884 if (!strncmp(c, change[i], strlen(change[i]))) { | |
885 tx = (*change[i+1] - 'A'); | |
886 break; | |
887 } | |
888 } | |
889 | |
890 /* those are commonly included into skins */ | |
891 if (!strncmp(c, "Å", strlen("Å"))) { | |
892 tx = 0; | |
893 ty = 2; | |
894 } else if (!strncmp(c, "Ö", strlen("Ö"))) { | |
895 tx = 1; | |
896 ty = 2; | |
897 } else if (!strncmp(c, "Ä", strlen("Ä"))) { | |
898 tx = 2; | |
899 ty = 2; | |
900 } | |
901 | |
902 *x = tx * aud_active_skin->properties.textbox_bitmap_font_width; | |
903 *y = ty * aud_active_skin->properties.textbox_bitmap_font_height; | |
904 } | |
905 | |
906 void ui_skinned_textbox_move_relative(GtkWidget *widget, gint x, gint y) { | |
2698
32e99af83a3e
I don't think redraw signal is needed anymore
Tomasz Mon <desowin@gmail.com>
parents:
2635
diff
changeset
|
907 UiSkinnedTextbox *textbox = UI_SKINNED_TEXTBOX(widget); |
2586 | 908 UiSkinnedTextboxPrivate *priv = UI_SKINNED_TEXTBOX_GET_PRIVATE(widget); |
909 priv->move_x += x; | |
910 priv->move_y += y; | |
2698
32e99af83a3e
I don't think redraw signal is needed anymore
Tomasz Mon <desowin@gmail.com>
parents:
2635
diff
changeset
|
911 gtk_fixed_move(GTK_FIXED(gtk_widget_get_parent(widget)), widget, |
32e99af83a3e
I don't think redraw signal is needed anymore
Tomasz Mon <desowin@gmail.com>
parents:
2635
diff
changeset
|
912 textbox->x+priv->move_x, textbox->y+priv->move_y); |
2586 | 913 } |