summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
authorBerke Viktor <bviktor@hexchat.org>2012-07-18 20:16:35 +0200
committerBerke Viktor <bviktor@hexchat.org>2012-07-18 20:16:35 +0200
commitcb2f9f3e7bb3124a95a723f1a7678c28e2bb0644 (patch)
tree9093733dc218025823cc93fa51d1e4d48df67509 /src
parentb63a4ced195f720c832c3c0c05035fdfd065638c (diff)
Use GTK+ file dialogs on Windows too, the Win32 dialogs are too buggy
Diffstat (limited to 'src')
-rw-r--r--src/common/thread.c2
-rw-r--r--src/common/thread.h2
-rw-r--r--src/fe-gtk/gtkutil.c8
-rw-r--r--src/fe-gtk/plugingui.c4
4 files changed, 15 insertions, 1 deletions
diff --git a/src/common/thread.c b/src/common/thread.c
index 02b17cfb..ba808737 100644
--- a/src/common/thread.c
+++ b/src/common/thread.c
@@ -1,3 +1,4 @@
+#if 0	/* native file dialogs */
 #include <fcntl.h>
 #include "thread.h"
 
@@ -31,3 +32,4 @@ thread_start (thread *th, void *(*start_routine)(void *), void *arg)
 
 	return 1;
 }
+#endif
diff --git a/src/common/thread.h b/src/common/thread.h
index 7ca0f937..97a4ed30 100644
--- a/src/common/thread.h
+++ b/src/common/thread.h
@@ -1,3 +1,4 @@
+#if 0	/* native file dialogs */
 #include <windows.h>
 
 typedef struct
@@ -8,3 +9,4 @@ typedef struct
 
 thread *thread_new (void);
 int thread_start (thread *th, void *(*start_routine)(void *), void *arg);
+#endif
diff --git a/src/fe-gtk/gtkutil.c b/src/fe-gtk/gtkutil.c
index 7b4f8b06..5fcaa194 100644
--- a/src/fe-gtk/gtkutil.c
+++ b/src/fe-gtk/gtkutil.c
@@ -53,8 +53,10 @@
 #include "pixmaps.h"
 
 #ifdef WIN32
+#if 0	/* native file dialogs */
 #include "../common/fe.h"
 #include "../common/thread.h"
+#endif
 #else
 #include <unistd.h>
 #endif
@@ -71,12 +73,14 @@ struct file_req
 	filereqcallback callback;
 	int flags;		/* FRF_* flags */
 
+#if 0	/* native file dialogs */
 #ifdef WIN32
 	int multiple;
 	thread *th;
 	char *title;	/* native locale */
 	char *filter;
 #endif
+#endif
 };
 
 static char last_dir[256] = "";
@@ -178,6 +182,7 @@ gtkutil_file_req_response (GtkWidget *dialog, gint res, struct file_req *freq)
 	}
 }
 
+#if 0	/* native file dialogs */
 #ifdef WIN32
 static int
 win32_openfile (char *file_buf, int file_buf_len, char *title_text, char *filter,
@@ -361,6 +366,7 @@ win32_read_thread (GIOChannel *source, GIOCondition cond, struct file_req *freq)
 	return FALSE;
 }
 #endif
+#endif	/* native file dialogs */
 
 void
 gtkutil_file_req (const char *title, void *callback, void *userdata, char *filter,
@@ -370,6 +376,7 @@ gtkutil_file_req (const char *title, void *callback, void *userdata, char *filte
 	GtkWidget *dialog;
 	extern char *get_xdir_fs (void);
 
+#if 0	/* native file dialogs */
 #ifdef WIN32
 	if (!(flags & FRF_WRITE))
 	{
@@ -421,6 +428,7 @@ gtkutil_file_req (const char *title, void *callback, void *userdata, char *filte
 	return;
 	}
 #endif
+#endif
 
 	if (flags & FRF_WRITE)
 	{
diff --git a/src/fe-gtk/plugingui.c b/src/fe-gtk/plugingui.c
index 0f316f09..33b27663 100644
--- a/src/fe-gtk/plugingui.c
+++ b/src/fe-gtk/plugingui.c
@@ -147,12 +147,14 @@ void
 plugingui_load (void)
 {
 	gtkutil_file_req (_("Select a Plugin or Script to load"), plugingui_load_cb, current_sess,
+#if 0	/* native file dialogs */
 #ifdef WIN32
 							"Plugins and Scripts\0*.dll;*.lua;*.pl;*.py;*.tcl\0"
 							"All files\0*.*\0\0", 0);
 #else
-							NULL, FRF_ADDFOLDER);
 #endif
+#endif	/* native file dialogs */
+							NULL, FRF_ADDFOLDER);
 }
 
 static void