diff options
Diffstat (limited to 'src/gui.h')
-rw-r--r-- | src/gui.h | 23 |
1 files changed, 20 insertions, 3 deletions
@@ -29,6 +29,10 @@ # include <gtk/gtk.h> #endif +#ifdef FEAT_GUI_HAIKU +# include "gui_haiku.h" +#endif + // Needed when generating prototypes, since FEAT_GUI is always defined then. #if defined(FEAT_XCLIPBOARD) && !defined(FEAT_GUI_MOTIF) \ && !defined(FEAT_GUI_ATHENA) && !defined(FEAT_GUI_GTK) @@ -73,7 +77,8 @@ */ #if (defined(FEAT_DND) && defined(FEAT_GUI_GTK)) \ || defined(FEAT_GUI_MSWIN) \ - || defined(FEAT_GUI_MAC) + || defined(FEAT_GUI_MAC) \ + || defined(FEAT_GUI_HAIKU) # define HAVE_DROP_FILE #endif @@ -200,6 +205,10 @@ typedef struct GuiScrollbar // scroll_shift is set to the number of shifts // to reduce the count. #endif + +#if FEAT_GUI_HAIKU + VimScrollBar *id; // Pointer to real scroll bar +#endif #ifdef FEAT_GUI_MAC ControlHandle id; // A handle to the scrollbar #endif @@ -426,7 +435,7 @@ typedef struct Gui #if defined(FEAT_GUI_TABLINE) \ && (defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_MOTIF) \ - || defined(FEAT_GUI_MAC)) + || defined(FEAT_GUI_MAC) || defined(FEAT_GUI_HAIKU)) int tabline_height; #endif @@ -435,7 +444,7 @@ typedef struct Gui #endif #if defined(FEAT_TOOLBAR) \ - && (defined(FEAT_GUI_ATHENA) || defined(FEAT_GUI_MOTIF)) + && (defined(FEAT_GUI_ATHENA) || defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_HAIKU)) int toolbar_height; // height of the toolbar #endif @@ -456,6 +465,14 @@ typedef struct Gui guicolor_T currSpColor; // Current special text color #endif +#ifdef FEAT_GUI_HAIKU + VimApp *vimApp; + VimWindow *vimWindow; + VimFormView *vimForm; + VimTextAreaView *vimTextArea; + int vdcmp; // Vim Direct Communication Message Port +#endif + #ifdef FEAT_GUI_MAC WindowPtr VimWindow; MenuHandle MacOSHelpMenu; // Help menu provided by the MacOS |