summaryrefslogtreecommitdiff
path: root/src/gui.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2010-06-26 05:38:18 +0200
committerBram Moolenaar <Bram@vim.org>2010-06-26 05:38:18 +0200
commit0eda7ac7f897433c9d346743bf38fcd291673070 (patch)
tree90a05f07c0c73e33b1097fab8f73d57a019027df /src/gui.h
parent51f53dfe17617792a0275b19f27b50f98b0db764 (diff)
downloadvim-git-0eda7ac7f897433c9d346743bf38fcd291673070.tar.gz
Change remaining HAVE_GTK2 to FEAT_GUI_GTK.
Diffstat (limited to 'src/gui.h')
-rw-r--r--src/gui.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/gui.h b/src/gui.h
index d8223d39d..ed183eedc 100644
--- a/src/gui.h
+++ b/src/gui.h
@@ -75,7 +75,7 @@
* On some systems scrolling needs to be done right away instead of in the
* main loop.
*/
-#if defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_MAC) || defined(HAVE_GTK2)
+#if defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_MAC) || defined(FEAT_GUI_GTK)
# define USE_ON_FLY_SCROLL
#endif
@@ -151,7 +151,7 @@
#define DRAW_BOLD 0x02 /* draw bold text */
#define DRAW_UNDERL 0x04 /* draw underline text */
#define DRAW_UNDERC 0x08 /* draw undercurl text */
-#if defined(RISCOS) || defined(HAVE_GTK2)
+#if defined(RISCOS) || defined(FEAT_GUI_GTK)
# define DRAW_ITALIC 0x10 /* draw italic text */
#endif
#define DRAW_CURSOR 0x20 /* drawing block cursor (win32) */
@@ -310,7 +310,7 @@ typedef struct Gui
int border_offset; /* Total pixel offset for all borders */
GuiFont norm_font; /* Normal font */
-#ifndef HAVE_GTK2
+#ifndef FEAT_GUI_GTK
GuiFont bold_font; /* Bold font */
GuiFont ital_font; /* Italic font */
GuiFont boldital_font; /* Bold-Italic font */
@@ -319,7 +319,7 @@ typedef struct Gui
* The styled font variants are not used. */
#endif
-#if defined(FEAT_MENU) && !defined(HAVE_GTK2)
+#if defined(FEAT_MENU) && !defined(FEAT_GUI_GTK)
# ifdef FONTSET_ALWAYS
GuiFontset menu_fontset; /* set of fonts for multi-byte chars */
# else
@@ -508,7 +508,7 @@ typedef enum
# define FRD_MATCH_CASE 0x10 /* match case */
#endif
-#ifdef HAVE_GTK2
+#ifdef FEAT_GUI_GTK
/*
* Convenience macros to convert from 'encoding' to 'termencoding' and
* vice versa. If no conversion is necessary the passed-in pointer is
@@ -549,4 +549,4 @@ typedef enum
# define CONVERT_TO_UTF8_FREE(String) ((String) = (char_u *)NULL)
# define CONVERT_FROM_UTF8(String) (String)
# define CONVERT_FROM_UTF8_FREE(String) ((String) = (char_u *)NULL)
-#endif /* HAVE_GTK2 */
+#endif /* FEAT_GUI_GTK */