Revert "Don't init backend if Vim is about to fork"
[MacVim.git] / src / MacVim / gui_macvim.m
blob9bc12f7738ca10eec02f0685f367baee900fc0aa
1 /* vi:set ts=8 sts=4 sw=4 ft=objc:
2  *
3  * VIM - Vi IMproved            by Bram Moolenaar
4  *                              MacVim GUI port by Bjorn Winckler
5  *
6  * Do ":help uganda"  in Vim to read copying and usage conditions.
7  * Do ":help credits" in Vim to see a list of people who contributed.
8  * See README.txt for an overview of the Vim source code.
9  */
11  * gui_macvim.m
12  *
13  * Hooks for the Vim gui code.  Mainly passes control on to MMBackend.
14  */
16 #import "MMBackend.h"
17 #import "MacVim.h"
18 #import "vim.h"
19 #import <Foundation/Foundation.h>
23 // NOTE: The default font is bundled with the application.
24 static NSString *MMDefaultFontName = @"DejaVu Sans Mono";
25 static int MMDefaultFontSize       = 12;
26 static int MMMinFontSize           = 6;
27 static int MMMaxFontSize           = 100;
30 static GuiFont gui_macvim_font_with_name(char_u *name);
31 static int specialKeyToNSKey(int key);
32 static int vimModMaskToEventModifierFlags(int mods);
34 NSArray *descriptor_for_menu(vimmenu_T *menu);
35 vimmenu_T *menu_for_descriptor(NSArray *desc);
39 // -- Initialization --------------------------------------------------------
42  * Parse the GUI related command-line arguments.  Any arguments used are
43  * deleted from argv, and *argc is decremented accordingly.  This is called
44  * when vim is started, whether or not the GUI has been started.
45  */
46     void
47 gui_mch_prepare(int *argc, char **argv)
49     //NSLog(@"gui_mch_prepare(argc=%d)", *argc);
51     // Set environment variables $VIM and $VIMRUNTIME
52     // NOTE!  If vim_getenv is called with one of these as parameters before
53     // they have been set here, they will most likely end up with the wrong
54     // values!
55     //
56     // TODO:
57     // - ensure this is called first to avoid above problem
58     // - encoding
60     NSString *path = [[[NSBundle mainBundle] resourcePath]
61         stringByAppendingPathComponent:@"vim"];
62     vim_setenv((char_u*)"VIM", (char_u*)[path UTF8String]);
64     path = [path stringByAppendingPathComponent:@"runtime"];
65     vim_setenv((char_u*)"VIMRUNTIME", (char_u*)[path UTF8String]);
67     int i;
68     for (i = 0; i < *argc; ++i) {
69         if (strncmp(argv[i], "--mmwaitforack", 14) == 0) {
70             [[MMBackend sharedInstance] setWaitForAck:YES];
71             --*argc;
72             if (*argc > i)
73                 mch_memmove(&argv[i], &argv[i+1], (*argc-i) * sizeof(char*));
74             break;
75         }
76     }
81  * Check if the GUI can be started.  Called before gvimrc is sourced.
82  * Return OK or FAIL.
83  */
84     int
85 gui_mch_init_check(void)
87     //NSLog(@"gui_mch_init_check()");
88     return OK;
93  * Initialise the GUI.  Create all the windows, set up all the call-backs etc.
94  * Returns OK for success, FAIL when the GUI can't be started.
95  */
96     int
97 gui_mch_init(void)
99     //NSLog(@"gui_mch_init()");
101     if (![[MMBackend sharedInstance] checkin]) {
102         // TODO: Kill the process if there is no terminal to fall back on,
103         // otherwise the process will run outputting to the console.
104         return FAIL;
105     }
107     // Force 'termencoding' to utf-8 (changes to 'tenc' are disallowed in
108     // 'option.c', so that ':set termencoding=...' is impossible).
109     set_option_value((char_u *)"termencoding", 0L, (char_u *)"utf-8", 0);
111     // Set values so that pixels and characters are in one-to-one
112     // correspondence (assuming all characters have the same dimensions).
113     gui.scrollbar_width = gui.scrollbar_height = 0;
115     gui.char_height = 1;
116     gui.char_width = 1;
117     gui.char_ascent = 0;
119     gui_mch_def_colors();
121     [[MMBackend sharedInstance]
122         setDefaultColorsBackground:gui.back_pixel foreground:gui.norm_pixel];
123     [[MMBackend sharedInstance] setBackgroundColor:gui.back_pixel];
124     [[MMBackend sharedInstance] setForegroundColor:gui.norm_pixel];
126     // NOTE: If this call is left out the cursor is opaque.
127     highlight_gui_started();
129     // Ensure 'linespace' option is passed along to MacVim in case it was set
130     // in [g]vimrc.
131     gui_mch_adjust_charheight();
133     return OK;
138     void
139 gui_mch_exit(int rc)
141     //NSLog(@"gui_mch_exit(rc=%d)", rc);
143     [[MMBackend sharedInstance] exit];
148  * Open the GUI window which was created by a call to gui_mch_init().
149  */
150     int
151 gui_mch_open(void)
153     return [[MMBackend sharedInstance] openGUIWindow];
157 // -- Updating --------------------------------------------------------------
161  * Catch up with any queued X events.  This may put keyboard input into the
162  * input buffer, call resize call-backs, trigger timers etc.  If there is
163  * nothing in the X event queue (& no timers pending), then we return
164  * immediately.
165  */
166     void
167 gui_mch_update(void)
169     // This function is called extremely often.  It is tempting to do nothing
170     // here to avoid reduced frame-rates but then it would not be possible to
171     // interrupt Vim by presssing Ctrl-C during lengthy operations (e.g. after
172     // entering "10gs" it would not be possible to bring Vim out of the 10 s
173     // sleep prematurely).  As a compromise we check for Ctrl-C only once per
174     // second.  Note that Cmd-. sends SIGINT so it has higher success rate at
175     // interrupting Vim.
176     static CFAbsoluteTime lastTime = 0;
178     CFAbsoluteTime nowTime = CFAbsoluteTimeGetCurrent();
179     if (nowTime - lastTime > 1.0) {
180         [[MMBackend sharedInstance] update];
181         lastTime = nowTime;
182     }
186 /* Flush any output to the screen */
187     void
188 gui_mch_flush(void)
190     // This function is called way too often to be useful as a hint for
191     // flushing.  If we were to flush every time it was called the screen would
192     // flicker.
196     void
197 gui_macvim_flush(void)
199     // This function counts how many times it is called and only flushes the
200     // draw queue if called sufficiently often.  The first few times it is
201     // called it will flush often, but the more it is called the less likely is
202     // it that anything will be flushed.  (The counter resets itself if the
203     // function isn't called for a second.)
204     //
205     // NOTE: Should only be used in loops where it is impossible to know how
206     // often Vim needs to flush.  It was written to handle output from external
207     // commands (see mch_call_shell() in os_unix.c).
209     static CFAbsoluteTime lastTime = 0;
210     static int delay = 1;
211     static int counter = 0;
212     static int scrolls = 0;
214     CFAbsoluteTime nowTime = CFAbsoluteTimeGetCurrent();
215     CFAbsoluteTime delta = nowTime - lastTime;
216     if (delta > 1.0)
217         delay = 1;
219     // We assume that each call corresponds roughly to one line of output.
220     // When one page has scrolled by we increase the delay before the next
221     // flush.
222     if (++scrolls > gui.num_rows) {
223         delay <<= 1;
224         if (delay > 2048)
225             delay = 2048;
226         scrolls = 0;
227     }
229     if (++counter > delay) {
230         gui_macvim_force_flush();
231         counter = 0;
232     }
234     lastTime = nowTime;
238 /* Force flush output to MacVim.  Do not call this method unless absolutely
239  * necessary. */
240     void
241 gui_macvim_force_flush(void)
243     [[MMBackend sharedInstance] flushQueue:YES];
248  * GUI input routine called by gui_wait_for_chars().  Waits for a character
249  * from the keyboard.
250  *  wtime == -1     Wait forever.
251  *  wtime == 0      This should never happen.
252  *  wtime > 0       Wait wtime milliseconds for a character.
253  * Returns OK if a character was found to be available within the given time,
254  * or FAIL otherwise.
255  */
256     int
257 gui_mch_wait_for_chars(int wtime)
259     // NOTE! In all likelihood Vim will take a nap when waitForInput: is
260     // called, so force a flush of the command queue here.
261     [[MMBackend sharedInstance] flushQueue:YES];
263     return [[MMBackend sharedInstance] waitForInput:wtime];
267 // -- Drawing ---------------------------------------------------------------
271  * Clear the whole text window.
272  */
273     void
274 gui_mch_clear_all(void)
276     [[MMBackend sharedInstance] clearAll];
281  * Clear a rectangular region of the screen from text pos (row1, col1) to
282  * (row2, col2) inclusive.
283  */
284     void
285 gui_mch_clear_block(int row1, int col1, int row2, int col2)
287     [[MMBackend sharedInstance] clearBlockFromRow:row1 column:col1
288                                                     toRow:row2 column:col2];
293  * Delete the given number of lines from the given row, scrolling up any
294  * text further down within the scroll region.
295  */
296     void
297 gui_mch_delete_lines(int row, int num_lines)
299     [[MMBackend sharedInstance] deleteLinesFromRow:row count:num_lines
300             scrollBottom:gui.scroll_region_bot
301                     left:gui.scroll_region_left
302                    right:gui.scroll_region_right];
306     void
307 gui_mch_draw_string(int row, int col, char_u *s, int len, int flags)
309 #ifdef FEAT_MBYTE
310     char_u *conv_str = NULL;
311     if (output_conv.vc_type != CONV_NONE) {
312         conv_str = string_convert(&output_conv, s, &len);
313         if (conv_str)
314             s = conv_str;
315     }
316 #endif
318     [[MMBackend sharedInstance] drawString:(char*)s length:len row:row
319                                     column:col cells:len flags:flags];
321 #ifdef FEAT_MBYTE
322     if (conv_str)
323         vim_free(conv_str);
324 #endif
328     int
329 gui_macvim_draw_string(int row, int col, char_u *s, int len, int flags)
331     int c, cn, cl, i;
332     int start = 0;
333     int endcol = col;
334     int startcol = col;
335     BOOL wide = NO;
336     MMBackend *backend = [MMBackend sharedInstance];
337 #ifdef FEAT_MBYTE
338     char_u *conv_str = NULL;
340     if (output_conv.vc_type != CONV_NONE) {
341         conv_str = string_convert(&output_conv, s, &len);
342         if (conv_str)
343             s = conv_str;
344     }
345 #endif
347     // Loop over each character and output text when it changes from normal to
348     // wide and vice versa.
349     for (i = 0; i < len; i += cl) {
350         c = utf_ptr2char(s + i);
351         cn = utf_char2cells(c);
352         cl = utf_ptr2len(s + i);
353         if (0 == cl)
354             len = i;    // len must be wrong (shouldn't happen)
356         if (!utf_iscomposing(c)) {
357             if ((cn > 1 && !wide) || (cn <= 1 && wide)) {
358                 // Changed from normal to wide or vice versa.
359                 [backend drawString:(char*)(s+start) length:i-start
360                                    row:row column:startcol
361                                  cells:endcol-startcol
362                                  flags:(wide ? flags|DRAW_WIDE : flags)];
364                 start = i;
365                 startcol = endcol;
366             }
368             wide = cn > 1;
369             endcol += cn;
370         }
371     }
373     // Output remaining characters.
374     [backend drawString:(char*)(s+start) length:len-start
375                     row:row column:startcol cells:endcol-startcol
376                   flags:(wide ? flags|DRAW_WIDE : flags)];
378 #ifdef FEAT_MBYTE
379     if (conv_str)
380         vim_free(conv_str);
381 #endif
383     return endcol - col;
388  * Insert the given number of lines before the given row, scrolling down any
389  * following text within the scroll region.
390  */
391     void
392 gui_mch_insert_lines(int row, int num_lines)
394     [[MMBackend sharedInstance] insertLinesFromRow:row count:num_lines
395             scrollBottom:gui.scroll_region_bot
396                     left:gui.scroll_region_left
397                    right:gui.scroll_region_right];
402  * Set the current text foreground color.
403  */
404     void
405 gui_mch_set_fg_color(guicolor_T color)
407     [[MMBackend sharedInstance] setForegroundColor:color];
412  * Set the current text background color.
413  */
414     void
415 gui_mch_set_bg_color(guicolor_T color)
417     [[MMBackend sharedInstance] setBackgroundColor:color];
422  * Set the current text special color (used for underlines).
423  */
424     void
425 gui_mch_set_sp_color(guicolor_T color)
427     [[MMBackend sharedInstance] setSpecialColor:color];
432  * Set default colors.
433  */
434     void
435 gui_mch_def_colors()
437     MMBackend *backend = [MMBackend sharedInstance];
439     // The default colors are taken from system values
440     gui.def_norm_pixel = gui.norm_pixel = 
441         [backend lookupColorWithKey:@"MacTextColor"];
442     gui.def_back_pixel = gui.back_pixel = 
443         [backend lookupColorWithKey:@"MacTextBackgroundColor"];
448  * Called when the foreground or background color has been changed.
449  */
450     void
451 gui_mch_new_colors(void)
453     gui.def_back_pixel = gui.back_pixel;
454     gui.def_norm_pixel = gui.norm_pixel;
456     //NSLog(@"gui_mch_new_colors(back=%x, norm=%x)", gui.def_back_pixel,
457     //        gui.def_norm_pixel);
459     [[MMBackend sharedInstance]
460         setDefaultColorsBackground:gui.def_back_pixel
461                         foreground:gui.def_norm_pixel];
465  * Invert a rectangle from row r, column c, for nr rows and nc columns.
466  */
467     void
468 gui_mch_invert_rectangle(int r, int c, int nr, int nc, int invert)
470     [[MMBackend sharedInstance] drawInvertedRectAtRow:r column:c numRows:nr
471             numColumns:nc invert:invert];
476 // -- Tabline ---------------------------------------------------------------
480  * Set the current tab to "nr".  First tab is 1.
481  */
482     void
483 gui_mch_set_curtab(int nr)
485     [[MMBackend sharedInstance] selectTab:nr];
490  * Return TRUE when tabline is displayed.
491  */
492     int
493 gui_mch_showing_tabline(void)
495     return [[MMBackend sharedInstance] tabBarVisible];
499  * Update the labels of the tabline.
500  */
501     void
502 gui_mch_update_tabline(void)
504     [[MMBackend sharedInstance] updateTabBar];
508  * Show or hide the tabline.
509  */
510     void
511 gui_mch_show_tabline(int showit)
513     [[MMBackend sharedInstance] showTabBar:showit];
517 // -- Clipboard -------------------------------------------------------------
520     void
521 clip_mch_lose_selection(VimClipboard *cbd)
526     int
527 clip_mch_own_selection(VimClipboard *cbd)
529     return 0;
533     void
534 clip_mch_request_selection(VimClipboard *cbd)
536     NSPasteboard *pb = [NSPasteboard generalPasteboard];
537     NSArray *supportedTypes = [NSArray arrayWithObjects:VimPBoardType,
538             NSStringPboardType, nil];
539     NSString *bestType = [pb availableTypeFromArray:supportedTypes];
540     if (!bestType) return;
542     int motion_type = MCHAR;
543     NSString *string = nil;
545     if ([bestType isEqual:VimPBoardType]) {
546         // This type should consist of an array with two objects:
547         //   1. motion type (NSNumber)
548         //   2. text (NSString)
549         // If this is not the case we fall back on using NSStringPboardType.
550         id plist = [pb propertyListForType:VimPBoardType];
551         if ([plist isKindOfClass:[NSArray class]] && [plist count] == 2) {
552             id obj = [plist objectAtIndex:1];
553             if ([obj isKindOfClass:[NSString class]]) {
554                 motion_type = [[plist objectAtIndex:0] intValue];
555                 string = obj;
556             }
557         }
558     }
560     if (!string) {
561         // Use NSStringPboardType.  The motion type is set to line-wise if the
562         // string contains at least one EOL character, otherwise it is set to
563         // character-wise (block-wise is never used).
564         NSMutableString *mstring =
565                 [[pb stringForType:NSStringPboardType] mutableCopy];
566         if (!mstring) return;
568         // Replace unrecognized end-of-line sequences with \x0a (line feed).
569         NSRange range = { 0, [mstring length] };
570         unsigned n = [mstring replaceOccurrencesOfString:@"\x0d\x0a"
571                                              withString:@"\x0a" options:0
572                                                   range:range];
573         if (0 == n) {
574             n = [mstring replaceOccurrencesOfString:@"\x0d" withString:@"\x0a"
575                                            options:0 range:range];
576         }
577         
578         // Scan for newline character to decide whether the string should be
579         // pasted line-wise or character-wise.
580         motion_type = MCHAR;
581         if (0 < n || NSNotFound != [mstring rangeOfString:@"\n"].location)
582             motion_type = MLINE;
584         string = mstring;
585     }
587     if (!(MCHAR == motion_type || MLINE == motion_type || MBLOCK == motion_type
588             || MAUTO == motion_type))
589         motion_type = MCHAR;
591     char_u *str = (char_u*)[string UTF8String];
592     int len = [string lengthOfBytesUsingEncoding:NSUTF8StringEncoding];
594 #ifdef FEAT_MBYTE
595     if (input_conv.vc_type != CONV_NONE)
596         str = string_convert(&input_conv, str, &len);
597 #endif
599     if (str)
600         clip_yank_selection(motion_type, str, len, cbd);
602 #ifdef FEAT_MBYTE
603     if (input_conv.vc_type != CONV_NONE)
604         vim_free(str);
605 #endif
610  * Send the current selection to the clipboard.
611  */
612     void
613 clip_mch_set_selection(VimClipboard *cbd)
615     // If the '*' register isn't already filled in, fill it in now.
616     cbd->owned = TRUE;
617     clip_get_selection(cbd);
618     cbd->owned = FALSE;
619     
620     // Get the text to put on the pasteboard.
621     long_u llen = 0; char_u *str = 0;
622     int motion_type = clip_convert_selection(&str, &llen, cbd);
623     if (motion_type < 0)
624         return;
626     // TODO: Avoid overflow.
627     int len = (int)llen;
628 #ifdef FEAT_MBYTE
629     if (output_conv.vc_type != CONV_NONE) {
630         char_u *conv_str = string_convert(&output_conv, str, &len);
631         if (conv_str) {
632             vim_free(str);
633             str = conv_str;
634         }
635     }
636 #endif
638     if (len > 0) {
639         NSString *string = [[NSString alloc]
640             initWithBytes:str length:len encoding:NSUTF8StringEncoding];
642         // See clip_mch_request_selection() for info on pasteboard types.
643         NSPasteboard *pb = [NSPasteboard generalPasteboard];
644         NSArray *supportedTypes = [NSArray arrayWithObjects:VimPBoardType,
645                 NSStringPboardType, nil];
646         [pb declareTypes:supportedTypes owner:nil];
648         NSNumber *motion = [NSNumber numberWithInt:motion_type];
649         NSArray *plist = [NSArray arrayWithObjects:motion, string, nil];
650         [pb setPropertyList:plist forType:VimPBoardType];
652         [pb setString:string forType:NSStringPboardType];
653         
654         [string release];
655     }
657     vim_free(str);
661 // -- Menu ------------------------------------------------------------------
665  * A menu descriptor represents the "address" of a menu as an array of strings.
666  * E.g. the menu "File->Close" has descriptor { "File", "Close" }.
667  */
668     NSArray *
669 descriptor_for_menu(vimmenu_T *menu)
671     if (!menu) return nil;
673     NSMutableArray *desc = [NSMutableArray array];
674     while (menu) {
675         NSString *name = [NSString stringWithVimString:menu->dname];
676         [desc insertObject:name atIndex:0];
677         menu = menu->parent;
678     }
680     return desc;
683     vimmenu_T *
684 menu_for_descriptor(NSArray *desc)
686     if (!(desc && [desc count] > 0)) return NULL;
688     vimmenu_T *menu = root_menu;
689     int i, count = [desc count];
691     for (i = 0; i < count; ++i) {
692         NSString *component = [desc objectAtIndex:i];
693         while (menu) {
694             NSString *name = [NSString stringWithVimString:menu->dname];
695             if ([component isEqual:name]) {
696                 if (i+1 == count)
697                     return menu;    // Matched all components, so return menu
698                 menu = menu->children;
699                 break;
700             }
701             menu = menu->next;
702         }
703     }
705     return NULL;
709  * Add a submenu to the menu bar, toolbar, or a popup menu.
710  */
711     void
712 gui_mch_add_menu(vimmenu_T *menu, int idx)
714     NSArray *desc = descriptor_for_menu(menu);
715     [[MMBackend sharedInstance] queueMessage:AddMenuMsgID properties:
716         [NSDictionary dictionaryWithObjectsAndKeys:
717             desc, @"descriptor",
718             [NSNumber numberWithInt:idx], @"index",
719             nil]];
723 // Taken from gui_gtk.c (slightly modified)
724     static int
725 lookup_menu_iconfile(char_u *iconfile, char_u *dest)
727     expand_env(iconfile, dest, MAXPATHL);
729     if (mch_isFullName(dest))
730         return vim_fexists(dest);
732     static const char   suffixes[][4] = {"png", "bmp"};
733     char_u              buf[MAXPATHL];
734     unsigned int        i;
736     for (i = 0; i < sizeof(suffixes)/sizeof(suffixes[0]); ++i)
737         if (gui_find_bitmap(dest, buf, (char *)suffixes[i]) == OK) {
738             STRCPY(dest, buf);
739             return TRUE;
740         }
742     return FALSE;
747  * Add a menu item to a menu
748  */
749     void
750 gui_mch_add_menu_item(vimmenu_T *menu, int idx)
752     char_u *tip = menu->strings[MENU_INDEX_TIP]
753             ? menu->strings[MENU_INDEX_TIP] : menu->actext;
754     NSArray *desc = descriptor_for_menu(menu);
755     NSString *keyEquivalent = menu->mac_key
756         ? [NSString stringWithFormat:@"%C", specialKeyToNSKey(menu->mac_key)]
757         : [NSString string];
758     int modifierMask = vimModMaskToEventModifierFlags(menu->mac_mods);
759     char_u *icon = NULL;
761     if (menu_is_toolbar(menu->parent->name)) {
762         char_u fname[MAXPATHL];
764         // Try to use the icon=.. argument
765         if (menu->iconfile && lookup_menu_iconfile(menu->iconfile, fname))
766             icon = fname;
768         // If not found and not builtin specified try using the menu name
769         if (!icon && !menu->icon_builtin
770                                     && lookup_menu_iconfile(menu->name, fname))
771             icon = fname;
773         // Last resort, use display name (usually signals a builtin icon)
774         if (!icon)
775             icon = menu->dname;
776     }
778     [[MMBackend sharedInstance] queueMessage:AddMenuItemMsgID properties:
779         [NSDictionary dictionaryWithObjectsAndKeys:
780             desc, @"descriptor",
781             [NSNumber numberWithInt:idx], @"index",
782             [NSString stringWithVimString:tip], @"tip",
783             [NSString stringWithVimString:icon], @"icon",
784             keyEquivalent, @"keyEquivalent",
785             [NSNumber numberWithInt:modifierMask], @"modifierMask",
786             [NSString stringWithVimString:menu->mac_action], @"action",
787             [NSNumber numberWithBool:menu->mac_alternate], @"isAlternate",
788             nil]];
793  * Destroy the machine specific menu widget.
794  */
795     void
796 gui_mch_destroy_menu(vimmenu_T *menu)
798     NSArray *desc = descriptor_for_menu(menu);
799     [[MMBackend sharedInstance] queueMessage:RemoveMenuItemMsgID properties:
800         [NSDictionary dictionaryWithObject:desc forKey:@"descriptor"]];
805  * Make a menu either grey or not grey.
806  */
807     void
808 gui_mch_menu_grey(vimmenu_T *menu, int grey)
810     /* Only update menu if the 'grey' state has changed to avoid having to pass
811      * lots of unnecessary data to MacVim.  (Skipping this test makes MacVim
812      * pause noticably on mode changes. */
813     NSArray *desc = descriptor_for_menu(menu);
814     if (menu->was_grey == grey)
815         return;
817     menu->was_grey = grey;
819     [[MMBackend sharedInstance] queueMessage:EnableMenuItemMsgID properties:
820         [NSDictionary dictionaryWithObjectsAndKeys:
821             desc, @"descriptor",
822             [NSNumber numberWithInt:!grey], @"enable",
823             nil]];
828  * Make menu item hidden or not hidden
829  */
830     void
831 gui_mch_menu_hidden(vimmenu_T *menu, int hidden)
833     // HACK! There is no (obvious) way to hide a menu item, so simply
834     // enable/disable it instead.
835     gui_mch_menu_grey(menu, hidden);
840  * This is called when user right clicks.
841  */
842     void
843 gui_mch_show_popupmenu(vimmenu_T *menu)
845     NSArray *desc = descriptor_for_menu(menu);
846     [[MMBackend sharedInstance] queueMessage:ShowPopupMenuMsgID properties:
847         [NSDictionary dictionaryWithObject:desc forKey:@"descriptor"]];
852  * This is called when a :popup command is executed.
853  */
854     void
855 gui_make_popup(char_u *path_name, int mouse_pos)
857     vimmenu_T *menu = gui_find_menu(path_name);
858     if (!(menu && menu->children)) return;
860     NSArray *desc = descriptor_for_menu(menu);
861     NSDictionary *p = (mouse_pos || NULL == curwin)
862         ? [NSDictionary dictionaryWithObject:desc forKey:@"descriptor"]
863         : [NSDictionary dictionaryWithObjectsAndKeys:
864             desc, @"descriptor",
865             [NSNumber numberWithInt:curwin->w_wrow], @"row",
866             [NSNumber numberWithInt:curwin->w_wcol], @"column",
867             nil];
869     [[MMBackend sharedInstance] queueMessage:ShowPopupMenuMsgID properties:p];
874  * This is called after setting all the menus to grey/hidden or not.
875  */
876     void
877 gui_mch_draw_menubar(void)
879     // The (main) menu draws itself in Mac OS X.
883     void
884 gui_mch_enable_menu(int flag)
886     // The (main) menu is always enabled in Mac OS X.
890 #if 0
891     void
892 gui_mch_set_menu_pos(int x, int y, int w, int h)
894     // The (main) menu cannot be moved in Mac OS X.
896 #endif
899     void
900 gui_mch_show_toolbar(int showit)
902     int flags = 0;
903     if (toolbar_flags & TOOLBAR_TEXT) flags |= ToolbarLabelFlag;
904     if (toolbar_flags & TOOLBAR_ICONS) flags |= ToolbarIconFlag;
905     if (tbis_flags & (TBIS_MEDIUM|TBIS_LARGE)) flags |= ToolbarSizeRegularFlag;
907     [[MMBackend sharedInstance] showToolbar:showit flags:flags];
913 // -- Fonts -----------------------------------------------------------------
917  * If a font is not going to be used, free its structure.
918  */
919     void
920 gui_mch_free_font(font)
921     GuiFont     font;
923     if (font != NOFONT) {
924         //NSLog(@"gui_mch_free_font(font=0x%x)", font);
925         [(id)font release];
926     }
930     GuiFont
931 gui_mch_retain_font(GuiFont font)
933     return (GuiFont)[(id)font retain];
938  * Get a font structure for highlighting.
939  */
940     GuiFont
941 gui_mch_get_font(char_u *name, int giveErrorIfMissing)
943     //NSLog(@"gui_mch_get_font(name=%s, giveErrorIfMissing=%d)", name,
944     //        giveErrorIfMissing);
946     GuiFont font = gui_macvim_font_with_name(name);
947     if (font != NOFONT)
948         return font;
950     if (giveErrorIfMissing)
951         EMSG2(_(e_font), name);
953     return NOFONT;
957 #if defined(FEAT_EVAL) || defined(PROTO)
959  * Return the name of font "font" in allocated memory.
960  * TODO: use 'font' instead of 'name'?
961  */
962     char_u *
963 gui_mch_get_fontname(GuiFont font, char_u *name)
965     return name ? vim_strsave(name) : NULL;
967 #endif
971  * Initialise vim to use the font with the given name.  Return FAIL if the font
972  * could not be loaded, OK otherwise.
973  */
974     int
975 gui_mch_init_font(char_u *font_name, int fontset)
977     //NSLog(@"gui_mch_init_font(font_name=%s, fontset=%d)", font_name, fontset);
979     if (font_name && STRCMP(font_name, "*") == 0) {
980         // :set gfn=* shows the font panel.
981         do_cmdline_cmd((char_u*)":macaction orderFrontFontPanel:");
982         return FAIL;
983     }
985     GuiFont font = gui_macvim_font_with_name(font_name);
986     if (font == NOFONT)
987         return FAIL;
989     gui_mch_free_font(gui.norm_font);
990     gui.norm_font = font;
992     // NOTE: MacVim keeps separate track of the normal and wide fonts.
993     // Unless the user changes 'guifontwide' manually, they are based on
994     // the same (normal) font.  Also note that each time the normal font is
995     // set, the advancement may change so the wide font needs to be updated
996     // as well (so that it is always twice the width of the normal font).
997     [[MMBackend sharedInstance] setFont:font wide:NO];
998     [[MMBackend sharedInstance] setFont:(NOFONT != gui.wide_font ? gui.wide_font
999                                                                  : font)
1000                                    wide:YES];
1002     return OK;
1007  * Set the current text font.
1008  */
1009     void
1010 gui_mch_set_font(GuiFont font)
1012     // Font selection is done inside MacVim...nothing here to do.
1017  * Return GuiFont in allocated memory.  The caller must free it using
1018  * gui_mch_free_font().
1019  */
1020     GuiFont
1021 gui_macvim_font_with_name(char_u *name)
1023     if (!name)
1024         return (GuiFont)[[NSString alloc] initWithFormat:@"%@:%d",
1025                                         MMDefaultFontName, MMDefaultFontSize];
1027     NSString *fontName = [NSString stringWithVimString:name];
1028     int size = MMDefaultFontSize;
1029     BOOL parseFailed = NO;
1031     NSArray *components = [fontName componentsSeparatedByString:@":"];
1032     if ([components count] == 2) {
1033         NSString *sizeString = [components lastObject];
1034         if ([sizeString length] > 0
1035                 && [sizeString characterAtIndex:0] == 'h') {
1036             sizeString = [sizeString substringFromIndex:1];
1037             if ([sizeString length] > 0) {
1038                 size = (int)round([sizeString floatValue]);
1039                 fontName = [components objectAtIndex:0];
1040             }
1041         } else {
1042             parseFailed = YES;
1043         }
1044     } else if ([components count] > 2) {
1045         parseFailed = YES;
1046     }
1048     if (!parseFailed) {
1049         // Replace underscores with spaces.
1050         fontName = [[fontName componentsSeparatedByString:@"_"]
1051                                  componentsJoinedByString:@" "];
1052     }
1054     if (!parseFailed && [fontName length] > 0) {
1055         if (size < MMMinFontSize) size = MMMinFontSize;
1056         if (size > MMMaxFontSize) size = MMMaxFontSize;
1058         // If the default font is requested we don't check if NSFont can load
1059         // it since the font most likely isn't loaded anyway (it may only be
1060         // available to the MacVim binary).  If it is not the default font we
1061         // ask NSFont if it can load it.
1062         if ([fontName isEqualToString:MMDefaultFontName]
1063                 || [NSFont fontWithName:fontName size:size])
1064             return [[NSString alloc] initWithFormat:@"%@:%d", fontName, size];
1065     }
1067     return NOFONT;
1070 // -- Scrollbars ------------------------------------------------------------
1073     void
1074 gui_mch_create_scrollbar(
1075         scrollbar_T *sb,
1076         int orient)     /* SBAR_VERT or SBAR_HORIZ */
1078     [[MMBackend sharedInstance] 
1079             createScrollbarWithIdentifier:sb->ident type:sb->type];
1083     void
1084 gui_mch_destroy_scrollbar(scrollbar_T *sb)
1086     [[MMBackend sharedInstance] 
1087             destroyScrollbarWithIdentifier:sb->ident];
1091     void
1092 gui_mch_enable_scrollbar(
1093         scrollbar_T     *sb,
1094         int             flag)
1096     [[MMBackend sharedInstance] 
1097             showScrollbarWithIdentifier:sb->ident state:flag];
1101     void
1102 gui_mch_set_scrollbar_pos(
1103         scrollbar_T *sb,
1104         int x,
1105         int y,
1106         int w,
1107         int h)
1109     int pos = y;
1110     int len = h;
1111     if (SBAR_BOTTOM == sb->type) {
1112         pos = x;
1113         len = w; 
1114     }
1116     [[MMBackend sharedInstance] 
1117             setScrollbarPosition:pos length:len identifier:sb->ident];
1121     void
1122 gui_mch_set_scrollbar_thumb(
1123         scrollbar_T *sb,
1124         long val,
1125         long size,
1126         long max)
1128     [[MMBackend sharedInstance] 
1129             setScrollbarThumbValue:val size:size max:max identifier:sb->ident];
1133 // -- Cursor ----------------------------------------------------------------
1137  * Draw a cursor without focus.
1138  */
1139     void
1140 gui_mch_draw_hollow_cursor(guicolor_T color)
1142     return [[MMBackend sharedInstance]
1143         drawCursorAtRow:gui.row column:gui.col shape:MMInsertionPointHollow
1144                fraction:100 color:color];
1149  * Draw part of a cursor, only w pixels wide, and h pixels high.
1150  */
1151     void
1152 gui_mch_draw_part_cursor(int w, int h, guicolor_T color)
1154     // HACK!  'w' and 'h' are always 1 since we do not tell Vim about the exact
1155     // font dimensions.  Thus these parameters are useless.  Instead we look at
1156     // the shape_table to determine the shape and size of the cursor (just like
1157     // gui_update_cursor() does).
1159 #ifdef FEAT_RIGHTLEFT
1160     // If 'rl' is set the insert mode cursor must be drawn on the right-hand
1161     // side of a text cell.
1162     int rl = curwin ? curwin->w_p_rl : FALSE;
1163 #else
1164     int rl = FALSE;
1165 #endif
1166     int idx = get_shape_idx(FALSE);
1167     int shape = MMInsertionPointBlock;
1168     switch (shape_table[idx].shape) {
1169         case SHAPE_HOR:
1170             shape = MMInsertionPointHorizontal;
1171             break;
1172         case SHAPE_VER:
1173             shape = rl ? MMInsertionPointVerticalRight
1174                        : MMInsertionPointVertical;
1175             break;
1176     }
1178     return [[MMBackend sharedInstance]
1179         drawCursorAtRow:gui.row column:gui.col shape:shape
1180                fraction:shape_table[idx].percentage color:color];
1185  * Cursor blink functions.
1187  * This is a simple state machine:
1188  * BLINK_NONE   not blinking at all
1189  * BLINK_OFF    blinking, cursor is not shown
1190  * BLINK_ON blinking, cursor is shown
1191  */
1192     void
1193 gui_mch_set_blinking(long wait, long on, long off)
1195     [[MMBackend sharedInstance] setBlinkWait:wait on:on off:off];
1200  * Start the cursor blinking.  If it was already blinking, this restarts the
1201  * waiting time and shows the cursor.
1202  */
1203     void
1204 gui_mch_start_blink(void)
1206     [[MMBackend sharedInstance] startBlink];
1211  * Stop the cursor blinking.  Show the cursor if it wasn't shown.
1212  */
1213     void
1214 gui_mch_stop_blink(void)
1216     [[MMBackend sharedInstance] stopBlink];
1220 // -- Mouse -----------------------------------------------------------------
1224  * Get current mouse coordinates in text window.
1225  */
1226     void
1227 gui_mch_getmouse(int *x, int *y)
1229     //NSLog(@"gui_mch_getmouse()");
1233     void
1234 gui_mch_setmouse(int x, int y)
1236     //NSLog(@"gui_mch_setmouse(x=%d, y=%d)", x, y);
1240     void
1241 mch_set_mouse_shape(int shape)
1243     [[MMBackend sharedInstance] setMouseShape:shape];
1249 // -- Input Method ----------------------------------------------------------
1251 #if defined(USE_IM_CONTROL)
1253     void
1254 im_set_position(int row, int col)
1256     // The pre-edit area is a popup window which is displayed by MMTextView.
1257     [[MMBackend sharedInstance] setPreEditRow:row column:col];
1261     void
1262 im_set_active(int active)
1264     // Set roman or the system script if 'active' is TRUE or FALSE,
1265     // respectively.
1266     SInt32 systemScript = GetScriptManagerVariable(smSysScript);
1268     if (!p_imdisable && smRoman != systemScript)
1269         KeyScript(active ? smKeySysScript : smKeyRoman);
1273     int
1274 im_get_status(void)
1276     // IM is active whenever the current script is the system script and the
1277     // system script isn't roman.  (Hence IM can only be active when using
1278     // non-roman scripts.)
1279     SInt32 currentScript = GetScriptManagerVariable(smKeyScript);
1280     SInt32 systemScript = GetScriptManagerVariable(smSysScript);
1282     return currentScript != smRoman && currentScript == systemScript;
1285 #endif // defined(USE_IM_CONTROL)
1290 // -- Find & Replace dialog -------------------------------------------------
1292 #ifdef FIND_REPLACE_DIALOG
1294     static void
1295 macvim_find_and_replace(char_u *arg, BOOL replace)
1297     // TODO: Specialized dialog for find without replace?
1298     int wholeWord = FALSE;
1299     int matchCase = !p_ic;
1300     char_u *text  = get_find_dialog_text(arg, &wholeWord, &matchCase);
1302     int flags = 0;
1303     if (wholeWord) flags |= FRD_WHOLE_WORD;
1304     if (matchCase) flags |= FRD_MATCH_CASE;
1306     NSDictionary *args = [NSDictionary dictionaryWithObjectsAndKeys:
1307             [NSString stringWithVimString:text],    @"text",
1308             [NSNumber numberWithInt:flags],         @"flags",
1309             nil];
1311     [[MMBackend sharedInstance] queueMessage:ShowFindReplaceDialogMsgID
1312                                   properties:args];
1315     void
1316 gui_mch_find_dialog(exarg_T *eap)
1318     macvim_find_and_replace(eap->arg, NO);
1321     void
1322 gui_mch_replace_dialog(exarg_T *eap)
1324     macvim_find_and_replace(eap->arg, YES);
1327 #endif // FIND_REPLACE_DIALOG
1332 // -- Unsorted --------------------------------------------------------------
1335     void
1336 ex_macaction(eap)
1337     exarg_T     *eap;
1339     if (!gui.in_use) {
1340         EMSG(_("E???: Command only available in GUI mode"));
1341         return;
1342     }
1344     char_u *arg = eap->arg;
1345 #ifdef FEAT_MBYTE
1346     arg = CONVERT_TO_UTF8(arg);
1347 #endif
1349     NSDictionary *actionDict = [[MMBackend sharedInstance] actionDict];
1350     NSString *name = [NSString stringWithUTF8String:(char*)arg];
1351     if (actionDict && [actionDict objectForKey:name] != nil) {
1352         [[MMBackend sharedInstance] executeActionWithName:name];
1353     } else {
1354         EMSG2(_("E???: Invalid action: %s"), eap->arg);
1355     }
1357 #ifdef FEAT_MBYTE
1358     arg = CONVERT_TO_UTF8(arg);
1359 #endif
1364  * Adjust gui.char_height (after 'linespace' was changed).
1365  */
1366     int
1367 gui_mch_adjust_charheight(void)
1369     [[MMBackend sharedInstance] adjustLinespace:p_linespace];
1370     return OK;
1374     void
1375 gui_mch_beep(void)
1377     NSBeep();
1382 #ifdef FEAT_BROWSE
1384  * Pop open a file browser and return the file selected, in allocated memory,
1385  * or NULL if Cancel is hit.
1386  *  saving  - TRUE if the file will be saved to, FALSE if it will be opened.
1387  *  title   - Title message for the file browser dialog.
1388  *  dflt    - Default name of file.
1389  *  ext     - Default extension to be added to files without extensions.
1390  *  initdir - directory in which to open the browser (NULL = current dir)
1391  *  filter  - Filter for matched files to choose from.
1392  *  Has a format like this:
1393  *  "C Files (*.c)\0*.c\0"
1394  *  "All Files\0*.*\0\0"
1395  *  If these two strings were concatenated, then a choice of two file
1396  *  filters will be selectable to the user.  Then only matching files will
1397  *  be shown in the browser.  If NULL, the default allows all files.
1399  *  *NOTE* - the filter string must be terminated with TWO nulls.
1400  */
1401     char_u *
1402 gui_mch_browse(
1403     int saving,
1404     char_u *title,
1405     char_u *dflt,
1406     char_u *ext,
1407     char_u *initdir,
1408     char_u *filter)
1410     //NSLog(@"gui_mch_browse(saving=%d, title=%s, dflt=%s, ext=%s, initdir=%s,"
1411     //        " filter=%s", saving, title, dflt, ext, initdir, filter);
1413     // Ensure no data is on the output queue before presenting the dialog.
1414     gui_macvim_force_flush();
1416     NSMutableDictionary *attr = [NSMutableDictionary
1417         dictionaryWithObject:[NSNumber numberWithBool:saving]
1418                       forKey:@"saving"];
1419     if (initdir)
1420         [attr setObject:[NSString stringWithVimString:initdir] forKey:@"dir"];
1422     char_u *s = (char_u*)[[MMBackend sharedInstance]
1423                             browseForFileWithAttributes:attr];
1425     return s;
1427 #endif /* FEAT_BROWSE */
1431     int
1432 gui_mch_dialog(
1433     int         type,
1434     char_u      *title,
1435     char_u      *message,
1436     char_u      *buttons,
1437     int         dfltbutton,
1438     char_u      *textfield)
1440     //NSLog(@"gui_mch_dialog(type=%d title=%s message=%s buttons=%s "
1441     //        "dfltbutton=%d textfield=%s)", type, title, message, buttons,
1442     //        dfltbutton, textfield);
1444     // Ensure no data is on the output queue before presenting the dialog.
1445     gui_macvim_force_flush();
1447     int style = NSInformationalAlertStyle;
1448     if (VIM_WARNING == type) style = NSWarningAlertStyle;
1449     else if (VIM_ERROR == type) style = NSCriticalAlertStyle;
1451     NSMutableDictionary *attr = [NSMutableDictionary
1452                         dictionaryWithObject:[NSNumber numberWithInt:style]
1453                                       forKey:@"alertStyle"];
1455     if (buttons) {
1456         // 'buttons' is a string of '\n'-separated button titles 
1457         NSString *string = [NSString stringWithVimString:buttons];
1458         NSArray *array = [string componentsSeparatedByString:@"\n"];
1459         [attr setObject:array forKey:@"buttonTitles"];
1460     }
1462     NSString *messageText = nil;
1463     if (title)
1464         messageText = [NSString stringWithVimString:title];
1466     if (message) {
1467         NSString *informativeText = [NSString stringWithVimString:message];
1468         if (!messageText) {
1469             // HACK! If there is a '\n\n' or '\n' sequence in the message, then
1470             // make the part up to there into the title.  We only do this
1471             // because Vim has lots of dialogs without a title and they look
1472             // ugly that way.
1473             // TODO: Fix the actual dialog texts.
1474             NSRange eolRange = [informativeText rangeOfString:@"\n\n"];
1475             if (NSNotFound == eolRange.location)
1476                 eolRange = [informativeText rangeOfString:@"\n"];
1477             if (NSNotFound != eolRange.location) {
1478                 messageText = [informativeText substringToIndex:
1479                                                         eolRange.location];
1480                 informativeText = [informativeText substringFromIndex:
1481                                                         NSMaxRange(eolRange)];
1482             }
1483         }
1485         [attr setObject:informativeText forKey:@"informativeText"];
1486     }
1488     if (messageText)
1489         [attr setObject:messageText forKey:@"messageText"];
1491     if (textfield) {
1492         NSString *string = [NSString stringWithVimString:textfield];
1493         [attr setObject:string forKey:@"textFieldString"];
1494     }
1496     return [[MMBackend sharedInstance] showDialogWithAttributes:attr
1497                                                     textField:(char*)textfield];
1501     void
1502 gui_mch_flash(int msec)
1508  * Return the Pixel value (color) for the given color name.  This routine was
1509  * pretty much taken from example code in the Silicon Graphics OSF/Motif
1510  * Programmer's Guide.
1511  * Return INVALCOLOR when failed.
1512  */
1513     guicolor_T
1514 gui_mch_get_color(char_u *name)
1516 #ifdef FEAT_MBYTE
1517     name = CONVERT_TO_UTF8(name);
1518 #endif
1520     NSString *key = [NSString stringWithUTF8String:(char*)name];
1521     guicolor_T col = [[MMBackend sharedInstance] lookupColorWithKey:key];
1523 #ifdef FEAT_MBYTE
1524     CONVERT_TO_UTF8_FREE(name);
1525 #endif
1527     return col;
1532  * Return the RGB value of a pixel as long.
1533  */
1534     long_u
1535 gui_mch_get_rgb(guicolor_T pixel)
1537     // This is only implemented so that vim can guess the correct value for
1538     // 'background' (which otherwise defaults to 'dark'); it is not used for
1539     // anything else (as far as I know).
1540     // The implementation is simple since colors are stored in an int as
1541     // "rrggbb".
1542     return pixel;
1547  * Get the screen dimensions.
1548  * Allow 10 pixels for horizontal borders, 40 for vertical borders.
1549  * Is there no way to find out how wide the borders really are?
1550  * TODO: Add live udate of those value on suspend/resume.
1551  */
1552     void
1553 gui_mch_get_screen_dimensions(int *screen_w, int *screen_h)
1555     //NSLog(@"gui_mch_get_screen_dimensions()");
1556     *screen_w = Columns;
1557     *screen_h = Rows;
1562  * Get the position of the top left corner of the window.
1563  */
1564     int
1565 gui_mch_get_winpos(int *x, int *y)
1567     *x = *y = 0;
1568     return OK;
1573  * Return OK if the key with the termcap name "name" is supported.
1574  */
1575     int
1576 gui_mch_haskey(char_u *name)
1578     BOOL ok = NO;
1580 #ifdef FEAT_MBYTE
1581     name = CONVERT_TO_UTF8(name);
1582 #endif
1584     NSString *value = [NSString stringWithUTF8String:(char*)name];
1585     if (value)
1586         ok =  [[MMBackend sharedInstance] hasSpecialKeyWithValue:value];
1588 #ifdef FEAT_MBYTE
1589     CONVERT_TO_UTF8_FREE(name);
1590 #endif
1592     return ok;
1597  * Iconify the GUI window.
1598  */
1599     void
1600 gui_mch_iconify(void)
1605 #if defined(FEAT_EVAL) || defined(PROTO)
1607  * Bring the Vim window to the foreground.
1608  */
1609     void
1610 gui_mch_set_foreground(void)
1612     [[MMBackend sharedInstance] activate];
1614 #endif
1618     void
1619 gui_mch_set_shellsize(
1620     int         width,
1621     int         height,
1622     int         min_width,
1623     int         min_height,
1624     int         base_width,
1625     int         base_height,
1626     int         direction)
1628     //NSLog(@"gui_mch_set_shellsize(width=%d, height=%d, min_width=%d,"
1629     //        " min_height=%d, base_width=%d, base_height=%d, direction=%d)",
1630     //        width, height, min_width, min_height, base_width, base_height,
1631     //        direction);
1632     [[MMBackend sharedInstance] setRows:height columns:width];
1636     void
1637 gui_mch_set_text_area_pos(int x, int y, int w, int h)
1642  * Set the position of the top left corner of the window to the given
1643  * coordinates.
1644  */
1645     void
1646 gui_mch_set_winpos(int x, int y)
1651 #ifdef FEAT_TITLE
1653  * Set the window title and icon.
1654  * (The icon is not taken care of).
1655  */
1656     void
1657 gui_mch_settitle(char_u *title, char_u *icon)
1659     //NSLog(@"gui_mch_settitle(title=%s, icon=%s)", title, icon);
1661 #ifdef FEAT_MBYTE
1662     title = CONVERT_TO_UTF8(title);
1663 #endif
1665     MMBackend *backend = [MMBackend sharedInstance];
1666     [backend setWindowTitle:(char*)title];
1668     // TODO: Convert filename to UTF-8?
1669     if (curbuf)
1670         [backend setDocumentFilename:(char*)curbuf->b_ffname];
1672 #ifdef FEAT_MBYTE
1673     CONVERT_TO_UTF8_FREE(title);
1674 #endif
1676 #endif
1679     void
1680 gui_mch_toggle_tearoffs(int enable)
1686     void
1687 gui_mch_enter_fullscreen(int fuoptions_flags, guicolor_T bg)
1689     [[MMBackend sharedInstance] enterFullscreen:fuoptions_flags background:bg];
1693     void
1694 gui_mch_leave_fullscreen()
1696     [[MMBackend sharedInstance] leaveFullscreen];
1700     void
1701 gui_mch_fuopt_update()
1703     if (!gui.in_use)
1704         return;
1706     guicolor_T fg, bg;
1707     if (fuoptions_flags & FUOPT_BGCOLOR_HLGROUP) {
1708         syn_id2colors(fuoptions_bgcolor, &fg, &bg);
1709     } else {
1710         bg = fuoptions_bgcolor;
1711     }
1713     [[MMBackend sharedInstance] setFullscreenBackgroundColor:bg];
1717     void
1718 gui_macvim_update_modified_flag()
1720     [[MMBackend sharedInstance] updateModifiedFlag];
1724  * Add search pattern 'pat' to the OS X find pasteboard.  This allows other
1725  * apps access the last pattern searched for (hitting <D-g> in another app will
1726  * initiate a search for the same pattern).
1727  */
1728     void
1729 gui_macvim_add_to_find_pboard(char_u *pat)
1731     if (!pat) return;
1733 #ifdef FEAT_MBYTE
1734     pat = CONVERT_TO_UTF8(pat);
1735 #endif
1736     NSString *s = [NSString stringWithUTF8String:(char*)pat];
1737 #ifdef FEAT_MBYTE
1738     CONVERT_TO_UTF8_FREE(pat);
1739 #endif
1741     if (!s) return;
1743     NSPasteboard *pb = [NSPasteboard pasteboardWithName:NSFindPboard];
1744     [pb declareTypes:[NSArray arrayWithObject:NSStringPboardType] owner:nil];
1745     [pb setString:s forType:NSStringPboardType];
1748     void
1749 gui_macvim_set_antialias(int antialias)
1751     [[MMBackend sharedInstance] setAntialias:antialias];
1755     void
1756 gui_macvim_wait_for_startup()
1758     MMBackend *backend = [MMBackend sharedInstance];
1759     if ([backend waitForAck])
1760         [backend waitForConnectionAcknowledgement];
1763 void gui_macvim_get_window_layout(int *count, int *layout)
1765     if (!(count && layout)) return;
1767     // NOTE: Only set 'layout' if the backend has requested a != 0 layout, else
1768     // any command line arguments (-p/-o) would be ignored.
1769     int window_layout = [[MMBackend sharedInstance] initialWindowLayout];
1770     if (window_layout > 0 && window_layout < 4) {
1771         // The window_layout numbers must match the WIN_* defines in main.c.
1772         *count = 0;
1773         *layout = window_layout;
1774     }
1778 // -- Client/Server ---------------------------------------------------------
1780 #ifdef MAC_CLIENTSERVER
1783 // NOTE: Client/Server is only fully supported with a GUI.  Theoretically it
1784 // would be possible to make the server code work with terminal Vim, but it
1785 // would require that a run-loop is set up and checked.  This should not be
1786 // difficult to implement, simply call gui_mch_update() at opportune moments
1787 // and it will take care of the run-loop.  Another (bigger) problem with
1788 // supporting servers in terminal mode is that the server listing code talks to
1789 // MacVim (the GUI) to figure out which servers are running.
1794  * Register connection with 'name'.  The actual connection is named something
1795  * like 'org.vim.MacVim.VIM3', whereas the server is called 'VIM3'.
1796  */
1797     void
1798 serverRegisterName(char_u *name)
1800 #ifdef FEAT_MBYTE
1801     name = CONVERT_TO_UTF8(name);
1802 #endif
1804     NSString *svrName = [NSString stringWithUTF8String:(char*)name];
1805     [[MMBackend sharedInstance] registerServerWithName:svrName];
1807 #ifdef FEAT_MBYTE
1808     CONVERT_TO_UTF8_FREE(name);
1809 #endif
1814  * Send to an instance of Vim.
1815  * Returns 0 for OK, negative for an error.
1816  */
1817     int
1818 serverSendToVim(char_u *name, char_u *cmd, char_u **result,
1819         int *port, int asExpr, int silent)
1821 #ifdef FEAT_MBYTE
1822     name = CONVERT_TO_UTF8(name);
1823     cmd = CONVERT_TO_UTF8(cmd);
1824 #endif
1826     BOOL ok = [[MMBackend sharedInstance]
1827             sendToServer:[NSString stringWithUTF8String:(char*)name]
1828                   string:[NSString stringWithUTF8String:(char*)cmd]
1829                    reply:result
1830                     port:port
1831               expression:asExpr
1832                   silent:silent];
1834 #ifdef FEAT_MBYTE
1835     CONVERT_TO_UTF8_FREE(name);
1836     CONVERT_TO_UTF8_FREE(cmd);
1837 #endif
1839     return ok ? 0 : -1;
1844  * Ask MacVim for the names of all Vim servers.
1845  */
1846     char_u *
1847 serverGetVimNames(void)
1849     char_u *names = NULL;
1850     NSArray *list = [[MMBackend sharedInstance] serverList];
1852     if (list) {
1853         NSString *string = [list componentsJoinedByString:@"\n"];
1854         names = [string vimStringSave];
1855     }
1857     return names;
1862  * 'str' is a hex int representing the send port of the connection.
1863  */
1864     int
1865 serverStrToPort(char_u *str)
1867     int port = 0;
1869     sscanf((char *)str, "0x%x", &port);
1870     if (!port)
1871         EMSG2(_("E573: Invalid server id used: %s"), str);
1873     return port;
1878  * Check for replies from server with send port 'port'.
1879  * Return TRUE and a non-malloc'ed string if there is.  Else return FALSE.
1880  */
1881     int
1882 serverPeekReply(int port, char_u **str)
1884     NSString *reply = [[MMBackend sharedInstance] peekForReplyOnPort:port];
1885     int len = [reply lengthOfBytesUsingEncoding:NSUTF8StringEncoding];
1887     if (str && len > 0) {
1888         *str = (char_u*)[reply UTF8String];
1890 #ifdef FEAT_MBYTE
1891         if (input_conv.vc_type != CONV_NONE) {
1892             char_u *s = string_convert(&input_conv, *str, &len);
1894             if (len > 0) {
1895                 // HACK! Since 's' needs to be freed we cannot simply set
1896                 // '*str = s' or memory will leak.  Instead, create a dummy
1897                 // NSData and return its 'bytes' pointer, then autorelease the
1898                 // NSData.
1899                 NSData *data = [NSData dataWithBytes:s length:len+1];
1900                 *str = (char_u*)[data bytes];
1901             }
1903             vim_free(s);
1904         }
1905 #endif
1906     }
1908     return reply != nil;
1913  * Wait for replies from server with send port 'port'.
1914  * Return 0 and the malloc'ed string when a reply is available.
1915  * Return -1 on error.
1916  */
1917     int
1918 serverReadReply(int port, char_u **str)
1920     NSString *reply = [[MMBackend sharedInstance] waitForReplyOnPort:port];
1921     if (reply && str) {
1922         *str = [reply vimStringSave];
1923         return 0;
1924     }
1926     return -1;
1931  * Send a reply string (notification) to client with port given by "serverid".
1932  * Return -1 if the window is invalid.
1933  */
1934     int
1935 serverSendReply(char_u *serverid, char_u *reply)
1937     int retval = -1;
1938     int port = serverStrToPort(serverid);
1939     if (port > 0 && reply) {
1940 #ifdef FEAT_MBYTE
1941         reply = CONVERT_TO_UTF8(reply);
1942 #endif
1943         BOOL ok = [[MMBackend sharedInstance]
1944                 sendReply:[NSString stringWithUTF8String:(char*)reply]
1945                    toPort:port];
1946         retval = ok ? 0 : -1;
1947 #ifdef FEAT_MBYTE
1948         CONVERT_TO_UTF8_FREE(reply);
1949 #endif
1950     }
1952     return retval;
1955 #endif // MAC_CLIENTSERVER
1960 // -- ODB Editor Support ----------------------------------------------------
1962 #ifdef FEAT_ODB_EDITOR
1964  * The ODB Editor protocol works like this:
1965  * - An external program (the server) asks MacVim to open a file and associates
1966  *   three things with this file: (1) a server id (a four character code that
1967  *   identifies the server), (2) a path that can be used as window title for
1968  *   the file (optional), (3) an arbitrary token (optional)
1969  * - When a file is saved or closed, MacVim should tell the server about which
1970  *   file was modified and also pass back the token
1972  * All communication between MacVim and the server goes via Apple Events.
1973  */
1975     static OSErr
1976 odb_event(buf_T *buf, const AEEventID action)
1978     if (!(buf->b_odb_server_id && buf->b_ffname))
1979         return noErr;
1981     NSAppleEventDescriptor *targetDesc = [NSAppleEventDescriptor
1982             descriptorWithDescriptorType:typeApplSignature
1983                                    bytes:&buf->b_odb_server_id
1984                                   length:sizeof(OSType)];
1986     // TODO: Convert b_ffname to UTF-8?
1987     NSString *path = [NSString stringWithUTF8String:(char*)buf->b_ffname];
1988     NSData *pathData = [[[NSURL fileURLWithPath:path] absoluteString]
1989             dataUsingEncoding:NSUTF8StringEncoding];
1990     NSAppleEventDescriptor *pathDesc = [NSAppleEventDescriptor
1991             descriptorWithDescriptorType:typeFileURL data:pathData];
1993     NSAppleEventDescriptor *event = [NSAppleEventDescriptor
1994             appleEventWithEventClass:kODBEditorSuite
1995                              eventID:action
1996                     targetDescriptor:targetDesc
1997                             returnID:kAutoGenerateReturnID
1998                        transactionID:kAnyTransactionID];
2000     [event setParamDescriptor:pathDesc forKeyword:keyDirectObject];
2002     if (buf->b_odb_token)
2003         [event setParamDescriptor:buf->b_odb_token forKeyword:keySenderToken];
2005     return AESendMessage([event aeDesc], NULL, kAENoReply | kAENeverInteract,
2006             kAEDefaultTimeout);
2009     OSErr
2010 odb_buffer_close(buf_T *buf)
2012     OSErr err = noErr;
2013     if (buf) {
2014         err = odb_event(buf, kAEClosedFile);
2016         buf->b_odb_server_id = 0;
2018         if (buf->b_odb_token) {
2019             [(NSAppleEventDescriptor *)(buf->b_odb_token) release];
2020             buf->b_odb_token = NULL;
2021         }
2023         if (buf->b_odb_fname) {
2024             vim_free(buf->b_odb_fname);
2025             buf->b_odb_fname = NULL;
2026         }
2027     }
2029     return err;
2032     OSErr
2033 odb_post_buffer_write(buf_T *buf)
2035     return buf ? odb_event(buf, kAEModifiedFile) : noErr;
2038     void
2039 odb_end(void)
2041     buf_T *buf;
2042     for (buf = firstbuf; buf != NULL; buf = buf->b_next)
2043         odb_buffer_close(buf);
2046 #endif // FEAT_ODB_EDITOR
2049     char_u *
2050 get_macaction_name(expand_T *xp, int idx)
2052     static char_u *str = NULL;
2053     NSDictionary *actionDict = [[MMBackend sharedInstance] actionDict];
2055     if (nil == actionDict || idx < 0 || idx >= [actionDict count])
2056         return NULL;
2058     NSString *string = [[actionDict allKeys] objectAtIndex:idx];
2059     if (!string)
2060         return NULL;
2062     char_u *plainStr = (char_u*)[string UTF8String];
2064 #ifdef FEAT_MBYTE
2065     if (str) {
2066         vim_free(str);
2067         str = NULL;
2068     }
2069     if (input_conv.vc_type != CONV_NONE) {
2070         int len = [string lengthOfBytesUsingEncoding:NSUTF8StringEncoding];
2071         str = string_convert(&input_conv, plainStr, &len);
2072         plainStr = str;
2073     }
2074 #endif
2076     return plainStr;
2080     int
2081 is_valid_macaction(char_u *action)
2083     int isValid = NO;
2084     NSDictionary *actionDict = [[MMBackend sharedInstance] actionDict];
2085     if (actionDict) {
2086 #ifdef FEAT_MBYTE
2087         action = CONVERT_TO_UTF8(action);
2088 #endif
2089         NSString *string = [NSString stringWithUTF8String:(char*)action];
2090         isValid = (nil != [actionDict objectForKey:string]);
2091 #ifdef FEAT_MBYTE
2092         CONVERT_TO_UTF8_FREE(action);
2093 #endif
2094     }
2096     return isValid;
2099 static int specialKeyToNSKey(int key)
2101     if (!IS_SPECIAL(key))
2102         return key;
2104     static struct {
2105         int special;
2106         int nskey;
2107     } sp2ns[] = {
2108         { K_UP, NSUpArrowFunctionKey },
2109         { K_DOWN, NSDownArrowFunctionKey },
2110         { K_LEFT, NSLeftArrowFunctionKey },
2111         { K_RIGHT, NSRightArrowFunctionKey },
2112         { K_F1, NSF1FunctionKey },
2113         { K_F2, NSF2FunctionKey },
2114         { K_F3, NSF3FunctionKey },
2115         { K_F4, NSF4FunctionKey },
2116         { K_F5, NSF5FunctionKey },
2117         { K_F6, NSF6FunctionKey },
2118         { K_F7, NSF7FunctionKey },
2119         { K_F8, NSF8FunctionKey },
2120         { K_F9, NSF9FunctionKey },
2121         { K_F10, NSF10FunctionKey },
2122         { K_F11, NSF11FunctionKey },
2123         { K_F12, NSF12FunctionKey },
2124         { K_F13, NSF13FunctionKey },
2125         { K_F14, NSF14FunctionKey },
2126         { K_F15, NSF15FunctionKey },
2127         { K_F16, NSF16FunctionKey },
2128         { K_F17, NSF17FunctionKey },
2129         { K_F18, NSF18FunctionKey },
2130         { K_F19, NSF19FunctionKey },
2131         { K_F20, NSF20FunctionKey },
2132         { K_F21, NSF21FunctionKey },
2133         { K_F22, NSF22FunctionKey },
2134         { K_F23, NSF23FunctionKey },
2135         { K_F24, NSF24FunctionKey },
2136         { K_F25, NSF25FunctionKey },
2137         { K_F26, NSF26FunctionKey },
2138         { K_F27, NSF27FunctionKey },
2139         { K_F28, NSF28FunctionKey },
2140         { K_F29, NSF29FunctionKey },
2141         { K_F30, NSF30FunctionKey },
2142         { K_F31, NSF31FunctionKey },
2143         { K_F32, NSF32FunctionKey },
2144         { K_F33, NSF33FunctionKey },
2145         { K_F34, NSF34FunctionKey },
2146         { K_F35, NSF35FunctionKey },
2147         { K_DEL, NSBackspaceCharacter },
2148         { K_BS, NSDeleteCharacter },
2149         { K_HOME, NSHomeFunctionKey },
2150         { K_END, NSEndFunctionKey },
2151         { K_PAGEUP, NSPageUpFunctionKey },
2152         { K_PAGEDOWN, NSPageDownFunctionKey }
2153     };
2155     int i;
2156     for (i = 0; i < sizeof(sp2ns)/sizeof(sp2ns[0]); ++i) {
2157         if (sp2ns[i].special == key)
2158             return sp2ns[i].nskey;
2159     }
2161     return 0;
2164 static int vimModMaskToEventModifierFlags(int mods)
2166     int flags = 0;
2168     if (mods & MOD_MASK_SHIFT)
2169         flags |= NSShiftKeyMask;
2170     if (mods & MOD_MASK_CTRL)
2171         flags |= NSControlKeyMask;
2172     if (mods & MOD_MASK_ALT)
2173         flags |= NSAlternateKeyMask;
2174     if (mods & MOD_MASK_CMD)
2175         flags |= NSCommandKeyMask;
2177     return flags;