1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
|
/* Swfdec Player
* Copyright (C) 2007 Benjamin Otte <otte@gnome.org>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <glib/gi18n.h>
#include "swfdec-window.h"
static void
menu_file_open_response (GtkFileChooser *chooser, gint response, SwfdecWindow *window)
{
if (response == GTK_RESPONSE_ACCEPT) {
char *target = gtk_file_chooser_get_filename (chooser);
if (target != NULL) {
char *url = g_strconcat ("file://", target, NULL);
if (!swfdec_window_set_url (window, url)) {
SwfdecWindow *new = swfdec_window_new (url);
}
g_free (url);
g_free (target);
}
}
gtk_widget_destroy (GTK_WIDGET (chooser));
return;
}
void
menu_file_open (GtkAction *action, SwfdecWindow *window)
{
GtkWidget *chooser;
chooser = gtk_file_chooser_dialog_new (_("Select a file to play"),
GTK_WINDOW (window->window),
GTK_FILE_CHOOSER_ACTION_OPEN,
GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
GTK_STOCK_OPEN, GTK_RESPONSE_ACCEPT, NULL);
gtk_dialog_set_default_response (GTK_DIALOG (chooser), GTK_RESPONSE_ACCEPT);
g_object_ref (window);
g_signal_connect (chooser, "response", G_CALLBACK (menu_file_open_response), window);
g_object_weak_ref (G_OBJECT (chooser), (GWeakNotify) g_object_unref, window);
gtk_window_present (GTK_WINDOW (chooser));
}
void
menu_file_play (GtkToggleAction *action, SwfdecWindow *window)
{
GObject *o;
window->settings.playing = gtk_toggle_action_get_active (action);
if (window->player) {
swfdec_gtk_player_set_playing (SWFDEC_GTK_PLAYER (window->player),
window->settings.playing);
o = gtk_builder_get_object (window->builder, "player-widget");
swfdec_gtk_widget_set_interactive (SWFDEC_GTK_WIDGET (o), window->settings.playing);
}
}
void
menu_file_mute (GtkToggleAction *action, SwfdecWindow *window)
{
window->settings.sound = !gtk_toggle_action_get_active (action);
if (window->player) {
swfdec_gtk_player_set_audio_enabled (SWFDEC_GTK_PLAYER (window->player),
window->settings.sound);
}
}
void
menu_file_close (GtkAction *action, SwfdecWindow *window)
{
gtk_widget_destroy (window->window);
}
void
menu_file_recent (GtkAction *action, SwfdecWindow *window)
{
const char *url = gtk_recent_chooser_get_current_uri (GTK_RECENT_CHOOSER (action));
if (!swfdec_window_set_url (window, url))
swfdec_window_new (url);
}
void
menu_help_about (GtkAction *action, SwfdecWindow *window)
{
static const char *authors[] = {
"Benjamin Otte <otte@gnome.org>",
"Pekka Lampila <pekka.lampila@iki.fi>",
NULL,
};
static const char *artists[] = {
"Cristian Grada <krigenator@gmail.com>",
NULL
};
gtk_show_about_dialog (NULL,
"logo-icon-name", "swfdec",
"authors", authors,
"artists", artists,
"comments", "Play Adobe Flash files",
/* Translators: This is a special message that shouldn't be translated
* literally. It is used in the about box to give credits to
* the translators.
* Thus, you should translate it to your name and email address.
* You should also include other translators who have contributed to
* this translation; in that case, please write each of them on a separate
* line seperated by newlines (\n).
*/
"translator-credits", _("translator-credits"),
"version", VERSION,
"website", "http://swfdec.freedesktop.org/",
NULL);
}
gboolean
main_window_destroy_cb (GtkWidget *widget, GdkEvent *event, SwfdecWindow *window)
{
return FALSE;
}
|