diff options
Diffstat (limited to 'src/fe-gtk')
-rw-r--r-- | src/fe-gtk/chanlist.c | 5 | ||||
-rw-r--r-- | src/fe-gtk/editlist.c | 4 | ||||
-rw-r--r-- | src/fe-gtk/fe-gtk.c | 3 | ||||
-rw-r--r-- | src/fe-gtk/fe-gtk.vcxproj | 2 | ||||
-rw-r--r-- | src/fe-gtk/fe-gtk.vcxproj.filters | 6 | ||||
-rw-r--r-- | src/fe-gtk/fkeys.c | 5 | ||||
-rw-r--r-- | src/fe-gtk/gtkutil.c | 1 | ||||
-rw-r--r-- | src/fe-gtk/maingui.c | 8 | ||||
-rw-r--r-- | src/fe-gtk/menu.c | 2 | ||||
-rw-r--r-- | src/fe-gtk/notifygui.c | 1 | ||||
-rw-r--r-- | src/fe-gtk/palette.c | 4 | ||||
-rw-r--r-- | src/fe-gtk/plugin-tray.c | 3 | ||||
-rw-r--r-- | src/fe-gtk/rawlog.c | 4 | ||||
-rw-r--r-- | src/fe-gtk/servlistgui.c | 1 | ||||
-rw-r--r-- | src/fe-gtk/servlistgui.h | 1 | ||||
-rw-r--r-- | src/fe-gtk/setup.c | 1 | ||||
-rw-r--r-- | src/fe-gtk/setup.h | 1 | ||||
-rw-r--r-- | src/fe-gtk/sexy-spell-entry.c | 1 | ||||
-rw-r--r-- | src/fe-gtk/userlistgui.c | 1 | ||||
-rw-r--r-- | src/fe-gtk/xtext.c | 2 |
20 files changed, 49 insertions, 7 deletions
diff --git a/src/fe-gtk/chanlist.c b/src/fe-gtk/chanlist.c index 5090e9c4..e75b97bc 100644 --- a/src/fe-gtk/chanlist.c +++ b/src/fe-gtk/chanlist.c @@ -22,7 +22,9 @@ #include <fcntl.h> #include <time.h> -#ifndef WIN32 +#ifdef WIN32 +#include <io.h> +#else #include <unistd.h> #endif @@ -54,6 +56,7 @@ #include "../common/server.h" #include "gtkutil.h" #include "maingui.h" +#include "menu.h" #include "custom-list.h" diff --git a/src/fe-gtk/editlist.c b/src/fe-gtk/editlist.c index d374d064..05be3128 100644 --- a/src/fe-gtk/editlist.c +++ b/src/fe-gtk/editlist.c @@ -23,7 +23,9 @@ #include <sys/types.h> #include <sys/stat.h> -#ifndef WIN32 +#ifdef WIN32 +#include <io.h> +#else #include <unistd.h> #endif diff --git a/src/fe-gtk/fe-gtk.c b/src/fe-gtk/fe-gtk.c index 4a20006a..295d68a1 100644 --- a/src/fe-gtk/fe-gtk.c +++ b/src/fe-gtk/fe-gtk.c @@ -57,6 +57,7 @@ #include "fkeys.h" #include "plugin-tray.h" #include "urlgrab.h" +#include "setup.h" #ifdef USE_XLIB #include <gdk/gdkx.h> @@ -866,7 +867,7 @@ fe_ctrl_gui (session *sess, fe_gui_action action, int arg) mg_detach (sess, arg); /* arg: 0=toggle 1=detach 2=attach */ break; case FE_GUI_APPLY: - setup_apply_real (TRUE, TRUE); + setup_apply_real (TRUE, TRUE, TRUE); } } diff --git a/src/fe-gtk/fe-gtk.vcxproj b/src/fe-gtk/fe-gtk.vcxproj index b38e132a..1095b419 100644 --- a/src/fe-gtk/fe-gtk.vcxproj +++ b/src/fe-gtk/fe-gtk.vcxproj @@ -120,6 +120,8 @@ <ClInclude Include="plugingui.h" /> <ClInclude Include="rawlog.h" /> <ClInclude Include="search.h" /> + <ClInclude Include="servlistgui.h" /> + <ClInclude Include="setup.h" /> <ClInclude Include="sexy-iso-codes.h" /> <ClInclude Include="sexy-marshal.h" /> <ClInclude Include="sexy-spell-entry.h" /> diff --git a/src/fe-gtk/fe-gtk.vcxproj.filters b/src/fe-gtk/fe-gtk.vcxproj.filters index 8a232dae..370a1ad4 100644 --- a/src/fe-gtk/fe-gtk.vcxproj.filters +++ b/src/fe-gtk/fe-gtk.vcxproj.filters @@ -102,6 +102,12 @@ <ClInclude Include="xtext.h"> <Filter>Header Files</Filter> </ClInclude> + <ClInclude Include="servlistgui.h"> + <Filter>Header Files</Filter> + </ClInclude> + <ClInclude Include="setup.h"> + <Filter>Header Files</Filter> + </ClInclude> </ItemGroup> <ItemGroup> <ClCompile Include="about.c"> diff --git a/src/fe-gtk/fkeys.c b/src/fe-gtk/fkeys.c index 611697de..dcab0946 100644 --- a/src/fe-gtk/fkeys.c +++ b/src/fe-gtk/fkeys.c @@ -24,12 +24,15 @@ #include <fcntl.h> #include <ctype.h> -#ifndef WIN32 +#ifdef WIN32 +#include <io.h> +#else #include <unistd.h> #endif #include "fe-gtk.h" +#include <glib.h> #include <gtk/gtklabel.h> #include <gtk/gtkeditable.h> #include <gtk/gtkmenu.h> diff --git a/src/fe-gtk/gtkutil.c b/src/fe-gtk/gtkutil.c index 5fcaa194..165f8d4e 100644 --- a/src/fe-gtk/gtkutil.c +++ b/src/fe-gtk/gtkutil.c @@ -53,6 +53,7 @@ #include "pixmaps.h" #ifdef WIN32 +#include <io.h> #if 0 /* native file dialogs */ #include "../common/fe.h" #include "../common/thread.h" diff --git a/src/fe-gtk/maingui.c b/src/fe-gtk/maingui.c index 307420f4..32fa83cb 100644 --- a/src/fe-gtk/maingui.c +++ b/src/fe-gtk/maingui.c @@ -54,6 +54,7 @@ #include "../common/modes.h" #include "../common/url.h" #include "../common/util.h" +#include "../common/text.h" #include "fe-gtk.h" #include "banlist.h" @@ -2801,7 +2802,10 @@ mg_inputbox_rightclick (GtkEntry *entry, GtkWidget *menu) static void mg_create_entry (session *sess, GtkWidget *box) { - GtkWidget *sw, *hbox, *but, *entry; + GtkWidget *hbox, *but, *entry; +#ifdef USE_GTKSPELL + GtkWidget *sw; +#endif session_gui *gui = sess->gui; hbox = gtk_hbox_new (FALSE, 0); @@ -3695,7 +3699,9 @@ mg_drag_motion_cb (GtkWidget *widget, GdkDragContext *context, int x, int y, gui GdkGCValues val; int half, width, height; int ox, oy; +#if 0 GtkPaned *paned; +#endif GdkDrawable *draw; /* ignore file drops */ diff --git a/src/fe-gtk/menu.c b/src/fe-gtk/menu.c index c4912212..400b709b 100644 --- a/src/fe-gtk/menu.c +++ b/src/fe-gtk/menu.c @@ -23,6 +23,7 @@ #ifdef WIN32 #include <windows.h> +#include <io.h> #else #include <unistd.h> #endif @@ -72,6 +73,7 @@ #include "urlgrab.h" #include "userlistgui.h" #include "menu.h" +#include "servlistgui.h" static GSList *submenu_list; diff --git a/src/fe-gtk/notifygui.c b/src/fe-gtk/notifygui.c index 33d09a48..679b3f02 100644 --- a/src/fe-gtk/notifygui.c +++ b/src/fe-gtk/notifygui.c @@ -45,6 +45,7 @@ #include "../common/server.h" #include "../common/util.h" #include "../common/userlist.h" +#include "../common/outbound.h" #include "gtkutil.h" #include "maingui.h" #include "palette.h" diff --git a/src/fe-gtk/palette.c b/src/fe-gtk/palette.c index 104700c2..81ad13d7 100644 --- a/src/fe-gtk/palette.c +++ b/src/fe-gtk/palette.c @@ -22,7 +22,9 @@ #include <sys/stat.h> #include <fcntl.h> -#ifndef WIN32 +#ifdef WIN32 +#include <io.h> +#else #include <unistd.h> #endif diff --git a/src/fe-gtk/plugin-tray.c b/src/fe-gtk/plugin-tray.c index 13eacacf..2d8b79c0 100644 --- a/src/fe-gtk/plugin-tray.c +++ b/src/fe-gtk/plugin-tray.c @@ -8,6 +8,7 @@ #include "../common/server.h" #include "../common/fe.h" #include "../common/util.h" +#include "../common/outbound.h" #include "fe-gtk.h" #include "pixmaps.h" #include "maingui.h" @@ -497,9 +498,11 @@ static void tray_menu_cb (GtkWidget *widget, guint button, guint time, gpointer userdata) { GtkWidget *menu; +#ifndef WIN32 GtkWidget *submenu; GtkWidget *item; int away_status; +#endif /* ph may have an invalid context now */ xchat_set_context (ph, xchat_find_context (ph, NULL, NULL)); diff --git a/src/fe-gtk/rawlog.c b/src/fe-gtk/rawlog.c index e2862b2d..78a7eb2f 100644 --- a/src/fe-gtk/rawlog.c +++ b/src/fe-gtk/rawlog.c @@ -21,7 +21,9 @@ #include <fcntl.h> #include <stdlib.h> -#ifndef WIN32 +#ifdef WIN32 +#include <io.h> +#else #include <unistd.h> #endif diff --git a/src/fe-gtk/servlistgui.c b/src/fe-gtk/servlistgui.c index a19ea233..d54ee077 100644 --- a/src/fe-gtk/servlistgui.c +++ b/src/fe-gtk/servlistgui.c @@ -37,6 +37,7 @@ #include "../common/servlist.h" #include "../common/cfgfiles.h" #include "../common/fe.h" +#include "../common/util.h" #include "fe-gtk.h" #include "gtkutil.h" diff --git a/src/fe-gtk/servlistgui.h b/src/fe-gtk/servlistgui.h new file mode 100644 index 00000000..f2c2d14d --- /dev/null +++ b/src/fe-gtk/servlistgui.h @@ -0,0 +1 @@ +void servlist_autojoinedit (ircnet *net, char *channel, gboolean add); diff --git a/src/fe-gtk/setup.c b/src/fe-gtk/setup.c index 4dc568e6..9d1079ad 100644 --- a/src/fe-gtk/setup.c +++ b/src/fe-gtk/setup.c @@ -21,6 +21,7 @@ #include "palette.h" #include "pixmaps.h" #include "menu.h" +#include "plugin-tray.h" #include <gtk/gtkcolorseldialog.h> #include <gtk/gtktable.h> diff --git a/src/fe-gtk/setup.h b/src/fe-gtk/setup.h new file mode 100644 index 00000000..646ba18e --- /dev/null +++ b/src/fe-gtk/setup.h @@ -0,0 +1 @@ +void setup_apply_real (int new_pix, int do_ulist, int do_layout); \ No newline at end of file diff --git a/src/fe-gtk/sexy-spell-entry.c b/src/fe-gtk/sexy-spell-entry.c index d6f4ad63..cd4850be 100644 --- a/src/fe-gtk/sexy-spell-entry.c +++ b/src/fe-gtk/sexy-spell-entry.c @@ -35,6 +35,7 @@ #ifdef WIN32 #include "typedef.h" +#include <io.h> #endif #include "../common/cfgfiles.h" diff --git a/src/fe-gtk/userlistgui.c b/src/fe-gtk/userlistgui.c index f040a6a1..5edee739 100644 --- a/src/fe-gtk/userlistgui.c +++ b/src/fe-gtk/userlistgui.c @@ -40,6 +40,7 @@ #include "../common/modes.h" #include "../common/notify.h" #include "../common/xchatc.h" +#include "../common/fe.h" #include "gtkutil.h" #include "palette.h" #include "maingui.h" diff --git a/src/fe-gtk/xtext.c b/src/fe-gtk/xtext.c index e23eaf83..38ae2a89 100644 --- a/src/fe-gtk/xtext.c +++ b/src/fe-gtk/xtext.c @@ -76,6 +76,8 @@ #ifdef WIN32 #include <windows.h> +#include <io.h> +#include <gdk/gdk.h> #include <gdk/gdkwin32.h> #else #include <unistd.h> |