annotate src/skins/ui_skinned_textbox.c @ 2698:32e99af83a3e

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