Mercurial > audlegacy
annotate src/audacious/ui_urlopener.c @ 4542:26209b646930
Some cosmetic changes
author | mf0102 <0102@gmx.at> |
---|---|
date | Mon, 12 May 2008 19:19:49 +0200 |
parents | 6e323e395886 |
children | b87f8c707b7f |
rev | line source |
---|---|
2422 | 1 /* Audacious - Cross-platform multimedia player |
2 * Copyright (C) 2005-2007 Audacious development team | |
3 * | |
4 * Based on BMP: | |
5 * Copyright (C) 2003-2004 BMP development team. | |
6 * | |
7 * Based on XMMS: | |
8 * Copyright (C) 1998-2003 XMMS development team. | |
9 * | |
10 * This program is free software; you can redistribute it and/or modify | |
11 * it under the terms of the GNU General Public License as published by | |
3121
3b6d316f8b09
GPL3 relicensing.
William Pitcock <nenolod@atheme-project.org>
parents:
3033
diff
changeset
|
12 * the Free Software Foundation; under version 3 of the License. |
2422 | 13 * |
14 * This program is distributed in the hope that it will be useful, | |
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
17 * GNU General Public License for more details. | |
18 * | |
19 * You should have received a copy of the GNU General Public License | |
3121
3b6d316f8b09
GPL3 relicensing.
William Pitcock <nenolod@atheme-project.org>
parents:
3033
diff
changeset
|
20 * 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
|
21 * |
f1c756f39e6c
Invoke "Plugins are not derived work" clause provided by GPL3.
William Pitcock <nenolod@atheme-project.org>
parents:
3121
diff
changeset
|
22 * 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
|
23 * Audacious or using our public API to be a derived work. |
2422 | 24 */ |
25 | |
26 #ifdef HAVE_CONFIG_H | |
27 # include "config.h" | |
28 #endif | |
29 | |
30 #define NEED_GLADE | |
31 #include "util.h" | |
32 | |
33 #include <glib.h> | |
34 #include <glib/gi18n.h> | |
35 #include <gtk/gtk.h> | |
36 #include <stdlib.h> | |
37 #include <string.h> | |
38 #include <ctype.h> | |
39 | |
40 #include "platform/smartinclude.h" | |
41 #include <errno.h> | |
42 | |
43 #include "input.h" | |
44 #include "main.h" | |
45 #include "playback.h" | |
46 #include "strings.h" | |
47 #include "ui_playlist.h" | |
48 | |
49 #ifdef USE_CHARDET | |
3210
5939941ba48b
More librcd removal.
William Pitcock <nenolod@atheme-project.org>
parents:
3123
diff
changeset
|
50 #include "../libguess/libguess.h" |
4474
6e323e395886
Fix some random #includes.
Matti Hamalainen <ccr@tnsp.org>
parents:
3993
diff
changeset
|
51 # ifdef HAVE_UDET |
6e323e395886
Fix some random #includes.
Matti Hamalainen <ccr@tnsp.org>
parents:
3993
diff
changeset
|
52 # include <libudet_c.h> |
6e323e395886
Fix some random #includes.
Matti Hamalainen <ccr@tnsp.org>
parents:
3993
diff
changeset
|
53 # endif |
2422 | 54 #endif |
55 | |
56 #define URL_HISTORY_MAX_SIZE 30 | |
57 | |
58 static void | |
59 util_add_url_callback(GtkWidget * widget, | |
60 GtkEntry * entry) | |
61 { | |
62 const gchar *text; | |
63 | |
64 text = gtk_entry_get_text(entry); | |
65 if (g_list_find_custom(cfg.url_history, text, (GCompareFunc) strcasecmp)) | |
66 return; | |
67 | |
68 cfg.url_history = g_list_prepend(cfg.url_history, g_strdup(text)); | |
69 | |
70 while (g_list_length(cfg.url_history) > URL_HISTORY_MAX_SIZE) { | |
71 GList *node = g_list_last(cfg.url_history); | |
72 g_free(node->data); | |
73 cfg.url_history = g_list_delete_link(cfg.url_history, node); | |
74 } | |
75 } | |
76 | |
77 GtkWidget * | |
78 util_add_url_dialog_new(const gchar * caption, GCallback ok_func, | |
2807
26755684c0dc
[svn] - Fixed naming inconsistencies in search dialog
mf0102
parents:
2422
diff
changeset
|
79 GCallback enqueue_func) |
2422 | 80 { |
2807
26755684c0dc
[svn] - Fixed naming inconsistencies in search dialog
mf0102
parents:
2422
diff
changeset
|
81 GtkWidget *win, *vbox, *bbox, *cancel, *enqueue, *ok, *combo, *entry, |
26755684c0dc
[svn] - Fixed naming inconsistencies in search dialog
mf0102
parents:
2422
diff
changeset
|
82 *label; |
2422 | 83 GList *url; |
84 | |
85 win = gtk_window_new(GTK_WINDOW_TOPLEVEL); | |
86 gtk_window_set_title(GTK_WINDOW(win), _("Add/Open URL Dialog")); | |
87 gtk_window_set_type_hint(GTK_WINDOW(win), GDK_WINDOW_TYPE_HINT_DIALOG); | |
88 gtk_window_set_position(GTK_WINDOW(win), GTK_WIN_POS_CENTER); | |
89 gtk_window_set_default_size(GTK_WINDOW(win), 400, -1); | |
90 gtk_container_set_border_width(GTK_CONTAINER(win), 12); | |
91 | |
92 vbox = gtk_vbox_new(FALSE, 10); | |
93 gtk_container_add(GTK_CONTAINER(win), vbox); | |
94 | |
95 label = gtk_label_new(caption); | |
96 gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5); | |
97 gtk_box_pack_start(GTK_BOX(vbox), label, FALSE, FALSE, 0); | |
98 | |
99 combo = gtk_combo_box_entry_new_text(); | |
100 gtk_box_pack_start(GTK_BOX(vbox), combo, FALSE, FALSE, 0); | |
101 | |
102 entry = gtk_bin_get_child(GTK_BIN(combo)); | |
103 gtk_window_set_focus(GTK_WINDOW(win), entry); | |
104 gtk_entry_set_text(GTK_ENTRY(entry), ""); | |
105 | |
106 for (url = cfg.url_history; url; url = g_list_next(url)) | |
2807
26755684c0dc
[svn] - Fixed naming inconsistencies in search dialog
mf0102
parents:
2422
diff
changeset
|
107 gtk_combo_box_append_text(GTK_COMBO_BOX(combo), |
26755684c0dc
[svn] - Fixed naming inconsistencies in search dialog
mf0102
parents:
2422
diff
changeset
|
108 (const gchar *) url->data); |
2422 | 109 |
110 g_signal_connect(entry, "activate", | |
111 G_CALLBACK(util_add_url_callback), | |
112 entry); | |
113 g_signal_connect(entry, "activate", | |
114 G_CALLBACK(ok_func), | |
115 entry); | |
116 g_signal_connect_swapped(entry, "activate", | |
117 G_CALLBACK(gtk_widget_destroy), | |
118 win); | |
119 | |
120 bbox = gtk_hbutton_box_new(); | |
121 gtk_button_box_set_layout(GTK_BUTTON_BOX(bbox), GTK_BUTTONBOX_END); | |
122 gtk_button_box_set_spacing(GTK_BUTTON_BOX(bbox), 5); | |
123 gtk_box_pack_start(GTK_BOX(vbox), bbox, FALSE, FALSE, 0); | |
124 | |
2807
26755684c0dc
[svn] - Fixed naming inconsistencies in search dialog
mf0102
parents:
2422
diff
changeset
|
125 cancel = gtk_button_new_from_stock(GTK_STOCK_CLOSE); |
26755684c0dc
[svn] - Fixed naming inconsistencies in search dialog
mf0102
parents:
2422
diff
changeset
|
126 gtk_box_pack_start(GTK_BOX(bbox), cancel, FALSE, FALSE, 0); |
2809 | 127 gtk_button_box_set_child_secondary(GTK_BUTTON_BOX(bbox), cancel, TRUE); |
2807
26755684c0dc
[svn] - Fixed naming inconsistencies in search dialog
mf0102
parents:
2422
diff
changeset
|
128 |
26755684c0dc
[svn] - Fixed naming inconsistencies in search dialog
mf0102
parents:
2422
diff
changeset
|
129 g_signal_connect_swapped(cancel, "clicked", |
2422 | 130 G_CALLBACK(gtk_widget_destroy), |
131 win); | |
132 | |
133 enqueue = gtk_button_new_from_stock(GTK_STOCK_ADD); | |
134 gtk_box_pack_start(GTK_BOX(bbox), enqueue, FALSE, FALSE, 0); | |
135 | |
136 g_signal_connect(enqueue, "clicked", | |
137 G_CALLBACK(util_add_url_callback), | |
138 entry); | |
139 g_signal_connect(enqueue, "clicked", | |
140 G_CALLBACK(enqueue_func), | |
141 entry); | |
142 g_signal_connect_swapped(enqueue, "clicked", | |
143 G_CALLBACK(gtk_widget_destroy), | |
144 win); | |
145 | |
2807
26755684c0dc
[svn] - Fixed naming inconsistencies in search dialog
mf0102
parents:
2422
diff
changeset
|
146 ok = gtk_button_new_from_stock(GTK_STOCK_OPEN); |
26755684c0dc
[svn] - Fixed naming inconsistencies in search dialog
mf0102
parents:
2422
diff
changeset
|
147 g_signal_connect(ok, "clicked", |
26755684c0dc
[svn] - Fixed naming inconsistencies in search dialog
mf0102
parents:
2422
diff
changeset
|
148 G_CALLBACK(util_add_url_callback), entry); |
26755684c0dc
[svn] - Fixed naming inconsistencies in search dialog
mf0102
parents:
2422
diff
changeset
|
149 g_signal_connect(ok, "clicked", |
26755684c0dc
[svn] - Fixed naming inconsistencies in search dialog
mf0102
parents:
2422
diff
changeset
|
150 G_CALLBACK(ok_func), entry); |
26755684c0dc
[svn] - Fixed naming inconsistencies in search dialog
mf0102
parents:
2422
diff
changeset
|
151 g_signal_connect_swapped(ok, "clicked", |
2422 | 152 G_CALLBACK(gtk_widget_destroy), |
153 win); | |
2807
26755684c0dc
[svn] - Fixed naming inconsistencies in search dialog
mf0102
parents:
2422
diff
changeset
|
154 gtk_box_pack_start(GTK_BOX(bbox), ok, FALSE, FALSE, 0); |
2422 | 155 |
156 gtk_widget_show_all(vbox); | |
157 | |
158 return win; | |
159 } |