~ubuntu-branches/ubuntu/trusty/pcmanfm/trusty-proposed

« back to all changes in this revision

Viewing changes to src/file-properties.h

  • Committer: Bazaar Package Importer
  • Author(s): Andrew Lee
  • Date: 2008-09-26 10:19:20 UTC
  • mfrom: (4.1.5 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080926101920-cfldybkmwgwrtv9u
Tags: 0.5-3
* Correct spellings,  03_correct_spelling.dpatch (Closes:498794) 
* Code in some files are taken from other projects, added these
  informations into copyright file. (Closes:499678)
* Applied 04_defaut_terminal.dpatch to support x-terminal-emulator
  alternative. (Closes:497494) 

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#ifndef _FILE_PROPERTIES_H_
2
 
#define _FILE_PROPERTIES_H_
3
 
 
4
 
#include <gtk/gtk.h>
5
 
 
6
 
G_BEGIN_DECLS
7
 
 
8
 
GtkWidget* file_properties_dlg_new( GtkWindow* parent,
9
 
                                    const char* dir_path,
10
 
                                    GList* sel_files );
11
 
 
12
 
void on_filePropertiesDlg_response          (GtkDialog       *dialog,
13
 
                                             gint             response_id,
14
 
                                             gpointer         user_data);
15
 
 
16
 
G_END_DECLS
17
 
 
18
 
#endif
19