~ubuntu-branches/ubuntu/saucy/libfm/saucy-proposed

« back to all changes in this revision

Viewing changes to src/gtk/fm-places-view.h

  • Committer: Bazaar Package Importer
  • Author(s): Julien Lavergne
  • Date: 2011-08-11 01:41:00 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20110811014100-4botukzcuaask6p9
Tags: 0.1.16-0ubuntu1
* New upstream release.
 - Fix cut & paste on devices without write permission (LP: #820865)
* debian/patches:
 - 03_disable_deprecated_gio_module.patch: Refresh.
 - 04_recreate_doc_Makefile.patch: Recreate missing Makefile.am, and adding gtk-doc.make.
 - 04_fix_docs_linker.patch: Refresh.
* debian/control:
 - Bump package name with soname bump.
 - Create new libfm-data and libgtk-data packages for non library files.
 - Add Conflics & Replaces between *-data and lib*0 packages.
 - Add necessary depends on libfm1 and libfm-gtk1.
* debian/*.install
 - Bump soname package name.
 - Move non library files to data binary.
 - Don't install documentation, not currently build.
* debian/*.symbols
 - Rename to follow soname bump.
 - Remove old missing symbols.
 - Update with new symbols.
* debian/rules:
 - Bump soname of the dbg package.
 - Install apport hook in libfm-data binary.
 - Don't build documentation, currently broken.

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
{
47
47
    GtkTreeView parent;
48
48
    FmDndDest* dnd_dest;
49
 
    GtkTreePath* dest_row;
50
 
    GtkTreeViewDropPosition dest_pos;
51
49
    GtkTreePath* clicked_row;
52
50
    GtkCellRendererPixbuf* mount_indicator_renderer;
53
51
};
55
53
struct _FmPlacesViewClass
56
54
{
57
55
    GtkTreeViewClass parent_class;
58
 
    void (*chdir)(guint button, FmPath* path);
 
56
    void (*chdir)(FmPlacesView* view, guint button, FmPath* path);
59
57
};
60
58
 
61
59
GType       fm_places_view_get_type     (void);
62
60
GtkWidget*  fm_places_view_new          (void);
63
 
void fm_places_select(FmPlacesView* pv, FmPath* path);
 
61
void fm_places_chdir(FmPlacesView* pv, FmPath* path);
64
62
 
65
63
G_END_DECLS
66
64