blob: 775e9e7a14ca3f9f385be43ebfc999d0dd8abdb6 (
plain)
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
|
<?xml version="1.0" ?>
<!--*- mode: xml -*--><!DOCTYPE glade-interface
SYSTEM 'http://glade.gnome.org/glade-2.0.dtd'>
<interface>
<object class="GtkUIManager" id="player-ui-manager">
<child>
<object class="GtkActionGroup" id="main-action-group">
<child>
<object class="GtkAction" id="file-menu">
<property name="label">_File</property>
</object>
</child>
<child>
<object class="GtkAction" id="open">
<property name="label">_Open...</property>
<property name="stock-id">gtk-open</property>
<property name="tooltip">Open a file</property>
<signal name="activate" handler="menu_file_open"/>
</object>
<accelerator key="O" modifiers="GDK_CONTROL_MASK"/>
</child>
<child>
<object class="GtkAction" id="play">
<property name="label">Play / P_ause</property>
<property name="stock-id">gtk-media-play</property>
<property name="tooltip">Play or pause the file</property>
<signal name="activate" handler="menu_file_play"/>
</object>
<accelerator key="space" modifiers="GDK_CONTROL_MASK"/>
</child>
<child>
<object class="GtkAction" id="quit">
<property name="label">_Close</property>
<property name="stock-id">gtk-close</property>
<property name="tooltip">Close</property>
<signal name="activate" handler="menu_file_close"/>
</object>
<accelerator key="W" modifiers="GDK_CONTROL_MASK"/>
</child>
<child>
<object class="GtkAction" id="help-menu">
<property name="label">_Help</property>
</object>
</child>
<child>
<object class="GtkAction" id="about">
<property name="label">_About</property>
<property name="stock-id">gtk-about</property>
<signal name="activate" handler="menu_help_about"/>
</object>
</child>
</object>
</child>
<ui>
<menubar name="player-menubar">
<menu name="file" action="file-menu">
<menuitem name="open" action="open"/>
<placeholder name="recent-placeholder"/>
<separator/>
<menuitem name="play" action="play"/>
<separator/>
<menuitem name="quit" action="quit"/>
</menu>
<menu name="help" action="help-menu">
<menuitem name="about" action="about"/>
</menu>
</menubar>
</ui>
</object>
<object class="GtkWindow" id="player-window">
<property name="title" translatable="yes">Swfdec Flash Player</property>
<property name="type">GTK_WINDOW_TOPLEVEL</property>
<property name="window_position">GTK_WIN_POS_NONE</property>
<property name="modal">False</property>
<property name="resizable">True</property>
<property name="destroy_with_parent">False</property>
<property name="decorated">True</property>
<property name="skip_taskbar_hint">False</property>
<property name="skip_pager_hint">False</property>
<property name="type_hint">GDK_WINDOW_TYPE_HINT_NORMAL</property>
<property name="gravity">GDK_GRAVITY_NORTH_WEST</property>
<property name="focus_on_map">True</property>
<property name="urgency_hint">False</property>
<property name="visible">True</property>
<signal name="delete-event" handler="main_window_destroy_cb"/>
<child>
<object class="GtkVBox" id="player-main-vbox">
<property name="visible">True</property>
<property name="homogeneous">False</property>
<property name="spacing">0</property>
<child>
<object class="GtkMenuBar" id="player-menubar" constructor="player-ui-manager"/>
<packing>
<property name="pack-type">start</property>
<property name="expand">False</property>
<property name="fill">False</property>
<property name="padding">0</property>
</packing>
</child>
<child>
<object class="SwfdecGtkWidget" id="player-widget">
<property name="visible">True</property>
<property name="can_focus">True</property>
</object>
<packing>
<property name="padding">0</property>
<property name="expand">True</property>
<property name="fill">True</property>
</packing>
</child>
</object>
</child>
</object>
</interface>
|