From b3f740695a0199d22cd97aee314f06c7ae32d2ea Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Wed, 26 Feb 2020 16:16:53 +0100 Subject: patch 8.2.0320: no Haiku support Problem: No Haiku support. Solution: Add support for Haiku. (Emir Sari, closes #5605) --- src/gui.h | 23 ++++++++++++++++++++--- 1 file changed, 20 insertions(+), 3 deletions(-) (limited to 'src/gui.h') diff --git a/src/gui.h b/src/gui.h index c107ec88be..cfc4448168 100644 --- a/src/gui.h +++ b/src/gui.h @@ -29,6 +29,10 @@ # include #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 -- cgit v1.2.3