~ubuntu-branches/ubuntu/utopic/pcmanfm/utopic

« back to all changes in this revision

Viewing changes to src/ptk/ptk-location-view.h

  • Committer: Bazaar Package Importer
  • Author(s): Andrew Lee (李健秋)
  • Date: 2010-05-23 23:04:11 UTC
  • mfrom: (8.1.1 experimental)
  • Revision ID: james.westby@ubuntu.com-20100523230411-4ei3g4u14pf5rozb
Tags: 0.9.5-2
* Upload to sid. No new additional bug report since last upload into 
  experimental. (Closes:#506243, #509257, #532973, #502225, #535810, 
  #570114, #581033, #518683)
* debian/control:
  Adjusted depends/recommends for people who doesn't want to have gvfs
  on their system. Without gvfs installed, pcmanfm would still works 
  but lose volume management and trashcan support.
  - Drop depends on gamin, shared-mime-info, desktop-file-utils, dbus, 
    xdg-user-dirs
  - Recommends on lxde-icon-theme | gnome-icon-theme, gvfs-backends,
    gvfs-fuse

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
*  C Interface: PtkLocationView
3
 
*
4
 
* Description:
5
 
*
6
 
*
7
 
* Author: Hong Jen Yee (PCMan) <pcman.tw (AT) gmail.com>, (C) 2006
8
 
*
9
 
* Copyright: See COPYING file that comes with this distribution
10
 
*
11
 
*/
12
 
 
13
 
#ifndef  _PTK_LOCATION_VIEW_H_
14
 
#define  _PTK_LOCATION_VIEW_H_
15
 
 
16
 
#include <gtk/gtk.h>
17
 
#include <sys/types.h>
18
 
 
19
 
#include "vfs-volume.h"
20
 
 
21
 
G_BEGIN_DECLS
22
 
 
23
 
/* Create a new location view */
24
 
GtkWidget* ptk_location_view_new();
25
 
 
26
 
gboolean ptk_location_view_chdir( GtkTreeView* location_view, const char* path );
27
 
 
28
 
char* ptk_location_view_get_selected_dir( GtkTreeView* location_view );
29
 
 
30
 
gboolean ptk_location_view_is_item_bookmark( GtkTreeView* location_view,
31
 
                                             GtkTreeIter* it );
32
 
 
33
 
void ptk_location_view_rename_selected_bookmark( GtkTreeView* location_view );
34
 
 
35
 
gboolean ptk_location_view_is_item_volume(  GtkTreeView* location_view, GtkTreeIter* it );
36
 
 
37
 
VFSVolume* ptk_location_view_get_volume(  GtkTreeView* location_view, GtkTreeIter* it );
38
 
 
39
 
void ptk_location_view_show_trash_can( gboolean show );
40
 
 
41
 
G_END_DECLS
42
 
 
43
 
#endif