Mercurial > audlegacy
annotate src/audacious/ui_skinned_menurow.c @ 4098:fe0f7a72facd
Fix memory leak in input_stringify_disabled_list() (Bugzilla #25)
author | Jussi Judin <jjudin+audacious@iki.fi> |
---|---|
date | Wed, 19 Dec 2007 00:50:46 -0600 |
parents | d46d60247826 |
children | 1112f53ecc18 |
rev | line source |
---|---|
3071
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
1 /* |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
2 * Audacious - a cross-platform multimedia player |
3840 | 3 * Copyright (c) 2007 Tomasz Moń |
3071
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
4 * |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
5 * Based on: |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
6 * BMP - Cross-platform multimedia player |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
7 * Copyright (C) 2003-2004 BMP development team. |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
8 * XMMS: |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
9 * Copyright (C) 1998-2003 XMMS development team. |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
10 * |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
11 * This program is free software; you can redistribute it and/or modify |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
12 * it under the terms of the GNU General Public License as published by |
3121
3b6d316f8b09
GPL3 relicensing.
William Pitcock <nenolod@atheme-project.org>
parents:
3105
diff
changeset
|
13 * the Free Software Foundation; under version 3 of the License. |
3071
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
14 * |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
15 * This program is distributed in the hope that it will be useful, |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
18 * GNU General Public License for more details. |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
19 * |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
20 * You should have received a copy of the GNU General Public License |
3121
3b6d316f8b09
GPL3 relicensing.
William Pitcock <nenolod@atheme-project.org>
parents:
3105
diff
changeset
|
21 * along with this program. If not, see <http://www.gnu.org/licenses>. |
3123
f1c756f39e6c
Invoke "Plugins are not derived work" clause provided by GPL3.
William Pitcock <nenolod@atheme-project.org>
parents:
3121
diff
changeset
|
22 * |
f1c756f39e6c
Invoke "Plugins are not derived work" clause provided by GPL3.
William Pitcock <nenolod@atheme-project.org>
parents:
3121
diff
changeset
|
23 * The Audacious team does not consider modular code linking to |
f1c756f39e6c
Invoke "Plugins are not derived work" clause provided by GPL3.
William Pitcock <nenolod@atheme-project.org>
parents:
3121
diff
changeset
|
24 * Audacious or using our public API to be a derived work. |
3071
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
25 */ |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
26 |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
27 #include "ui_skinned_menurow.h" |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
28 #include "main.h" |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
29 #include "util.h" |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
30 |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
31 enum { |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
32 DOUBLED, |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
33 CHANGE, |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
34 RELEASE, |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
35 LAST_SIGNAL |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
36 }; |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
37 |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
38 static void ui_skinned_menurow_class_init (UiSkinnedMenurowClass *klass); |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
39 static void ui_skinned_menurow_init (UiSkinnedMenurow *menurow); |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
40 static void ui_skinned_menurow_destroy (GtkObject *object); |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
41 static void ui_skinned_menurow_realize (GtkWidget *widget); |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
42 static void ui_skinned_menurow_size_request (GtkWidget *widget, GtkRequisition *requisition); |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
43 static void ui_skinned_menurow_size_allocate (GtkWidget *widget, GtkAllocation *allocation); |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
44 static gboolean ui_skinned_menurow_expose (GtkWidget *widget, GdkEventExpose *event); |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
45 static MenuRowItem menurow_find_selected (UiSkinnedMenurow * mr, gint x, gint y); |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
46 static gboolean ui_skinned_menurow_button_press (GtkWidget *widget, GdkEventButton *event); |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
47 static gboolean ui_skinned_menurow_button_release (GtkWidget *widget, GdkEventButton *event); |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
48 static gboolean ui_skinned_menurow_motion_notify (GtkWidget *widget, GdkEventMotion *event); |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
49 static void ui_skinned_menurow_toggle_doublesize (UiSkinnedMenurow *menurow); |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
50 |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
51 static GtkWidgetClass *parent_class = NULL; |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
52 static guint menurow_signals[LAST_SIGNAL] = { 0 }; |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
53 |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
54 GType ui_skinned_menurow_get_type() { |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
55 static GType menurow_type = 0; |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
56 if (!menurow_type) { |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
57 static const GTypeInfo menurow_info = { |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
58 sizeof (UiSkinnedMenurowClass), |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
59 NULL, |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
60 NULL, |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
61 (GClassInitFunc) ui_skinned_menurow_class_init, |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
62 NULL, |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
63 NULL, |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
64 sizeof (UiSkinnedMenurow), |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
65 0, |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
66 (GInstanceInitFunc) ui_skinned_menurow_init, |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
67 }; |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
68 menurow_type = g_type_register_static (GTK_TYPE_WIDGET, "UiSkinnedMenurow", &menurow_info, 0); |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
69 } |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
70 |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
71 return menurow_type; |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
72 } |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
73 |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
74 static void ui_skinned_menurow_class_init(UiSkinnedMenurowClass *klass) { |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
75 GObjectClass *gobject_class; |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
76 GtkObjectClass *object_class; |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
77 GtkWidgetClass *widget_class; |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
78 |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
79 gobject_class = G_OBJECT_CLASS(klass); |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
80 object_class = (GtkObjectClass*) klass; |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
81 widget_class = (GtkWidgetClass*) klass; |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
82 parent_class = gtk_type_class (gtk_widget_get_type ()); |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
83 |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
84 object_class->destroy = ui_skinned_menurow_destroy; |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
85 |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
86 widget_class->realize = ui_skinned_menurow_realize; |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
87 widget_class->expose_event = ui_skinned_menurow_expose; |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
88 widget_class->size_request = ui_skinned_menurow_size_request; |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
89 widget_class->size_allocate = ui_skinned_menurow_size_allocate; |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
90 widget_class->button_press_event = ui_skinned_menurow_button_press; |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
91 widget_class->button_release_event = ui_skinned_menurow_button_release; |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
92 widget_class->motion_notify_event = ui_skinned_menurow_motion_notify; |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
93 |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
94 klass->doubled = ui_skinned_menurow_toggle_doublesize; |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
95 klass->change = NULL; |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
96 klass->release = NULL; |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
97 |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
98 menurow_signals[DOUBLED] = |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
99 g_signal_new ("toggle-double-size", G_OBJECT_CLASS_TYPE (object_class), G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION, |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
100 G_STRUCT_OFFSET (UiSkinnedMenurowClass, doubled), NULL, NULL, |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
101 gtk_marshal_VOID__VOID, G_TYPE_NONE, 0); |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
102 |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
103 |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
104 menurow_signals[CHANGE] = |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
105 g_signal_new ("change", G_OBJECT_CLASS_TYPE (object_class), G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION, |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
106 G_STRUCT_OFFSET (UiSkinnedMenurowClass, change), NULL, NULL, |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
107 gtk_marshal_VOID__INT, G_TYPE_NONE, 1, G_TYPE_INT); |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
108 |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
109 menurow_signals[RELEASE] = |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
110 g_signal_new ("release", G_OBJECT_CLASS_TYPE (object_class), G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION, |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
111 G_STRUCT_OFFSET (UiSkinnedMenurowClass, release), NULL, NULL, |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
112 gtk_marshal_VOID__INT, G_TYPE_NONE, 1, G_TYPE_INT); |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
113 |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
114 } |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
115 |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
116 static void ui_skinned_menurow_init(UiSkinnedMenurow *menurow) { |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
117 menurow->doublesize_selected = cfg.doublesize; |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
118 menurow->always_selected = cfg.always_on_top; |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
119 } |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
120 |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
121 GtkWidget* ui_skinned_menurow_new(GtkWidget *fixed, gint x, gint y, gint nx, gint ny, gint sx, gint sy, SkinPixmapId si) { |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
122 UiSkinnedMenurow *menurow = g_object_new (ui_skinned_menurow_get_type (), NULL); |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
123 |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
124 menurow->x = x; |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
125 menurow->y = y; |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
126 menurow->width = 8; |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
127 menurow->height = 43; |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
128 menurow->nx = nx; |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
129 menurow->ny = ny; |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
130 menurow->sx = sx; |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
131 menurow->sy = sy; |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
132 menurow->selected = MENUROW_NONE; |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
133 |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
134 menurow->skin_index = si; |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
135 |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
136 menurow->double_size = FALSE; |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
137 |
3939
d46d60247826
we don't need to store GtkFixed pointer, do we?
Tomasz Mon <desowin@gmail.com>
parents:
3933
diff
changeset
|
138 gtk_fixed_put(GTK_FIXED(fixed), GTK_WIDGET(menurow), menurow->x, menurow->y); |
3071
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
139 |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
140 return GTK_WIDGET(menurow); |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
141 } |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
142 |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
143 static void ui_skinned_menurow_destroy(GtkObject *object) { |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
144 UiSkinnedMenurow *menurow; |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
145 |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
146 g_return_if_fail (object != NULL); |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
147 g_return_if_fail (UI_SKINNED_IS_MENUROW (object)); |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
148 |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
149 menurow = UI_SKINNED_MENUROW (object); |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
150 |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
151 if (GTK_OBJECT_CLASS (parent_class)->destroy) |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
152 (* GTK_OBJECT_CLASS (parent_class)->destroy) (object); |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
153 } |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
154 |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
155 static void ui_skinned_menurow_realize(GtkWidget *widget) { |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
156 UiSkinnedMenurow *menurow; |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
157 GdkWindowAttr attributes; |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
158 gint attributes_mask; |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
159 |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
160 g_return_if_fail (widget != NULL); |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
161 g_return_if_fail (UI_SKINNED_IS_MENUROW(widget)); |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
162 |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
163 GTK_WIDGET_SET_FLAGS(widget, GTK_REALIZED); |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
164 menurow = UI_SKINNED_MENUROW(widget); |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
165 |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
166 attributes.x = widget->allocation.x; |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
167 attributes.y = widget->allocation.y; |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
168 attributes.width = widget->allocation.width; |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
169 attributes.height = widget->allocation.height; |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
170 attributes.wclass = GDK_INPUT_OUTPUT; |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
171 attributes.window_type = GDK_WINDOW_CHILD; |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
172 attributes.event_mask = gtk_widget_get_events(widget); |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
173 attributes.event_mask |= GDK_EXPOSURE_MASK | GDK_BUTTON_PRESS_MASK | |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
174 GDK_BUTTON_RELEASE_MASK | GDK_POINTER_MOTION_MASK; |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
175 attributes.visual = gtk_widget_get_visual(widget); |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
176 attributes.colormap = gtk_widget_get_colormap(widget); |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
177 |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
178 attributes_mask = GDK_WA_X | GDK_WA_Y | GDK_WA_VISUAL | GDK_WA_COLORMAP; |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
179 widget->window = gdk_window_new(widget->parent->window, &attributes, attributes_mask); |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
180 |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
181 widget->style = gtk_style_attach(widget->style, widget->window); |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
182 |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
183 gdk_window_set_user_data(widget->window, widget); |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
184 } |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
185 |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
186 static void ui_skinned_menurow_size_request(GtkWidget *widget, GtkRequisition *requisition) { |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
187 UiSkinnedMenurow *menurow = UI_SKINNED_MENUROW(widget); |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
188 |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
189 requisition->width = menurow->width*(1+menurow->double_size); |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
190 requisition->height = menurow->height*(1+menurow->double_size); |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
191 } |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
192 |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
193 static void ui_skinned_menurow_size_allocate(GtkWidget *widget, GtkAllocation *allocation) { |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
194 UiSkinnedMenurow *menurow = UI_SKINNED_MENUROW (widget); |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
195 |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
196 widget->allocation = *allocation; |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
197 widget->allocation.x *= (1+menurow->double_size); |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
198 widget->allocation.y *= (1+menurow->double_size); |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
199 if (GTK_WIDGET_REALIZED (widget)) |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
200 gdk_window_move_resize(widget->window, widget->allocation.x, widget->allocation.y, allocation->width, allocation->height); |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
201 |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
202 menurow->x = widget->allocation.x/(menurow->double_size ? 2 : 1); |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
203 menurow->y = widget->allocation.y/(menurow->double_size ? 2 : 1); |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
204 } |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
205 |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
206 static gboolean ui_skinned_menurow_expose(GtkWidget *widget, GdkEventExpose *event) { |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
207 g_return_val_if_fail (widget != NULL, FALSE); |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
208 g_return_val_if_fail (UI_SKINNED_IS_MENUROW (widget), FALSE); |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
209 g_return_val_if_fail (event != NULL, FALSE); |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
210 |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
211 UiSkinnedMenurow *menurow = UI_SKINNED_MENUROW (widget); |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
212 |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
213 GdkPixmap *obj = NULL; |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
214 GdkGC *gc; |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
215 |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
216 obj = gdk_pixmap_new(NULL, menurow->width, menurow->height, gdk_rgb_get_visual()->depth); |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
217 gc = gdk_gc_new(obj); |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
218 |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
219 if (menurow->selected == MENUROW_NONE) { |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
220 if (cfg.always_show_cb || menurow->pushed) |
3933
5a4ef76b1f42
beggining of better dealing with substandard winamp skins - if it doesn't break anything, why not commit this?
Tomasz Mon <desowin@gmail.com>
parents:
3840
diff
changeset
|
221 skin_draw_pixmap(widget, bmp_active_skin, obj, gc, menurow->skin_index, |
3071
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
222 menurow->nx, menurow->ny, 0, 0, 8, 43); |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
223 else |
3933
5a4ef76b1f42
beggining of better dealing with substandard winamp skins - if it doesn't break anything, why not commit this?
Tomasz Mon <desowin@gmail.com>
parents:
3840
diff
changeset
|
224 skin_draw_pixmap(widget, bmp_active_skin, obj, gc, menurow->skin_index, |
3071
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
225 menurow->nx + 8, menurow->ny, 0, 0, 8, 43); |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
226 } |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
227 else { |
3933
5a4ef76b1f42
beggining of better dealing with substandard winamp skins - if it doesn't break anything, why not commit this?
Tomasz Mon <desowin@gmail.com>
parents:
3840
diff
changeset
|
228 skin_draw_pixmap(widget, bmp_active_skin, obj, gc, menurow->skin_index, |
3071
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
229 menurow->sx + ((menurow->selected - 1) * 8), |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
230 menurow->sy, 0, 0, 8, 43); |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
231 } |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
232 if (cfg.always_show_cb || menurow->pushed) { |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
233 if (menurow->always_selected) |
3933
5a4ef76b1f42
beggining of better dealing with substandard winamp skins - if it doesn't break anything, why not commit this?
Tomasz Mon <desowin@gmail.com>
parents:
3840
diff
changeset
|
234 skin_draw_pixmap(widget, bmp_active_skin, obj, gc, menurow->skin_index, |
3071
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
235 menurow->sx + 8, menurow->sy + 10, 0, 10, 8, 8); |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
236 if (menurow->doublesize_selected) |
3933
5a4ef76b1f42
beggining of better dealing with substandard winamp skins - if it doesn't break anything, why not commit this?
Tomasz Mon <desowin@gmail.com>
parents:
3840
diff
changeset
|
237 skin_draw_pixmap(widget, bmp_active_skin, obj, gc, menurow->skin_index, |
3071
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
238 menurow->sx + 24, menurow->sy + 26, 0, 26, 8, 8); |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
239 } |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
240 |
3077
4b076ad636e6
use GdkPixmaps for doublesizing
Tomasz Mon <desowin@gmail.com>
parents:
3071
diff
changeset
|
241 GdkPixmap *image = NULL; |
3071
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
242 |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
243 if (menurow->double_size) { |
3077
4b076ad636e6
use GdkPixmaps for doublesizing
Tomasz Mon <desowin@gmail.com>
parents:
3071
diff
changeset
|
244 image = create_dblsize_pixmap(obj); |
4b076ad636e6
use GdkPixmaps for doublesizing
Tomasz Mon <desowin@gmail.com>
parents:
3071
diff
changeset
|
245 } else { |
4b076ad636e6
use GdkPixmaps for doublesizing
Tomasz Mon <desowin@gmail.com>
parents:
3071
diff
changeset
|
246 image = gdk_pixmap_new(NULL, menurow->width, menurow->height, gdk_rgb_get_visual()->depth); |
4b076ad636e6
use GdkPixmaps for doublesizing
Tomasz Mon <desowin@gmail.com>
parents:
3071
diff
changeset
|
247 gdk_draw_drawable(image, gc, obj, 0, 0, 0, 0, menurow->width, menurow->height); |
4b076ad636e6
use GdkPixmaps for doublesizing
Tomasz Mon <desowin@gmail.com>
parents:
3071
diff
changeset
|
248 } |
3071
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
249 |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
250 g_object_unref(obj); |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
251 |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
252 gdk_draw_drawable (widget->window, gc, image, 0, 0, 0, 0, |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
253 menurow->width*(1+menurow->double_size), menurow->height*(1+menurow->double_size)); |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
254 g_object_unref(gc); |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
255 g_object_unref(image); |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
256 |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
257 return FALSE; |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
258 } |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
259 |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
260 static MenuRowItem menurow_find_selected(UiSkinnedMenurow * mr, gint x, gint y) { |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
261 MenuRowItem ret = MENUROW_NONE; |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
262 |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
263 x = x/(mr->double_size ? 2 : 1); |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
264 y = y/(mr->double_size ? 2 : 1); |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
265 if (x > 0 && x < 8) { |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
266 if (y >= 0 && y <= 10) |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
267 ret = MENUROW_OPTIONS; |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
268 if (y >= 10 && y <= 17) |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
269 ret = MENUROW_ALWAYS; |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
270 if (y >= 18 && y <= 25) |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
271 ret = MENUROW_FILEINFOBOX; |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
272 if (y >= 26 && y <= 33) |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
273 ret = MENUROW_DOUBLESIZE; |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
274 if (y >= 34 && y <= 42) |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
275 ret = MENUROW_VISUALIZATION; |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
276 } |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
277 return ret; |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
278 } |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
279 |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
280 static gboolean ui_skinned_menurow_button_press(GtkWidget *widget, GdkEventButton *event) { |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
281 g_return_val_if_fail (widget != NULL, FALSE); |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
282 g_return_val_if_fail (UI_SKINNED_IS_MENUROW (widget), FALSE); |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
283 g_return_val_if_fail (event != NULL, FALSE); |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
284 |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
285 UiSkinnedMenurow *menurow = UI_SKINNED_MENUROW (widget); |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
286 |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
287 if (event->type == GDK_BUTTON_PRESS) { |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
288 if (event->button == 1) { |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
289 |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
290 menurow->pushed = TRUE; |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
291 menurow->selected = menurow_find_selected(menurow, event->x, event->y); |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
292 |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
293 gtk_widget_queue_draw(widget); |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
294 g_signal_emit_by_name(widget, "change", menurow->selected); |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
295 } |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
296 } |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
297 |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
298 return TRUE; |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
299 } |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
300 |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
301 static gboolean ui_skinned_menurow_button_release(GtkWidget *widget, GdkEventButton *event) { |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
302 UiSkinnedMenurow *menurow = UI_SKINNED_MENUROW(widget); |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
303 if (menurow->pushed) { |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
304 menurow->pushed = FALSE; |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
305 |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
306 if (menurow->selected == MENUROW_ALWAYS) |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
307 menurow->always_selected = !menurow->always_selected; |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
308 |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
309 if (menurow->selected == MENUROW_DOUBLESIZE) |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
310 menurow->doublesize_selected = !menurow->doublesize_selected; |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
311 |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
312 if ((int)(menurow->selected) != -1) |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
313 g_signal_emit_by_name(widget, "release", menurow->selected); |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
314 |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
315 menurow->selected = MENUROW_NONE; |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
316 gtk_widget_queue_draw(widget); |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
317 } |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
318 |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
319 return TRUE; |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
320 } |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
321 |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
322 static gboolean ui_skinned_menurow_motion_notify(GtkWidget *widget, GdkEventMotion *event) { |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
323 g_return_val_if_fail (widget != NULL, FALSE); |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
324 g_return_val_if_fail (UI_SKINNED_IS_MENUROW (widget), FALSE); |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
325 g_return_val_if_fail (event != NULL, FALSE); |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
326 UiSkinnedMenurow *menurow = UI_SKINNED_MENUROW(widget); |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
327 |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
328 if (menurow->pushed) { |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
329 menurow->selected = menurow_find_selected(menurow, event->x, event->y); |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
330 |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
331 gtk_widget_queue_draw(widget); |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
332 g_signal_emit_by_name(widget, "change", menurow->selected); |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
333 } |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
334 |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
335 return TRUE; |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
336 } |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
337 |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
338 static void ui_skinned_menurow_toggle_doublesize(UiSkinnedMenurow *menurow) { |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
339 GtkWidget *widget = GTK_WIDGET (menurow); |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
340 |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
341 menurow->double_size = !menurow->double_size; |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
342 gtk_widget_set_size_request(widget, menurow->width*(1+menurow->double_size), menurow->height*(1+menurow->double_size)); |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
343 |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
344 gtk_widget_queue_draw(GTK_WIDGET(menurow)); |
5ae86bc2233d
oops, forgot to include new files
Tomasz Mon <desowin@gmail.com>
parents:
diff
changeset
|
345 } |