~ubuntu-branches/ubuntu/saucy/parole/saucy-proposed

« back to all changes in this revision

Viewing changes to src/parole-medialist.h

  • Committer: Bazaar Package Importer
  • Author(s): Yves-Alexis Perez, Lionel Le Folgoc, Yves-Alexis Perez
  • Date: 2011-04-24 16:09:19 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20110424160919-rpjwaicrdb8f7un2
Tags: 0.2.0.6-1
[ Lionel Le Folgoc ]
* debian/control:
  - drop unneeded build-dep on xulrunner-dev.   closes: #594073
  - suggests a few useful gstreamer0.10 plugins.
  - build-depends on quilt.
* debian/patches:
  - 01_fix-implicit-dso-linking.patch: added, fixes FTBFS with binutils-gold.
  - series: added.                                            closes: #615760
* debian/rules: pass --with quilt to dh.

[ Yves-Alexis Perez ]
* New upstream release.
* Switch to 3.0 (quilt) source format.
* debian/control:
  - update standards version to 3.9.2.
  - drop browser-plugin-parole package.
  - drop quilt build-dep.
  - add build-dep on hardening-includes
  - bump xfce build-deps to 4.8.
* debian/parole.install updated.
* debian/rules:
  - use --fail-missing and manually remove spurious files.
  - drop quilt addon
  - pick build flags from dpkg-buildflags.
  - add -O1, -z,defs and --as-needed to LDFLAGS.
  - add hardening flags to build flags.
  - stop harcoding the shell to bash, it works fine now.      closes: #623830

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
 
 * * Copyright (C) 2009 Ali <aliov@xfce.org>
 
2
 * * Copyright (C) 2009-2011 Ali <aliov@xfce.org>
3
3
 *
4
4
 * Licensed under the GNU General Public License Version 2
5
5
 *
33
33
{
34
34
    PIXBUF_COL,
35
35
    NAME_COL,
 
36
    LENGTH_COL,
36
37
    DATA_COL,
37
38
    COL_NUMBERS
38
39
};
81
82
 
82
83
GtkTreeRowReference             *parole_media_list_get_selected_row (ParoleMediaList *list);
83
84
 
 
85
void                             parole_media_list_select_row       (ParoleMediaList *list,
 
86
                                                                     GtkTreeRowReference *row);
 
87
 
84
88
GtkTreeRowReference             *parole_media_list_get_next_row     (ParoleMediaList *list,
85
89
                                                                     GtkTreeRowReference *row,
86
90
                                                                     gboolean repeat);
93
97
void                             parole_media_list_set_row_pixbuf   (ParoleMediaList *list,
94
98
                                                                     GtkTreeRowReference *row,
95
99
                                                                     GdkPixbuf *pix);
96
 
                                                                     
 
100
 
97
101
void                             parole_media_list_set_row_name     (ParoleMediaList *list,
98
102
                                                                     GtkTreeRowReference *row,
99
103
                                                                     const gchar *name);
100
104
 
 
105
 
 
106
void                             parole_media_list_set_row_length   (ParoleMediaList *list,
 
107
                                                                     GtkTreeRowReference *row,
 
108
                                                                     const gchar *length);
 
109
 
101
110
void                             parole_media_list_open             (ParoleMediaList *list);
102
111
 
103
112
void                             parole_media_list_open_location    (ParoleMediaList *list);