~titan-lien/ubuntu/saucy/totem/totem.dev

« back to all changes in this revision

Viewing changes to src/totem-sidebar.h

  • Committer: Package Import Robot
  • Author(s): Michael Biebl, Sjoerd Simons, Michael Biebl, Josselin Mouette
  • Date: 2011-11-27 06:21:34 UTC
  • mfrom: (1.4.8) (5.1.23 sid)
  • Revision ID: package-import@ubuntu.com-20111127062134-c3ikko9wdfn9m2av
Tags: 3.2.1-1
[ Sjoerd Simons ]
* New upstream release
* debian/control.in: Update build-depends
* debian/rules: Enable vala plugins
* debian/totem-plugins.install:
  - Add grilo and rotation plugins
  - Remove jamendo, thumbnail and tracker plugins

[ Michael Biebl ]
* debian/control.in:
  - Bump Depends on python-gobject to (>= 2.90.3).

[ Josselin Mouette ]
* Replace python-gobject dependencies by python-gi.

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
 
26
26
G_BEGIN_DECLS
27
27
 
28
 
void totem_sidebar_setup (Totem *totem, gboolean visible,
 
28
void totem_sidebar_setup (Totem *totem,
 
29
                          gboolean visible,
29
30
                          const char *page_id);
 
31
 
30
32
void totem_sidebar_toggle (Totem *totem, gboolean state);
31
33
void totem_sidebar_set_visibility (Totem *totem, gboolean visible);
32
34
gboolean totem_sidebar_is_visible (Totem *totem);
 
35
 
33
36
gboolean totem_sidebar_is_focused (Totem *totem, gboolean *handles_kbd);
 
37
 
34
38
char *totem_sidebar_get_current_page (Totem *totem);
35
39
void totem_sidebar_set_current_page (Totem *totem,
36
 
                                     const char *name,
 
40
                                     const char *page_id,
37
41
                                     gboolean force_visible);
38
42
 
 
43
void totem_sidebar_add_page (Totem *totem,
 
44
                             const char *page_id,
 
45
                             const char *label,
 
46
                             const char *accelerator,
 
47
                             GtkWidget *main_widget);
 
48
void totem_sidebar_remove_page (Totem *totem,
 
49
                                const char *page_id);
 
50
 
39
51
G_END_DECLS
40
52
 
41
53
#endif /* TOTEM_SIDEBAR_H */