1 /* totem-menu.h
2 
3    Copyright (C) 2004-2005 Bastien Nocera <hadess@hadess.net>
4 
5    The Gnome Library is free software; you can redistribute it and/or
6    modify it under the terms of the GNU Library General Public License as
7    published by the Free Software Foundation; either version 2 of the
8    License, or (at your option) any later version.
9 
10    The Gnome Library is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13    Library General Public License for more details.
14 
15    You should have received a copy of the GNU Library General Public
16    License along with the Gnome Library; see the file COPYING.LIB.  If not,
17    write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18    Boston, MA 02110-1301  USA.
19 
20    Author: Bastien Nocera <hadess@hadess.net>
21  */
22 
23 #ifndef TOTEM_MENU_H
24 #define TOTEM_MENU_H
25 
26 #include "totem.h"
27 #include "bacon-video-widget.h"
28 
29 G_BEGIN_DECLS
30 
31 void totem_app_menu_setup (Totem *totem);
32 void totem_app_actions_setup (Totem *totem);
33 
34 void totem_sublang_update (Totem *totem);
35 void totem_sublang_exit (Totem *totem);
36 
37 /* For test use only */
38 GList *bvw_lang_info_to_menu_labels (GList        *langs,
39 				     BvwTrackType  track_type);
40 
41 G_END_DECLS
42 
43 #endif /* TOTEM_MENU_H */
44