Mercurial > audlegacy
annotate src/audacious/ui_skinned_textbox.c @ 3018:6a9fdd5aee3a trunk
Move timer updates out of the 100hz giant loop.
author | Daniel Drake <dsd@gentoo.org> |
---|---|
date | Mon, 09 Jul 2007 23:19:35 -0500 |
parents | 99865f696f13 |
children | 229db6d72934 |
rev | line source |
---|---|
2911 | 1 /* |
2 * Audacious - a cross-platform multimedia player | |
3 * Copyright (c) 2007 Audacious development team. | |
4 * | |
5 * Based on: | |
6 * BMP - Cross-platform multimedia player | |
7 * Copyright (C) 2003-2004 BMP development team. | |
8 * XMMS: | |
9 * Copyright (C) 1998-2003 XMMS development team. | |
10 * | |
11 * This program is free software; you can redistribute it and/or modify | |
12 * it under the terms of the GNU General Public License as published by | |
2918
4e71092ab29b
remove evil GPL3 upgrade phrase
Tomasz Mon <desowin@gmail.com>
parents:
2917
diff
changeset
|
13 * the Free Software Foundation; under version 2 of the License. |
2911 | 14 * |
15 * This program is distributed in the hope that it will be useful, | |
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 * GNU General Public License for more details. | |
19 * | |
20 * You should have received a copy of the GNU General Public License | |
21 * along with this program; if not, write to the Free Software | |
22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | |
23 */ | |
24 | |
25 #include "widgets/widgetcore.h" | |
26 #include "ui_skinned_textbox.h" | |
27 #include "main.h" | |
28 #include "util.h" | |
29 #include "strings.h" | |
30 #include <string.h> | |
31 #include <ctype.h> | |
32 #include <gtk/gtkmain.h> | |
33 #include <gtk/gtkmarshal.h> | |
34 #include <gtk/gtkimage.h> | |
35 | |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
36 #define UI_TYPE_SKINNED_TEXTBOX (ui_skinned_textbox_get_type()) |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
37 #define UI_SKINNED_TEXTBOX_GET_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE ((o), UI_TYPE_SKINNED_TEXTBOX, UiSkinnedTextboxPrivate)) |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
38 typedef struct _UiSkinnedTextboxPrivate UiSkinnedTextboxPrivate; |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
39 |
2980
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
40 static GMutex *mutex = NULL; |
2911 | 41 |
2980
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
42 #define TEXTBOX_SCROLL_SMOOTH_TIMEOUT 30 |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
43 #define TEXTBOX_SCROLL_WAIT 80 |
2965
f84d09bada0f
correct _move_relative() and _resize_relative()
Tomasz Mon <desowin@gmail.com>
parents:
2962
diff
changeset
|
44 |
2911 | 45 enum { |
2942
1a59a0ced6a8
make scrolling stop for second when it reaches end, replace remaining mainwin TextBox with UiSkinnedTextbox
Tomasz Mon <desowin@gmail.com>
parents:
2920
diff
changeset
|
46 CLICKED, |
2911 | 47 DOUBLE_CLICKED, |
48 RIGHT_CLICKED, | |
49 DOUBLED, | |
50 REDRAW, | |
51 LAST_SIGNAL | |
52 }; | |
53 | |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
54 struct _UiSkinnedTextboxPrivate { |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
55 GdkPixmap *img; |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
56 SkinPixmapId skin_index; |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
57 GtkWidget *fixed; |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
58 gboolean double_size; |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
59 gboolean scroll_back; |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
60 gint nominal_y, nominal_height; |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
61 gint scroll_timeout; |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
62 gint font_ascent, font_descent; |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
63 PangoFontDescription *font; |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
64 gchar *fontname; |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
65 gchar *pixmap_text; |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
66 gint skin_id; |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
67 gint drag_x, drag_off, offset; |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
68 gboolean is_scrollable, is_dragging; |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
69 gint pixmap_width; |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
70 GdkPixmap *pixmap; |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
71 gboolean scroll_allowed, scroll_enabled; |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
72 gint scroll_dummy; |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
73 gint resize_width, resize_height; |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
74 gint move_x, move_y; |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
75 }; |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
76 |
2980
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
77 static void ui_skinned_textbox_class_init (UiSkinnedTextboxClass *klass); |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
78 static void ui_skinned_textbox_init (UiSkinnedTextbox *textbox); |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
79 static void ui_skinned_textbox_destroy (GtkObject *object); |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
80 static void ui_skinned_textbox_realize (GtkWidget *widget); |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
81 static void ui_skinned_textbox_size_request (GtkWidget *widget, GtkRequisition *requisition); |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
82 static void ui_skinned_textbox_size_allocate (GtkWidget *widget, GtkAllocation *allocation); |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
83 static gboolean ui_skinned_textbox_expose (GtkWidget *widget, GdkEventExpose *event); |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
84 static gboolean ui_skinned_textbox_button_press (GtkWidget *widget, GdkEventButton *event); |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
85 static gboolean ui_skinned_textbox_button_release (GtkWidget *widget, GdkEventButton *event); |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
86 static gboolean ui_skinned_textbox_motion_notify (GtkWidget *widget, GdkEventMotion *event); |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
87 static void ui_skinned_textbox_toggle_doublesize (UiSkinnedTextbox *textbox); |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
88 static void ui_skinned_textbox_redraw (UiSkinnedTextbox *textbox); |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
89 static gboolean ui_skinned_textbox_should_scroll (UiSkinnedTextbox *textbox); |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
90 static void textbox_generate_xfont_pixmap (UiSkinnedTextbox *textbox, const gchar *pixmaptext); |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
91 static gboolean textbox_scroll (gpointer data); |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
92 static void textbox_generate_pixmap (UiSkinnedTextbox *textbox); |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
93 static void textbox_handle_special_char (gchar c, gint * x, gint * y); |
2911 | 94 |
2980
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
95 static GtkWidgetClass *parent_class = NULL; |
2911 | 96 static guint textbox_signals[LAST_SIGNAL] = { 0 }; |
97 | |
2980
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
98 GType ui_skinned_textbox_get_type() { |
2911 | 99 static GType textbox_type = 0; |
100 if (!textbox_type) { | |
101 static const GTypeInfo textbox_info = { | |
102 sizeof (UiSkinnedTextboxClass), | |
2980
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
103 NULL, |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
104 NULL, |
2911 | 105 (GClassInitFunc) ui_skinned_textbox_class_init, |
2980
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
106 NULL, |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
107 NULL, |
2911 | 108 sizeof (UiSkinnedTextbox), |
2980
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
109 0, |
2911 | 110 (GInstanceInitFunc) ui_skinned_textbox_init, |
111 }; | |
2980
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
112 textbox_type = g_type_register_static (GTK_TYPE_WIDGET, "UiSkinnedTextbox", &textbox_info, 0); |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
113 } |
2911 | 114 |
115 return textbox_type; | |
116 } | |
117 | |
2980
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
118 static void ui_skinned_textbox_class_init(UiSkinnedTextboxClass *klass) { |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
119 GObjectClass *gobject_class; |
2911 | 120 GtkObjectClass *object_class; |
121 GtkWidgetClass *widget_class; | |
122 | |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
123 gobject_class = G_OBJECT_CLASS(klass); |
2980
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
124 object_class = (GtkObjectClass*) klass; |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
125 widget_class = (GtkWidgetClass*) klass; |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
126 parent_class = gtk_type_class (gtk_widget_get_type ()); |
2911 | 127 |
128 object_class->destroy = ui_skinned_textbox_destroy; | |
129 | |
130 widget_class->realize = ui_skinned_textbox_realize; | |
2980
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
131 widget_class->expose_event = ui_skinned_textbox_expose; |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
132 widget_class->size_request = ui_skinned_textbox_size_request; |
2911 | 133 widget_class->size_allocate = ui_skinned_textbox_size_allocate; |
2980
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
134 widget_class->button_press_event = ui_skinned_textbox_button_press; |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
135 widget_class->button_release_event = ui_skinned_textbox_button_release; |
2911 | 136 widget_class->motion_notify_event = ui_skinned_textbox_motion_notify; |
137 | |
2942
1a59a0ced6a8
make scrolling stop for second when it reaches end, replace remaining mainwin TextBox with UiSkinnedTextbox
Tomasz Mon <desowin@gmail.com>
parents:
2920
diff
changeset
|
138 klass->clicked = NULL; |
2911 | 139 klass->double_clicked = NULL; |
140 klass->right_clicked = NULL; | |
141 klass->doubled = ui_skinned_textbox_toggle_doublesize; | |
142 klass->redraw = ui_skinned_textbox_redraw; | |
143 | |
2942
1a59a0ced6a8
make scrolling stop for second when it reaches end, replace remaining mainwin TextBox with UiSkinnedTextbox
Tomasz Mon <desowin@gmail.com>
parents:
2920
diff
changeset
|
144 textbox_signals[CLICKED] = |
1a59a0ced6a8
make scrolling stop for second when it reaches end, replace remaining mainwin TextBox with UiSkinnedTextbox
Tomasz Mon <desowin@gmail.com>
parents:
2920
diff
changeset
|
145 g_signal_new ("clicked", G_OBJECT_CLASS_TYPE (object_class), G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION, |
1a59a0ced6a8
make scrolling stop for second when it reaches end, replace remaining mainwin TextBox with UiSkinnedTextbox
Tomasz Mon <desowin@gmail.com>
parents:
2920
diff
changeset
|
146 G_STRUCT_OFFSET (UiSkinnedTextboxClass, clicked), NULL, NULL, |
1a59a0ced6a8
make scrolling stop for second when it reaches end, replace remaining mainwin TextBox with UiSkinnedTextbox
Tomasz Mon <desowin@gmail.com>
parents:
2920
diff
changeset
|
147 gtk_marshal_VOID__VOID, G_TYPE_NONE, 0); |
1a59a0ced6a8
make scrolling stop for second when it reaches end, replace remaining mainwin TextBox with UiSkinnedTextbox
Tomasz Mon <desowin@gmail.com>
parents:
2920
diff
changeset
|
148 |
2911 | 149 textbox_signals[DOUBLE_CLICKED] = |
150 g_signal_new ("double-clicked", G_OBJECT_CLASS_TYPE (object_class), G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION, | |
151 G_STRUCT_OFFSET (UiSkinnedTextboxClass, double_clicked), NULL, NULL, | |
152 gtk_marshal_VOID__VOID, G_TYPE_NONE, 0); | |
153 | |
154 textbox_signals[RIGHT_CLICKED] = | |
155 g_signal_new ("right-clicked", G_OBJECT_CLASS_TYPE (object_class), G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION, | |
156 G_STRUCT_OFFSET (UiSkinnedTextboxClass, right_clicked), NULL, NULL, | |
157 gtk_marshal_VOID__VOID, G_TYPE_NONE, 0); | |
158 | |
159 textbox_signals[DOUBLED] = | |
160 g_signal_new ("toggle-double-size", G_OBJECT_CLASS_TYPE (object_class), G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION, | |
161 G_STRUCT_OFFSET (UiSkinnedTextboxClass, doubled), NULL, NULL, | |
162 gtk_marshal_VOID__VOID, G_TYPE_NONE, 0); | |
163 | |
164 textbox_signals[REDRAW] = | |
165 g_signal_new ("redraw", G_OBJECT_CLASS_TYPE (object_class), G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION, | |
166 G_STRUCT_OFFSET (UiSkinnedTextboxClass, redraw), NULL, NULL, | |
167 gtk_marshal_VOID__VOID, G_TYPE_NONE, 0); | |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
168 |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
169 g_type_class_add_private (gobject_class, sizeof (UiSkinnedTextboxPrivate)); |
2911 | 170 } |
171 | |
2980
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
172 static void ui_skinned_textbox_init(UiSkinnedTextbox *textbox) { |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
173 UiSkinnedTextboxPrivate *priv = UI_SKINNED_TEXTBOX_GET_PRIVATE(textbox); |
2980
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
174 mutex = g_mutex_new(); |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
175 priv->resize_width = 0; |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
176 priv->resize_height = 0; |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
177 priv->move_x = 0; |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
178 priv->move_y = 0; |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
179 priv->img = NULL; |
2911 | 180 } |
181 | |
3005
3db40ad79fd9
request GdkGC when needed rather than carry one around
Tomasz Mon <desowin@gmail.com>
parents:
2998
diff
changeset
|
182 GtkWidget* ui_skinned_textbox_new(GtkWidget *fixed, gint x, gint y, gint w, gboolean allow_scroll, SkinPixmapId si) { |
2980
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
183 UiSkinnedTextbox *textbox = g_object_new (ui_skinned_textbox_get_type (), NULL); |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
184 UiSkinnedTextboxPrivate *priv = UI_SKINNED_TEXTBOX_GET_PRIVATE(textbox); |
2911 | 185 |
186 textbox->height = bmp_active_skin->properties.textbox_bitmap_font_height; | |
187 textbox->x = x; | |
188 textbox->y = y; | |
2957
c859aa1a1a4e
don't update text if it haven't changed
Tomasz Mon <desowin@gmail.com>
parents:
2956
diff
changeset
|
189 textbox->text = g_strdup(""); |
2947 | 190 textbox->width = w; |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
191 priv->scroll_allowed = allow_scroll; |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
192 priv->scroll_enabled = TRUE; |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
193 priv->skin_index = si; |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
194 priv->nominal_y = y; |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
195 priv->nominal_height = textbox->height; |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
196 priv->scroll_timeout = 0; |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
197 priv->scroll_dummy = 0; |
2980
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
198 |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
199 priv->fixed = fixed; |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
200 priv->double_size = FALSE; |
2980
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
201 |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
202 gtk_fixed_put(GTK_FIXED(priv->fixed), GTK_WIDGET(textbox), textbox->x, textbox->y); |
2982 | 203 |
2980
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
204 return GTK_WIDGET(textbox); |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
205 } |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
206 |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
207 static void ui_skinned_textbox_destroy(GtkObject *object) { |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
208 UiSkinnedTextbox *textbox; |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
209 |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
210 g_return_if_fail (object != NULL); |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
211 g_return_if_fail (UI_SKINNED_IS_TEXTBOX (object)); |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
212 |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
213 textbox = UI_SKINNED_TEXTBOX (object); |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
214 |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
215 if (GTK_OBJECT_CLASS (parent_class)->destroy) |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
216 (* GTK_OBJECT_CLASS (parent_class)->destroy) (object); |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
217 } |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
218 |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
219 static void ui_skinned_textbox_realize(GtkWidget *widget) { |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
220 UiSkinnedTextbox *textbox; |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
221 GdkWindowAttr attributes; |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
222 gint attributes_mask; |
2911 | 223 |
2980
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
224 g_return_if_fail (widget != NULL); |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
225 g_return_if_fail (UI_SKINNED_IS_TEXTBOX(widget)); |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
226 |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
227 GTK_WIDGET_SET_FLAGS(widget, GTK_REALIZED); |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
228 textbox = UI_SKINNED_TEXTBOX(widget); |
2911 | 229 |
2980
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
230 attributes.x = widget->allocation.x; |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
231 attributes.y = widget->allocation.y; |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
232 attributes.width = widget->allocation.width; |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
233 attributes.height = widget->allocation.height; |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
234 attributes.wclass = GDK_INPUT_OUTPUT; |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
235 attributes.window_type = GDK_WINDOW_CHILD; |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
236 attributes.event_mask = gtk_widget_get_events(widget); |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
237 attributes.event_mask |= GDK_EXPOSURE_MASK | GDK_BUTTON_PRESS_MASK | |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
238 GDK_BUTTON_RELEASE_MASK | GDK_POINTER_MOTION_MASK | |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
239 GDK_POINTER_MOTION_HINT_MASK; |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
240 attributes.visual = gtk_widget_get_visual(widget); |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
241 attributes.colormap = gtk_widget_get_colormap(widget); |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
242 |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
243 attributes_mask = GDK_WA_X | GDK_WA_Y | GDK_WA_VISUAL | GDK_WA_COLORMAP; |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
244 widget->window = gdk_window_new(widget->parent->window, &attributes, attributes_mask); |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
245 |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
246 widget->style = gtk_style_attach(widget->style, widget->window); |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
247 |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
248 gdk_window_set_user_data(widget->window, widget); |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
249 } |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
250 |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
251 static void ui_skinned_textbox_size_request(GtkWidget *widget, GtkRequisition *requisition) { |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
252 UiSkinnedTextbox *textbox = UI_SKINNED_TEXTBOX(widget); |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
253 UiSkinnedTextboxPrivate *priv = UI_SKINNED_TEXTBOX_GET_PRIVATE(textbox); |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
254 |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
255 requisition->width = textbox->width*(1+priv->double_size); |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
256 requisition->height = textbox->height*(1+priv->double_size); |
2911 | 257 } |
258 | |
259 static void ui_skinned_textbox_size_allocate(GtkWidget *widget, GtkAllocation *allocation) { | |
2965
f84d09bada0f
correct _move_relative() and _resize_relative()
Tomasz Mon <desowin@gmail.com>
parents:
2962
diff
changeset
|
260 g_mutex_lock(mutex); |
2911 | 261 UiSkinnedTextbox *textbox = UI_SKINNED_TEXTBOX (widget); |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
262 UiSkinnedTextboxPrivate *priv = UI_SKINNED_TEXTBOX_GET_PRIVATE(textbox); |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
263 |
2911 | 264 widget->allocation = *allocation; |
3011
99865f696f13
don't use gtk_widget_set_uposition()
Tomasz Mon <desowin@gmail.com>
parents:
3005
diff
changeset
|
265 widget->allocation.x *= (1+priv->double_size); |
99865f696f13
don't use gtk_widget_set_uposition()
Tomasz Mon <desowin@gmail.com>
parents:
3005
diff
changeset
|
266 widget->allocation.y *= (1+priv->double_size); |
2980
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
267 if (GTK_WIDGET_REALIZED (widget)) |
3011
99865f696f13
don't use gtk_widget_set_uposition()
Tomasz Mon <desowin@gmail.com>
parents:
3005
diff
changeset
|
268 gdk_window_move_resize(widget->window, widget->allocation.x, widget->allocation.y, allocation->width, allocation->height); |
2911 | 269 |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
270 textbox->x = widget->allocation.x/(priv->double_size ? 2 : 1); |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
271 textbox->y = widget->allocation.y/(priv->double_size ? 2 : 1); |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
272 priv->move_x = 0; |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
273 priv->move_y = 0; |
2919 | 274 |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
275 if (textbox->width != widget->allocation.width/(priv->double_size ? 2 : 1)) { |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
276 textbox->width = widget->allocation.width/(priv->double_size ? 2 : 1); |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
277 priv->resize_width = 0; |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
278 priv->resize_height = 0; |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
279 if (priv->pixmap_text) g_free(priv->pixmap_text); |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
280 priv->pixmap_text = NULL; |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
281 priv->offset = 0; |
2965
f84d09bada0f
correct _move_relative() and _resize_relative()
Tomasz Mon <desowin@gmail.com>
parents:
2962
diff
changeset
|
282 gtk_widget_queue_draw(GTK_WIDGET(textbox)); |
2919 | 283 } |
2965
f84d09bada0f
correct _move_relative() and _resize_relative()
Tomasz Mon <desowin@gmail.com>
parents:
2962
diff
changeset
|
284 g_mutex_unlock(mutex); |
2911 | 285 } |
286 | |
2980
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
287 static gboolean ui_skinned_textbox_expose(GtkWidget *widget, GdkEventExpose *event) { |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
288 g_return_val_if_fail (widget != NULL, FALSE); |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
289 g_return_val_if_fail (UI_SKINNED_IS_TEXTBOX (widget), FALSE); |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
290 g_return_val_if_fail (event != NULL, FALSE); |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
291 |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
292 UiSkinnedTextbox *textbox = UI_SKINNED_TEXTBOX (widget); |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
293 UiSkinnedTextboxPrivate *priv = UI_SKINNED_TEXTBOX_GET_PRIVATE(textbox); |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
294 |
2998
c200d6764e91
fix expose events, thanks to giacomo
Tomasz Mon <desowin@gmail.com>
parents:
2997
diff
changeset
|
295 GdkPixmap *obj = NULL; |
3005
3db40ad79fd9
request GdkGC when needed rather than carry one around
Tomasz Mon <desowin@gmail.com>
parents:
2998
diff
changeset
|
296 GdkGC *gc; |
2998
c200d6764e91
fix expose events, thanks to giacomo
Tomasz Mon <desowin@gmail.com>
parents:
2997
diff
changeset
|
297 gint cw; |
2980
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
298 |
2998
c200d6764e91
fix expose events, thanks to giacomo
Tomasz Mon <desowin@gmail.com>
parents:
2997
diff
changeset
|
299 if (textbox->text && (!priv->pixmap_text || strcmp(textbox->text, priv->pixmap_text))) |
c200d6764e91
fix expose events, thanks to giacomo
Tomasz Mon <desowin@gmail.com>
parents:
2997
diff
changeset
|
300 textbox_generate_pixmap(textbox); |
c200d6764e91
fix expose events, thanks to giacomo
Tomasz Mon <desowin@gmail.com>
parents:
2997
diff
changeset
|
301 |
c200d6764e91
fix expose events, thanks to giacomo
Tomasz Mon <desowin@gmail.com>
parents:
2997
diff
changeset
|
302 if (priv->pixmap) { |
c200d6764e91
fix expose events, thanks to giacomo
Tomasz Mon <desowin@gmail.com>
parents:
2997
diff
changeset
|
303 if (skin_get_id() != priv->skin_id) { |
c200d6764e91
fix expose events, thanks to giacomo
Tomasz Mon <desowin@gmail.com>
parents:
2997
diff
changeset
|
304 priv->skin_id = skin_get_id(); |
2980
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
305 textbox_generate_pixmap(textbox); |
2998
c200d6764e91
fix expose events, thanks to giacomo
Tomasz Mon <desowin@gmail.com>
parents:
2997
diff
changeset
|
306 } |
c200d6764e91
fix expose events, thanks to giacomo
Tomasz Mon <desowin@gmail.com>
parents:
2997
diff
changeset
|
307 obj = gdk_pixmap_new(NULL, textbox->width, textbox->height, gdk_rgb_get_visual()->depth); |
3005
3db40ad79fd9
request GdkGC when needed rather than carry one around
Tomasz Mon <desowin@gmail.com>
parents:
2998
diff
changeset
|
308 gc = gdk_gc_new(obj); |
2980
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
309 |
2998
c200d6764e91
fix expose events, thanks to giacomo
Tomasz Mon <desowin@gmail.com>
parents:
2997
diff
changeset
|
310 if (cfg.twoway_scroll) { // twoway scroll |
c200d6764e91
fix expose events, thanks to giacomo
Tomasz Mon <desowin@gmail.com>
parents:
2997
diff
changeset
|
311 cw = priv->pixmap_width - priv->offset; |
c200d6764e91
fix expose events, thanks to giacomo
Tomasz Mon <desowin@gmail.com>
parents:
2997
diff
changeset
|
312 if (cw > textbox->width) |
c200d6764e91
fix expose events, thanks to giacomo
Tomasz Mon <desowin@gmail.com>
parents:
2997
diff
changeset
|
313 cw = textbox->width; |
3005
3db40ad79fd9
request GdkGC when needed rather than carry one around
Tomasz Mon <desowin@gmail.com>
parents:
2998
diff
changeset
|
314 gdk_draw_drawable(obj, gc, priv->pixmap, priv->offset, 0, 0, 0, cw, textbox->height); |
2998
c200d6764e91
fix expose events, thanks to giacomo
Tomasz Mon <desowin@gmail.com>
parents:
2997
diff
changeset
|
315 if (cw < textbox->width) |
3005
3db40ad79fd9
request GdkGC when needed rather than carry one around
Tomasz Mon <desowin@gmail.com>
parents:
2998
diff
changeset
|
316 gdk_draw_drawable(obj, gc, priv->pixmap, 0, 0, |
2998
c200d6764e91
fix expose events, thanks to giacomo
Tomasz Mon <desowin@gmail.com>
parents:
2997
diff
changeset
|
317 textbox->x + cw, textbox->y, |
c200d6764e91
fix expose events, thanks to giacomo
Tomasz Mon <desowin@gmail.com>
parents:
2997
diff
changeset
|
318 textbox->width - cw, textbox->height); |
c200d6764e91
fix expose events, thanks to giacomo
Tomasz Mon <desowin@gmail.com>
parents:
2997
diff
changeset
|
319 } else { // oneway scroll |
c200d6764e91
fix expose events, thanks to giacomo
Tomasz Mon <desowin@gmail.com>
parents:
2997
diff
changeset
|
320 int cw1, cw2; |
2980
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
321 |
2998
c200d6764e91
fix expose events, thanks to giacomo
Tomasz Mon <desowin@gmail.com>
parents:
2997
diff
changeset
|
322 if (priv->offset >= priv->pixmap_width) |
c200d6764e91
fix expose events, thanks to giacomo
Tomasz Mon <desowin@gmail.com>
parents:
2997
diff
changeset
|
323 priv->offset = 0; |
2911 | 324 |
2998
c200d6764e91
fix expose events, thanks to giacomo
Tomasz Mon <desowin@gmail.com>
parents:
2997
diff
changeset
|
325 if (priv->pixmap_width - priv->offset > textbox->width) { // case1 |
c200d6764e91
fix expose events, thanks to giacomo
Tomasz Mon <desowin@gmail.com>
parents:
2997
diff
changeset
|
326 cw1 = textbox->width; |
3005
3db40ad79fd9
request GdkGC when needed rather than carry one around
Tomasz Mon <desowin@gmail.com>
parents:
2998
diff
changeset
|
327 gdk_draw_drawable(obj, gc, priv->pixmap, priv->offset, 0, |
2998
c200d6764e91
fix expose events, thanks to giacomo
Tomasz Mon <desowin@gmail.com>
parents:
2997
diff
changeset
|
328 0, 0, cw1, textbox->height); |
c200d6764e91
fix expose events, thanks to giacomo
Tomasz Mon <desowin@gmail.com>
parents:
2997
diff
changeset
|
329 } else { // case 2 |
c200d6764e91
fix expose events, thanks to giacomo
Tomasz Mon <desowin@gmail.com>
parents:
2997
diff
changeset
|
330 cw1 = priv->pixmap_width - priv->offset; |
3005
3db40ad79fd9
request GdkGC when needed rather than carry one around
Tomasz Mon <desowin@gmail.com>
parents:
2998
diff
changeset
|
331 gdk_draw_drawable(obj, gc, priv->pixmap, priv->offset, 0, |
2998
c200d6764e91
fix expose events, thanks to giacomo
Tomasz Mon <desowin@gmail.com>
parents:
2997
diff
changeset
|
332 0, 0, cw1, textbox->height); |
c200d6764e91
fix expose events, thanks to giacomo
Tomasz Mon <desowin@gmail.com>
parents:
2997
diff
changeset
|
333 cw2 = textbox->width - cw1; |
3005
3db40ad79fd9
request GdkGC when needed rather than carry one around
Tomasz Mon <desowin@gmail.com>
parents:
2998
diff
changeset
|
334 gdk_draw_drawable(obj, gc, priv->pixmap, 0, 0, cw1, 0, cw2, textbox->height); |
2980
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
335 } |
2998
c200d6764e91
fix expose events, thanks to giacomo
Tomasz Mon <desowin@gmail.com>
parents:
2997
diff
changeset
|
336 |
c200d6764e91
fix expose events, thanks to giacomo
Tomasz Mon <desowin@gmail.com>
parents:
2997
diff
changeset
|
337 } |
c200d6764e91
fix expose events, thanks to giacomo
Tomasz Mon <desowin@gmail.com>
parents:
2997
diff
changeset
|
338 if (priv->img) |
c200d6764e91
fix expose events, thanks to giacomo
Tomasz Mon <desowin@gmail.com>
parents:
2997
diff
changeset
|
339 g_object_unref(priv->img); |
c200d6764e91
fix expose events, thanks to giacomo
Tomasz Mon <desowin@gmail.com>
parents:
2997
diff
changeset
|
340 priv->img = gdk_pixmap_new(NULL, textbox->width*(1+priv->double_size), |
c200d6764e91
fix expose events, thanks to giacomo
Tomasz Mon <desowin@gmail.com>
parents:
2997
diff
changeset
|
341 textbox->height*(1+priv->double_size), |
c200d6764e91
fix expose events, thanks to giacomo
Tomasz Mon <desowin@gmail.com>
parents:
2997
diff
changeset
|
342 gdk_rgb_get_visual()->depth); |
2980
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
343 |
2998
c200d6764e91
fix expose events, thanks to giacomo
Tomasz Mon <desowin@gmail.com>
parents:
2997
diff
changeset
|
344 if (priv->double_size) { |
c200d6764e91
fix expose events, thanks to giacomo
Tomasz Mon <desowin@gmail.com>
parents:
2997
diff
changeset
|
345 GdkImage *img, *img2x; |
c200d6764e91
fix expose events, thanks to giacomo
Tomasz Mon <desowin@gmail.com>
parents:
2997
diff
changeset
|
346 img = gdk_drawable_get_image(obj, 0, 0, textbox->width, textbox->height); |
c200d6764e91
fix expose events, thanks to giacomo
Tomasz Mon <desowin@gmail.com>
parents:
2997
diff
changeset
|
347 img2x = create_dblsize_image(img); |
3005
3db40ad79fd9
request GdkGC when needed rather than carry one around
Tomasz Mon <desowin@gmail.com>
parents:
2998
diff
changeset
|
348 gdk_draw_image (priv->img, gc, img2x, 0, 0, 0, 0, textbox->width*2, textbox->height*2); |
2998
c200d6764e91
fix expose events, thanks to giacomo
Tomasz Mon <desowin@gmail.com>
parents:
2997
diff
changeset
|
349 g_object_unref(img2x); |
c200d6764e91
fix expose events, thanks to giacomo
Tomasz Mon <desowin@gmail.com>
parents:
2997
diff
changeset
|
350 g_object_unref(img); |
c200d6764e91
fix expose events, thanks to giacomo
Tomasz Mon <desowin@gmail.com>
parents:
2997
diff
changeset
|
351 } else |
3005
3db40ad79fd9
request GdkGC when needed rather than carry one around
Tomasz Mon <desowin@gmail.com>
parents:
2998
diff
changeset
|
352 gdk_draw_drawable (priv->img, gc, obj, 0, 0, 0, 0, textbox->width, textbox->height); |
2998
c200d6764e91
fix expose events, thanks to giacomo
Tomasz Mon <desowin@gmail.com>
parents:
2997
diff
changeset
|
353 |
c200d6764e91
fix expose events, thanks to giacomo
Tomasz Mon <desowin@gmail.com>
parents:
2997
diff
changeset
|
354 |
c200d6764e91
fix expose events, thanks to giacomo
Tomasz Mon <desowin@gmail.com>
parents:
2997
diff
changeset
|
355 g_object_unref(obj); |
3005
3db40ad79fd9
request GdkGC when needed rather than carry one around
Tomasz Mon <desowin@gmail.com>
parents:
2998
diff
changeset
|
356 |
3db40ad79fd9
request GdkGC when needed rather than carry one around
Tomasz Mon <desowin@gmail.com>
parents:
2998
diff
changeset
|
357 gdk_draw_drawable (widget->window, gc, priv->img, 0, 0, 0, 0, |
3db40ad79fd9
request GdkGC when needed rather than carry one around
Tomasz Mon <desowin@gmail.com>
parents:
2998
diff
changeset
|
358 textbox->width*(1+priv->double_size), textbox->height*(1+priv->double_size)); |
3db40ad79fd9
request GdkGC when needed rather than carry one around
Tomasz Mon <desowin@gmail.com>
parents:
2998
diff
changeset
|
359 g_object_unref(gc); |
2980
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
360 } |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
361 |
2998
c200d6764e91
fix expose events, thanks to giacomo
Tomasz Mon <desowin@gmail.com>
parents:
2997
diff
changeset
|
362 return FALSE; |
2980
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
363 } |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
364 |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
365 static gboolean ui_skinned_textbox_button_press(GtkWidget *widget, GdkEventButton *event) { |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
366 g_return_val_if_fail (widget != NULL, FALSE); |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
367 g_return_val_if_fail (UI_SKINNED_IS_TEXTBOX (widget), FALSE); |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
368 g_return_val_if_fail (event != NULL, FALSE); |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
369 |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
370 UiSkinnedTextbox *textbox = UI_SKINNED_TEXTBOX (widget); |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
371 UiSkinnedTextboxPrivate *priv = UI_SKINNED_TEXTBOX_GET_PRIVATE(textbox); |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
372 |
2911 | 373 if (event->type == GDK_BUTTON_PRESS) { |
374 textbox = UI_SKINNED_TEXTBOX(widget); | |
375 if (event->button == 1) { | |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
376 if (priv->scroll_allowed) { |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
377 if ((priv->pixmap_width > textbox->width) && priv->is_scrollable) { |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
378 priv->is_dragging = TRUE; |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
379 priv->drag_off = priv->offset; |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
380 priv->drag_x = event->x; |
2942
1a59a0ced6a8
make scrolling stop for second when it reaches end, replace remaining mainwin TextBox with UiSkinnedTextbox
Tomasz Mon <desowin@gmail.com>
parents:
2920
diff
changeset
|
381 } |
1a59a0ced6a8
make scrolling stop for second when it reaches end, replace remaining mainwin TextBox with UiSkinnedTextbox
Tomasz Mon <desowin@gmail.com>
parents:
2920
diff
changeset
|
382 } else |
1a59a0ced6a8
make scrolling stop for second when it reaches end, replace remaining mainwin TextBox with UiSkinnedTextbox
Tomasz Mon <desowin@gmail.com>
parents:
2920
diff
changeset
|
383 g_signal_emit(widget, textbox_signals[CLICKED], 0); |
1a59a0ced6a8
make scrolling stop for second when it reaches end, replace remaining mainwin TextBox with UiSkinnedTextbox
Tomasz Mon <desowin@gmail.com>
parents:
2920
diff
changeset
|
384 |
2911 | 385 } |
386 } else if (event->type == GDK_2BUTTON_PRESS) { | |
387 if (event->button == 1) { | |
388 g_signal_emit(widget, textbox_signals[DOUBLE_CLICKED], 0); | |
389 } | |
390 } | |
2980
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
391 |
2991
f7604f7d8e41
ui_skinned_textbox_button_release is no longer lost
Tomasz Mon <desowin@gmail.com>
parents:
2983
diff
changeset
|
392 return TRUE; |
2911 | 393 } |
394 | |
2980
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
395 static gboolean ui_skinned_textbox_button_release(GtkWidget *widget, GdkEventButton *event) { |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
396 UiSkinnedTextboxPrivate *priv = UI_SKINNED_TEXTBOX_GET_PRIVATE(widget); |
2980
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
397 |
2911 | 398 if (event->button == 1) { |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
399 priv->is_dragging = FALSE; |
2997
0adc8c00fc57
correct right-clicked signal
Tomasz Mon <desowin@gmail.com>
parents:
2996
diff
changeset
|
400 } else if (event->button == 3) { |
0adc8c00fc57
correct right-clicked signal
Tomasz Mon <desowin@gmail.com>
parents:
2996
diff
changeset
|
401 g_signal_emit(widget, textbox_signals[RIGHT_CLICKED], 0); |
2911 | 402 } |
403 | |
2997
0adc8c00fc57
correct right-clicked signal
Tomasz Mon <desowin@gmail.com>
parents:
2996
diff
changeset
|
404 return TRUE; |
2911 | 405 } |
406 | |
407 static gboolean ui_skinned_textbox_motion_notify(GtkWidget *widget, GdkEventMotion *event) { | |
2980
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
408 g_return_val_if_fail (widget != NULL, FALSE); |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
409 g_return_val_if_fail (UI_SKINNED_IS_TEXTBOX (widget), FALSE); |
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
410 g_return_val_if_fail (event != NULL, FALSE); |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
411 UiSkinnedTextbox *textbox = UI_SKINNED_TEXTBOX(widget); |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
412 UiSkinnedTextboxPrivate *priv = UI_SKINNED_TEXTBOX_GET_PRIVATE(widget); |
2911 | 413 |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
414 if (priv->is_dragging) { |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
415 if (priv->scroll_allowed && |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
416 priv->pixmap_width > textbox->width) { |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
417 priv->offset = priv->drag_off - (event->x - priv->drag_x); |
2911 | 418 |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
419 while (priv->offset < 0) |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
420 priv->offset = 0; |
2911 | 421 |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
422 while (priv->offset > (priv->pixmap_width - textbox->width)) |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
423 priv->offset = (priv->pixmap_width - textbox->width); |
2911 | 424 |
2965
f84d09bada0f
correct _move_relative() and _resize_relative()
Tomasz Mon <desowin@gmail.com>
parents:
2962
diff
changeset
|
425 gtk_widget_queue_draw(widget); |
2911 | 426 } |
427 } | |
428 | |
2997
0adc8c00fc57
correct right-clicked signal
Tomasz Mon <desowin@gmail.com>
parents:
2996
diff
changeset
|
429 return TRUE; |
2911 | 430 } |
431 | |
432 static void ui_skinned_textbox_toggle_doublesize(UiSkinnedTextbox *textbox) { | |
433 GtkWidget *widget = GTK_WIDGET (textbox); | |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
434 UiSkinnedTextboxPrivate *priv = UI_SKINNED_TEXTBOX_GET_PRIVATE(textbox); |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
435 |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
436 priv->double_size = !priv->double_size; |
2911 | 437 |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
438 gtk_widget_set_size_request(widget, textbox->width*(1+priv->double_size), textbox->height*(1+priv->double_size)); |
2911 | 439 |
2962
ba45ef731cf1
don't call ui_skinned_textbox_paint() directly, use gtk_widget_queue_draw() instead; fix ui_skinned_textbox_expose()
Tomasz Mon <desowin@gmail.com>
parents:
2961
diff
changeset
|
440 gtk_widget_queue_draw(GTK_WIDGET(textbox)); |
2911 | 441 } |
442 | |
443 static void ui_skinned_textbox_redraw(UiSkinnedTextbox *textbox) { | |
2965
f84d09bada0f
correct _move_relative() and _resize_relative()
Tomasz Mon <desowin@gmail.com>
parents:
2962
diff
changeset
|
444 g_mutex_lock(mutex); |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
445 UiSkinnedTextboxPrivate *priv = UI_SKINNED_TEXTBOX_GET_PRIVATE(textbox); |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
446 |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
447 if (priv->resize_width || priv->resize_height) |
2965
f84d09bada0f
correct _move_relative() and _resize_relative()
Tomasz Mon <desowin@gmail.com>
parents:
2962
diff
changeset
|
448 gtk_widget_set_size_request(GTK_WIDGET(textbox), |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
449 (textbox->width+priv->resize_width)*(1+priv->double_size), |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
450 (textbox->height+priv->resize_height)*(1+priv->double_size)); |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
451 if (priv->move_x || priv->move_y) |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
452 gtk_fixed_move(GTK_FIXED(priv->fixed), GTK_WIDGET(textbox), textbox->x+priv->move_x, textbox->y+priv->move_y); |
2965
f84d09bada0f
correct _move_relative() and _resize_relative()
Tomasz Mon <desowin@gmail.com>
parents:
2962
diff
changeset
|
453 |
2962
ba45ef731cf1
don't call ui_skinned_textbox_paint() directly, use gtk_widget_queue_draw() instead; fix ui_skinned_textbox_expose()
Tomasz Mon <desowin@gmail.com>
parents:
2961
diff
changeset
|
454 gtk_widget_queue_draw(GTK_WIDGET(textbox)); |
2965
f84d09bada0f
correct _move_relative() and _resize_relative()
Tomasz Mon <desowin@gmail.com>
parents:
2962
diff
changeset
|
455 g_mutex_unlock(mutex); |
2911 | 456 } |
457 | |
458 static gboolean ui_skinned_textbox_should_scroll(UiSkinnedTextbox *textbox) { | |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
459 UiSkinnedTextboxPrivate *priv = UI_SKINNED_TEXTBOX_GET_PRIVATE(textbox); |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
460 |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
461 if (!priv->scroll_allowed) |
2911 | 462 return FALSE; |
463 | |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
464 if (priv->font) { |
2911 | 465 gint width; |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
466 text_get_extents(priv->fontname, textbox->text, &width, NULL, NULL, NULL); |
2911 | 467 |
2947 | 468 if (width <= textbox->width) |
2911 | 469 return FALSE; |
470 else | |
471 return TRUE; | |
472 } | |
473 | |
2947 | 474 if (g_utf8_strlen(textbox->text, -1) * bmp_active_skin->properties.textbox_bitmap_font_width > textbox->width) |
2911 | 475 return TRUE; |
476 | |
477 return FALSE; | |
478 } | |
479 | |
480 void ui_skinned_textbox_set_xfont(GtkWidget *widget, gboolean use_xfont, const gchar * fontname) { | |
481 UiSkinnedTextbox *textbox = UI_SKINNED_TEXTBOX (widget); | |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
482 UiSkinnedTextboxPrivate *priv = UI_SKINNED_TEXTBOX_GET_PRIVATE(textbox); |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
483 |
2911 | 484 gint ascent, descent; |
485 | |
486 g_return_if_fail(textbox != NULL); | |
487 | |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
488 if (priv->font) { |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
489 pango_font_description_free(priv->font); |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
490 priv->font = NULL; |
2911 | 491 } |
492 | |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
493 textbox->y = priv->nominal_y; |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
494 textbox->height = priv->nominal_height; |
2911 | 495 |
496 /* Make sure the pixmap is regenerated */ | |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
497 if (priv->pixmap_text) { |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
498 g_free(priv->pixmap_text); |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
499 priv->pixmap_text = NULL; |
2911 | 500 } |
501 | |
502 if (!use_xfont || strlen(fontname) == 0) | |
503 return; | |
504 | |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
505 priv->font = pango_font_description_from_string(fontname); |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
506 priv->fontname = g_strdup(fontname); |
2911 | 507 |
508 text_get_extents(fontname, | |
509 "AaBbCcDdEeFfGgHhIiJjKkLlMmNnOoPpQqRrSsTtUuVvWwXxYyZz ", | |
510 NULL, NULL, &ascent, &descent); | |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
511 priv->font_ascent = ascent; |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
512 priv->font_descent = descent; |
2911 | 513 |
514 | |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
515 if (priv->font == NULL) |
2911 | 516 return; |
517 | |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
518 textbox->height = priv->font_ascent; |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
519 if (textbox->height > priv->nominal_height) |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
520 textbox->y -= (textbox->height - priv->nominal_height) / 2; |
2911 | 521 else |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
522 textbox->height = priv->nominal_height; |
2911 | 523 } |
524 | |
525 void ui_skinned_textbox_set_text(GtkWidget *widget, const gchar *text) { | |
526 g_return_if_fail(text != NULL); | |
527 UiSkinnedTextbox *textbox = UI_SKINNED_TEXTBOX (widget); | |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
528 UiSkinnedTextboxPrivate *priv = UI_SKINNED_TEXTBOX_GET_PRIVATE(textbox); |
2911 | 529 |
2957
c859aa1a1a4e
don't update text if it haven't changed
Tomasz Mon <desowin@gmail.com>
parents:
2956
diff
changeset
|
530 if (!strcmp(textbox->text, text)) |
c859aa1a1a4e
don't update text if it haven't changed
Tomasz Mon <desowin@gmail.com>
parents:
2956
diff
changeset
|
531 return; |
2951
4586c0951eab
Handle multibyte sequences properly when encountered.
William Pitcock <nenolod@atheme-project.org>
parents:
2949
diff
changeset
|
532 if (textbox->text) |
2911 | 533 g_free(textbox->text); |
534 | |
2952
cb15e12b6352
Preserve capitalization for xfont users.
William Pitcock <nenolod@atheme-project.org>
parents:
2951
diff
changeset
|
535 textbox->text = str_to_utf8(text); |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
536 priv->scroll_back = FALSE; |
2981
3bd337a93c9d
oops, those shouldn't be commented
Tomasz Mon <desowin@gmail.com>
parents:
2980
diff
changeset
|
537 gtk_widget_queue_draw(GTK_WIDGET(textbox)); |
2911 | 538 } |
539 | |
540 static void textbox_generate_xfont_pixmap(UiSkinnedTextbox *textbox, const gchar *pixmaptext) { | |
541 gint length, i; | |
542 GdkGC *gc, *maskgc; | |
543 GdkColor *c, pattern; | |
544 GdkBitmap *mask; | |
545 PangoLayout *layout; | |
546 gint width; | |
547 | |
548 g_return_if_fail(textbox != NULL); | |
549 g_return_if_fail(pixmaptext != NULL); | |
550 | |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
551 UiSkinnedTextboxPrivate *priv = UI_SKINNED_TEXTBOX_GET_PRIVATE(textbox); |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
552 |
2911 | 553 length = g_utf8_strlen(pixmaptext, -1); |
554 | |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
555 text_get_extents(priv->fontname, pixmaptext, &width, NULL, NULL, NULL); |
2911 | 556 |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
557 priv->pixmap_width = MAX(width, textbox->width); |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
558 priv->pixmap = gdk_pixmap_new(mainwin->window, priv->pixmap_width, |
2911 | 559 textbox->height, |
560 gdk_rgb_get_visual()->depth); | |
3005
3db40ad79fd9
request GdkGC when needed rather than carry one around
Tomasz Mon <desowin@gmail.com>
parents:
2998
diff
changeset
|
561 gc = gdk_gc_new(priv->pixmap); |
2911 | 562 c = skin_get_color(bmp_active_skin, SKIN_TEXTBG); |
563 for (i = 0; i < textbox->height; i++) { | |
564 gdk_gc_set_foreground(gc, &c[6 * i / textbox->height]); | |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
565 gdk_draw_line(priv->pixmap, gc, 0, i, priv->pixmap_width, i); |
2911 | 566 } |
567 | |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
568 mask = gdk_pixmap_new(mainwin->window, priv->pixmap_width, textbox->height, 1); |
2911 | 569 maskgc = gdk_gc_new(mask); |
570 pattern.pixel = 0; | |
571 gdk_gc_set_foreground(maskgc, &pattern); | |
572 | |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
573 gdk_draw_rectangle(mask, maskgc, TRUE, 0, 0, priv->pixmap_width, textbox->height); |
2911 | 574 pattern.pixel = 1; |
575 gdk_gc_set_foreground(maskgc, &pattern); | |
576 | |
577 gdk_gc_set_foreground(gc, skin_get_color(bmp_active_skin, SKIN_TEXTFG)); | |
578 | |
579 layout = gtk_widget_create_pango_layout(mainwin, pixmaptext); | |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
580 pango_layout_set_font_description(layout, priv->font); |
2911 | 581 |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
582 gdk_draw_layout(priv->pixmap, gc, 0, (priv->font_descent / 2), layout); |
2911 | 583 g_object_unref(layout); |
584 | |
585 g_object_unref(maskgc); | |
586 | |
587 gdk_gc_set_clip_mask(gc, mask); | |
588 c = skin_get_color(bmp_active_skin, SKIN_TEXTFG); | |
589 for (i = 0; i < textbox->height; i++) { | |
590 gdk_gc_set_foreground(gc, &c[6 * i / textbox->height]); | |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
591 gdk_draw_line(priv->pixmap, gc, 0, i, priv->pixmap_width, i); |
2911 | 592 } |
593 g_object_unref(mask); | |
3005
3db40ad79fd9
request GdkGC when needed rather than carry one around
Tomasz Mon <desowin@gmail.com>
parents:
2998
diff
changeset
|
594 g_object_unref(gc); |
2911 | 595 } |
596 | |
597 static gboolean textbox_scroll(gpointer data) { | |
598 UiSkinnedTextbox *textbox = UI_SKINNED_TEXTBOX(data); | |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
599 UiSkinnedTextboxPrivate *priv = UI_SKINNED_TEXTBOX_GET_PRIVATE(textbox); |
2911 | 600 |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
601 if (!priv->is_dragging) { |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
602 if (priv->scroll_dummy < TEXTBOX_SCROLL_WAIT) |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
603 priv->scroll_dummy++; |
2948
830fdbec31be
introduce scroll_dummy to stop scrolling when it reaches end
Tomasz Mon <desowin@gmail.com>
parents:
2947
diff
changeset
|
604 else { |
2968
83f03505f819
add support for one-way text scroll.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
2967
diff
changeset
|
605 if(cfg.twoway_scroll) { |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
606 if (priv->scroll_back) |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
607 priv->offset -= 1; |
2968
83f03505f819
add support for one-way text scroll.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
2967
diff
changeset
|
608 else |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
609 priv->offset += 1; |
2911 | 610 |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
611 if (priv->offset >= (priv->pixmap_width - textbox->width)) { |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
612 priv->scroll_back = TRUE; |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
613 priv->scroll_dummy = 0; |
2968
83f03505f819
add support for one-way text scroll.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
2967
diff
changeset
|
614 } |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
615 if (priv->offset <= 0) { |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
616 priv->scroll_back = FALSE; |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
617 priv->scroll_dummy = 0; |
2968
83f03505f819
add support for one-way text scroll.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
2967
diff
changeset
|
618 } |
2948
830fdbec31be
introduce scroll_dummy to stop scrolling when it reaches end
Tomasz Mon <desowin@gmail.com>
parents:
2947
diff
changeset
|
619 } |
2968
83f03505f819
add support for one-way text scroll.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
2967
diff
changeset
|
620 else { // oneway scroll |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
621 priv->scroll_back = FALSE; |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
622 priv->offset += 1; |
2948
830fdbec31be
introduce scroll_dummy to stop scrolling when it reaches end
Tomasz Mon <desowin@gmail.com>
parents:
2947
diff
changeset
|
623 } |
2965
f84d09bada0f
correct _move_relative() and _resize_relative()
Tomasz Mon <desowin@gmail.com>
parents:
2962
diff
changeset
|
624 gtk_widget_queue_draw(GTK_WIDGET(textbox)); |
2942
1a59a0ced6a8
make scrolling stop for second when it reaches end, replace remaining mainwin TextBox with UiSkinnedTextbox
Tomasz Mon <desowin@gmail.com>
parents:
2920
diff
changeset
|
625 } |
2911 | 626 } |
627 return TRUE; | |
628 } | |
629 | |
630 static void textbox_generate_pixmap(UiSkinnedTextbox *textbox) { | |
631 gint length, i, x, y, wl; | |
632 gchar *pixmaptext; | |
2953
80b6fc3f4d29
Fix invalid free.
William Pitcock <nenolod@atheme-project.org>
parents:
2952
diff
changeset
|
633 gchar *tmp, *stxt; |
2911 | 634 GdkGC *gc; |
2980
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
635 |
2911 | 636 g_return_if_fail(textbox != NULL); |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
637 UiSkinnedTextboxPrivate *priv = UI_SKINNED_TEXTBOX_GET_PRIVATE(textbox); |
2911 | 638 |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
639 if (priv->pixmap) { |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
640 g_object_unref(priv->pixmap); |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
641 priv->pixmap = NULL; |
2911 | 642 } |
643 | |
644 /* | |
645 * Don't reset the offset if only text after the last '(' has | |
646 * changed. This is a hack to avoid visual noice on vbr files | |
647 * where we guess the length. | |
648 */ | |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
649 if (!(priv->pixmap_text && strrchr(textbox->text, '(') && |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
650 !strncmp(priv->pixmap_text, textbox->text, |
2911 | 651 strrchr(textbox->text, '(') - textbox->text))) |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
652 priv->offset = 0; |
2911 | 653 |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
654 g_free(priv->pixmap_text); |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
655 priv->pixmap_text = g_strdup(textbox->text); |
2911 | 656 |
657 /* | |
658 * wl is the number of (partial) letters visible. Only makes | |
659 * sense when using skinned font. | |
660 */ | |
2947 | 661 wl = textbox->width / 5; |
662 if (wl * 5 != textbox->width) | |
2911 | 663 wl++; |
664 | |
665 length = g_utf8_strlen(textbox->text, -1); | |
666 | |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
667 priv->is_scrollable = FALSE; |
2911 | 668 |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
669 priv->is_scrollable = ui_skinned_textbox_should_scroll(textbox); |
2916
3ef909ed3056
fix clearing textbox when short text is displayed
Tomasz Mon <desowin@gmail.com>
parents:
2913
diff
changeset
|
670 |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
671 if (priv->is_scrollable) { |
2971 | 672 if(!cfg.twoway_scroll) { |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
673 pixmaptext = g_strdup_printf("%s *** ", priv->pixmap_text); |
2971 | 674 length += 5; |
675 } else | |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
676 pixmaptext = g_strdup(priv->pixmap_text); |
2971 | 677 } else |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
678 if (!priv->font && length <= wl) { |
2916
3ef909ed3056
fix clearing textbox when short text is displayed
Tomasz Mon <desowin@gmail.com>
parents:
2913
diff
changeset
|
679 gint pad = wl - length; |
3ef909ed3056
fix clearing textbox when short text is displayed
Tomasz Mon <desowin@gmail.com>
parents:
2913
diff
changeset
|
680 gchar *padchars = g_strnfill(pad, ' '); |
3ef909ed3056
fix clearing textbox when short text is displayed
Tomasz Mon <desowin@gmail.com>
parents:
2913
diff
changeset
|
681 |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
682 pixmaptext = g_strconcat(priv->pixmap_text, padchars, NULL); |
2916
3ef909ed3056
fix clearing textbox when short text is displayed
Tomasz Mon <desowin@gmail.com>
parents:
2913
diff
changeset
|
683 g_free(padchars); |
3ef909ed3056
fix clearing textbox when short text is displayed
Tomasz Mon <desowin@gmail.com>
parents:
2913
diff
changeset
|
684 length += pad; |
2971 | 685 } else |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
686 pixmaptext = g_strdup(priv->pixmap_text); |
2911 | 687 |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
688 if (priv->is_scrollable) { |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
689 if (priv->scroll_enabled && !priv->scroll_timeout) { |
2911 | 690 gint tag; |
691 tag = TEXTBOX_SCROLL_SMOOTH_TIMEOUT; | |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
692 priv->scroll_timeout = g_timeout_add(tag, textbox_scroll, textbox); |
2911 | 693 } |
694 } else { | |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
695 if (priv->scroll_timeout) { |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
696 g_source_remove(priv->scroll_timeout); |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
697 priv->scroll_timeout = 0; |
2911 | 698 } |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
699 priv->offset = 0; |
2911 | 700 } |
701 | |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
702 if (priv->font) { |
2911 | 703 textbox_generate_xfont_pixmap(textbox, pixmaptext); |
704 g_free(pixmaptext); | |
705 return; | |
706 } | |
707 | |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
708 priv->pixmap_width = length * bmp_active_skin->properties.textbox_bitmap_font_width; |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
709 priv->pixmap = gdk_pixmap_new(NULL, |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
710 priv->pixmap_width, bmp_active_skin->properties.textbox_bitmap_font_height, |
2911 | 711 gdk_rgb_get_visual()->depth); |
3005
3db40ad79fd9
request GdkGC when needed rather than carry one around
Tomasz Mon <desowin@gmail.com>
parents:
2998
diff
changeset
|
712 gc = gdk_gc_new(priv->pixmap); |
2911 | 713 |
2953
80b6fc3f4d29
Fix invalid free.
William Pitcock <nenolod@atheme-project.org>
parents:
2952
diff
changeset
|
714 for (tmp = stxt = g_utf8_strup(pixmaptext, -1), i = 0; |
2952
cb15e12b6352
Preserve capitalization for xfont users.
William Pitcock <nenolod@atheme-project.org>
parents:
2951
diff
changeset
|
715 tmp != NULL && i < length; i++, tmp = g_utf8_next_char(tmp)) { |
2951
4586c0951eab
Handle multibyte sequences properly when encountered.
William Pitcock <nenolod@atheme-project.org>
parents:
2949
diff
changeset
|
716 gchar c = *tmp; |
2911 | 717 x = y = -1; |
718 if (c >= 'A' && c <= 'Z') { | |
719 x = bmp_active_skin->properties.textbox_bitmap_font_width * (c - 'A'); | |
720 y = 0; | |
721 } | |
722 else if (c >= '0' && c <= '9') { | |
723 x = bmp_active_skin->properties.textbox_bitmap_font_width * (c - '0'); | |
724 y = bmp_active_skin->properties.textbox_bitmap_font_height; | |
725 } | |
726 else | |
727 textbox_handle_special_char(c, &x, &y); | |
728 | |
729 skin_draw_pixmap(bmp_active_skin, | |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
730 priv->pixmap, gc, priv->skin_index, |
2911 | 731 x, y, i * bmp_active_skin->properties.textbox_bitmap_font_width, 0, |
732 bmp_active_skin->properties.textbox_bitmap_font_width, | |
733 bmp_active_skin->properties.textbox_bitmap_font_height); | |
734 } | |
2953
80b6fc3f4d29
Fix invalid free.
William Pitcock <nenolod@atheme-project.org>
parents:
2952
diff
changeset
|
735 g_free(stxt); |
2911 | 736 g_free(pixmaptext); |
3005
3db40ad79fd9
request GdkGC when needed rather than carry one around
Tomasz Mon <desowin@gmail.com>
parents:
2998
diff
changeset
|
737 g_object_unref(gc); |
2911 | 738 } |
739 | |
740 void ui_skinned_textbox_set_scroll(GtkWidget *widget, gboolean scroll) { | |
741 g_return_if_fail(widget != NULL); | |
2980
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
742 UiSkinnedTextbox *textbox = UI_SKINNED_TEXTBOX(widget); |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
743 UiSkinnedTextboxPrivate *priv = UI_SKINNED_TEXTBOX_GET_PRIVATE(textbox); |
2911 | 744 |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
745 priv->scroll_enabled = scroll; |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
746 if (priv->scroll_enabled && priv->is_scrollable && priv->scroll_allowed) { |
2911 | 747 gint tag; |
748 tag = TEXTBOX_SCROLL_SMOOTH_TIMEOUT; | |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
749 if (priv->scroll_timeout) { |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
750 g_source_remove(priv->scroll_timeout); |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
751 priv->scroll_timeout = 0; |
2911 | 752 } |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
753 priv->scroll_timeout = g_timeout_add(tag, textbox_scroll, textbox); |
2911 | 754 |
755 } else { | |
756 | |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
757 if (priv->scroll_timeout) { |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
758 g_source_remove(priv->scroll_timeout); |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
759 priv->scroll_timeout = 0; |
2911 | 760 } |
761 | |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
762 priv->offset = 0; |
2981
3bd337a93c9d
oops, those shouldn't be commented
Tomasz Mon <desowin@gmail.com>
parents:
2980
diff
changeset
|
763 gtk_widget_queue_draw(GTK_WIDGET(textbox)); |
2911 | 764 } |
765 } | |
766 | |
2980
d58560be5a4c
draw directly instead using embeded GtkImage
Tomasz Mon <desowin@gmail.com>
parents:
2971
diff
changeset
|
767 static void textbox_handle_special_char(gchar c, gint * x, gint * y) { |
2911 | 768 gint tx, ty; |
769 | |
770 switch (c) { | |
771 case '"': | |
772 tx = 26; | |
773 ty = 0; | |
774 break; | |
775 case '\r': | |
776 tx = 10; | |
777 ty = 1; | |
778 break; | |
779 case ':': | |
780 case ';': | |
781 tx = 12; | |
782 ty = 1; | |
783 break; | |
784 case '(': | |
785 tx = 13; | |
786 ty = 1; | |
787 break; | |
788 case ')': | |
789 tx = 14; | |
790 ty = 1; | |
791 break; | |
792 case '-': | |
793 tx = 15; | |
794 ty = 1; | |
795 break; | |
796 case '`': | |
797 case '\'': | |
798 tx = 16; | |
799 ty = 1; | |
800 break; | |
801 case '!': | |
802 tx = 17; | |
803 ty = 1; | |
804 break; | |
805 case '_': | |
806 tx = 18; | |
807 ty = 1; | |
808 break; | |
809 case '+': | |
810 tx = 19; | |
811 ty = 1; | |
812 break; | |
813 case '\\': | |
814 tx = 20; | |
815 ty = 1; | |
816 break; | |
817 case '/': | |
818 tx = 21; | |
819 ty = 1; | |
820 break; | |
821 case '[': | |
822 tx = 22; | |
823 ty = 1; | |
824 break; | |
825 case ']': | |
826 tx = 23; | |
827 ty = 1; | |
828 break; | |
829 case '^': | |
830 tx = 24; | |
831 ty = 1; | |
832 break; | |
833 case '&': | |
834 tx = 25; | |
835 ty = 1; | |
836 break; | |
837 case '%': | |
838 tx = 26; | |
839 ty = 1; | |
840 break; | |
841 case '.': | |
842 case ',': | |
843 tx = 27; | |
844 ty = 1; | |
845 break; | |
846 case '=': | |
847 tx = 28; | |
848 ty = 1; | |
849 break; | |
850 case '$': | |
851 tx = 29; | |
852 ty = 1; | |
853 break; | |
854 case '#': | |
855 tx = 30; | |
856 ty = 1; | |
857 break; | |
858 case '?': | |
859 tx = 3; | |
860 ty = 2; | |
861 break; | |
862 case '*': | |
863 tx = 4; | |
864 ty = 2; | |
865 break; | |
866 default: | |
867 tx = 29; | |
868 ty = 0; | |
869 break; | |
870 } | |
871 | |
872 *x = tx * bmp_active_skin->properties.textbox_bitmap_font_width; | |
873 *y = ty * bmp_active_skin->properties.textbox_bitmap_font_height; | |
874 } | |
2943
a8f2c99727eb
replace Textbox in playlistwin with UiSkinnedTextbox, textbox.c no longer needed, temporary comment out g_usleep in textbox_scroll as it needs to be run as new thread
Tomasz Mon <desowin@gmail.com>
parents:
2942
diff
changeset
|
875 |
a8f2c99727eb
replace Textbox in playlistwin with UiSkinnedTextbox, textbox.c no longer needed, temporary comment out g_usleep in textbox_scroll as it needs to be run as new thread
Tomasz Mon <desowin@gmail.com>
parents:
2942
diff
changeset
|
876 void ui_skinned_textbox_move_relative(GtkWidget *widget, gint x, gint y) { |
2965
f84d09bada0f
correct _move_relative() and _resize_relative()
Tomasz Mon <desowin@gmail.com>
parents:
2962
diff
changeset
|
877 g_mutex_lock(mutex); |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
878 UiSkinnedTextboxPrivate *priv = UI_SKINNED_TEXTBOX_GET_PRIVATE(widget); |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
879 priv->move_x += x; |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
880 priv->move_y += y; |
2965
f84d09bada0f
correct _move_relative() and _resize_relative()
Tomasz Mon <desowin@gmail.com>
parents:
2962
diff
changeset
|
881 g_mutex_unlock(mutex); |
2943
a8f2c99727eb
replace Textbox in playlistwin with UiSkinnedTextbox, textbox.c no longer needed, temporary comment out g_usleep in textbox_scroll as it needs to be run as new thread
Tomasz Mon <desowin@gmail.com>
parents:
2942
diff
changeset
|
882 } |
2945
09c216d437b2
Backed out changeset 3c66c8d03c534692d1606ed3ed79634e227f7bd2
William Pitcock <nenolod@atheme.org>
parents:
2944
diff
changeset
|
883 |
09c216d437b2
Backed out changeset 3c66c8d03c534692d1606ed3ed79634e227f7bd2
William Pitcock <nenolod@atheme.org>
parents:
2944
diff
changeset
|
884 void ui_skinned_textbox_resize_relative(GtkWidget *widget, gint w, gint h) { |
2965
f84d09bada0f
correct _move_relative() and _resize_relative()
Tomasz Mon <desowin@gmail.com>
parents:
2962
diff
changeset
|
885 g_mutex_lock(mutex); |
2996
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
886 UiSkinnedTextboxPrivate *priv = UI_SKINNED_TEXTBOX_GET_PRIVATE(widget); |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
887 priv->resize_width += w; |
a2eb970ca669
bring back UiSkinnedTextboxPrivate
Tomasz Mon <desowin@gmail.com>
parents:
2991
diff
changeset
|
888 priv->resize_height += h; |
2965
f84d09bada0f
correct _move_relative() and _resize_relative()
Tomasz Mon <desowin@gmail.com>
parents:
2962
diff
changeset
|
889 g_mutex_unlock(mutex); |
2945
09c216d437b2
Backed out changeset 3c66c8d03c534692d1606ed3ed79634e227f7bd2
William Pitcock <nenolod@atheme.org>
parents:
2944
diff
changeset
|
890 } |