summaryrefslogtreecommitdiffstats
path: root/src/gui.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2005-03-15 22:34:55 +0000
committerBram Moolenaar <Bram@vim.org>2005-03-15 22:34:55 +0000
commit3918c950c99a626a9fa40e58d7976bffb2e17f5e (patch)
tree43cc4ce3c4ed5473772cd4e175f009290efdf961 /src/gui.h
parent28a37ffcf79cfa8139246cecba918f3258e411ea (diff)
updated for version 7.0060
Diffstat (limited to 'src/gui.h')
-rw-r--r--src/gui.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/gui.h b/src/gui.h
index aad355bfa5..43311ecc43 100644
--- a/src/gui.h
+++ b/src/gui.h
@@ -161,10 +161,11 @@ class VimWidget;
#define DRAW_TRANSP 0x01 /* draw with transparant bg */
#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) || defined (FEAT_GUI_KDE)
-# define DRAW_ITALIC 0x08 /* draw italic text */
+# define DRAW_ITALIC 0x10 /* draw italic text */
#endif
-#define DRAW_CURSOR 0x10 /* drawing block cursor (win32) */
+#define DRAW_CURSOR 0x20 /* drawing block cursor (win32) */
/* For our own tearoff menu item */
#define TEAR_STRING "-->Detach"
@@ -421,6 +422,7 @@ typedef struct Gui
# endif
GdkColor *fgcolor; /* GDK-styled foreground color */
GdkColor *bgcolor; /* GDK-styled background color */
+ GdkColor *spcolor; /* GDK-styled special color */
# ifndef HAVE_GTK2
GuiFont current_font;
# endif
@@ -463,6 +465,7 @@ typedef struct Gui
GuiFont currFont; /* Current font */
guicolor_T currFgColor; /* Current foreground text color */
guicolor_T currBgColor; /* Current background text color */
+ guicolor_T currSpColor; /* Current special text color */
#endif
#ifdef FEAT_GUI_MAC