~ubuntu-branches/ubuntu/natty/geany/natty

« back to all changes in this revision

Viewing changes to src/win32.h

  • Committer: Bazaar Package Importer
  • Author(s): Chow Loong Jin
  • Date: 2010-08-07 03:23:12 UTC
  • mfrom: (1.4.3 upstream)
  • mto: This revision was merged to the branch mainline in revision 22.
  • Revision ID: james.westby@ubuntu.com-20100807032312-ot70ac9d50cn79we
Tags: upstream-0.19
ImportĀ upstreamĀ versionĀ 0.19

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 *      along with this program; if not, write to the Free Software
19
19
 *      Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20
20
 *
21
 
 *  $Id: win32.h 4630 2010-01-31 21:54:47Z eht16 $
 
21
 *  $Id: win32.h 4918 2010-05-16 17:42:45Z eht16 $
22
22
 */
23
23
 
24
24
 
27
27
 
28
28
void win32_show_pref_file_dialog(GtkEntry *item);
29
29
 
30
 
gboolean win32_show_file_dialog(gboolean file_open, const gchar *initial_dir);
 
30
gchar *win32_show_file_dialog(GtkWindow *parent, const gchar *title, const gchar *initial_dir);
 
31
 
 
32
gboolean win32_show_document_open_dialog(GtkWindow *parent, const gchar *title, const gchar *initial_dir);
 
33
 
 
34
gchar *win32_show_document_save_as_dialog(GtkWindow *parent, const gchar *title,
 
35
                                                                                  const gchar *initial_file);
31
36
 
32
37
void win32_show_font_dialog(void);
33
38
 
43
48
                                                                      const gchar *initial_dir, gboolean allow_new_file,
44
49
                                                                      gboolean project_file_filter);
45
50
 
46
 
gchar *win32_show_project_folder_dialog(GtkWidget *parent, const gchar *title,
47
 
                                                                                const gchar *initial_dir);
 
51
gchar *win32_show_folder_dialog(GtkWidget *parent, const gchar *title, const gchar *initial_dir);
48
52
 
49
53
gint win32_check_write_permission(const gchar *dir);
50
54