1 /* vi:set ts=8 sts=4 sw=4 ft=objc:
3 * VIM - Vi IMproved by Bram Moolenaar
4 * MacVim GUI port by Bjorn Winckler
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.
11 #import <Foundation/Foundation.h>
17 static BOOL gui_macvim_is_valid_action(NSString *action);
20 // -- Initialization --------------------------------------------------------
23 * Parse the GUI related command-line arguments. Any arguments used are
24 * deleted from argv, and *argc is decremented accordingly. This is called
25 * when vim is started, whether or not the GUI has been started.
28 gui_mch_prepare(int *argc, char **argv)
30 //NSLog(@"gui_mch_prepare(argc=%d)", *argc);
32 // Set environment variables $VIM and $VIMRUNTIME
33 // NOTE! If vim_getenv is called with one of these as parameters before
34 // they have been set here, they will most likely end up with the wrong
38 // - ensure this is called first to avoid above problem
41 NSString *path = [[[NSBundle mainBundle] resourcePath]
42 stringByAppendingPathComponent:@"vim"];
43 vim_setenv((char_u*)"VIM", (char_u*)[path UTF8String]);
45 path = [path stringByAppendingPathComponent:@"runtime"];
46 vim_setenv((char_u*)"VIMRUNTIME", (char_u*)[path UTF8String]);
51 * Check if the GUI can be started. Called before gvimrc is sourced.
55 gui_mch_init_check(void)
57 //NSLog(@"gui_mch_init_check()");
63 * Initialise the GUI. Create all the windows, set up all the call-backs etc.
64 * Returns OK for success, FAIL when the GUI can't be started.
69 //NSLog(@"gui_mch_init()");
71 if (![[MMBackend sharedInstance] checkin])
74 // HACK! Force the 'termencoding to utf-8. For the moment also force
75 // 'encoding', although this will change in the future. The user can still
76 // change 'encoding'; doing so WILL crash the program.
77 set_option_value((char_u *)"termencoding", 0L, (char_u *)"utf-8", 0);
78 set_option_value((char_u *)"encoding", 0L, (char_u *)"utf-8", 0);
80 // Set values so that pixels and characters are in one-to-one
81 // correspondence (assuming all characters have the same dimensions).
82 gui.scrollbar_width = gui.scrollbar_height = 0;
90 [[MMBackend sharedInstance]
91 setDefaultColorsBackground:gui.back_pixel foreground:gui.norm_pixel];
92 [[MMBackend sharedInstance] setBackgroundColor:gui.back_pixel];
93 [[MMBackend sharedInstance] setForegroundColor:gui.norm_pixel];
95 // NOTE: If this call is left out the cursor is opaque.
96 highlight_gui_started();
106 //NSLog(@"gui_mch_exit(rc=%d)", rc);
108 [[MMBackend sharedInstance] exit];
113 * Open the GUI window which was created by a call to gui_mch_init().
118 //NSLog(@"gui_mch_open()");
120 return [[MMBackend sharedInstance] openVimWindow];
124 // -- Updating --------------------------------------------------------------
128 * Catch up with any queued X events. This may put keyboard input into the
129 * input buffer, call resize call-backs, trigger timers etc. If there is
130 * nothing in the X event queue (& no timers pending), then we return
136 // TODO: Ensure that this causes no problems.
137 [[NSRunLoop currentRunLoop] runMode:NSDefaultRunLoopMode
138 beforeDate:[NSDate distantPast]];
142 /* Flush any output to the screen */
146 [[MMBackend sharedInstance] flushQueue:NO];
151 * GUI input routine called by gui_wait_for_chars(). Waits for a character
153 * wtime == -1 Wait forever.
154 * wtime == 0 This should never happen.
155 * wtime > 0 Wait wtime milliseconds for a character.
156 * Returns OK if a character was found to be available within the given time,
160 gui_mch_wait_for_chars(int wtime)
162 // NOTE! In all likelihood Vim will take a nap when waitForInput: is
163 // called, so force a flush of the command queue here.
164 [[MMBackend sharedInstance] flushQueue:YES];
166 return [[MMBackend sharedInstance] waitForInput:wtime];
170 // -- Drawing ---------------------------------------------------------------
174 * Clear the whole text window.
177 gui_mch_clear_all(void)
179 [[MMBackend sharedInstance] clearAll];
184 * Clear a rectangular region of the screen from text pos (row1, col1) to
185 * (row2, col2) inclusive.
188 gui_mch_clear_block(int row1, int col1, int row2, int col2)
190 [[MMBackend sharedInstance] clearBlockFromRow:row1 column:col1
191 toRow:row2 column:col2];
196 * Delete the given number of lines from the given row, scrolling up any
197 * text further down within the scroll region.
200 gui_mch_delete_lines(int row, int num_lines)
202 [[MMBackend sharedInstance] deleteLinesFromRow:row count:num_lines
203 scrollBottom:gui.scroll_region_bot
204 left:gui.scroll_region_left
205 right:gui.scroll_region_right];
210 gui_mch_draw_string(int row, int col, char_u *s, int len, int flags)
212 [[MMBackend sharedInstance] replaceString:(char*)s length:len
213 row:row column:col flags:flags];
218 gui_macvim_draw_string(int row, int col, char_u *s, int len, int flags)
221 NSString *string = [[NSString alloc]
222 initWithBytesNoCopy:(void*)s
224 encoding:NSUTF8StringEncoding
226 int cells = [string length];
229 NSLog(@"gui_macvim_draw_string(row=%d, col=%d, len=%d, cells=%d, flags=%d)",
230 row, col, len, cells, flags);
232 [[MMBackend sharedInstance] replaceString:(char*)s length:len
233 row:row column:col flags:flags];
245 MMBackend *backend = [MMBackend sharedInstance];
247 for (i = 0; i < len; i += cl) {
248 c = utf_ptr2char(s + i);
249 cl = utf_ptr2len(s + i);
250 cn = utf_char2cells(c);
251 comping = utf_iscomposing(c);
256 if (cn > 1 && !wide) {
257 // Start of wide characters.
260 // Output non-wide characters.
262 NSLog(@"Outputting %d non-wide chars (%d bytes)",
263 endcol-startcol, start-i);
264 [backend replaceString:(char*)(s+start) length:start-i
265 row:row column:startcol flags:flags];
269 } else if (cn <= 1 && !comping && wide) {
270 // End of wide characters.
273 // Output wide characters.
275 NSLog(@"Outputting %d wide chars (%d bytes)",
276 endcol-startcol, start-i);
277 [backend replaceString:(char*)(s+start) length:start-i
278 row:row column:startcol flags:(flags|0x80)];
285 // Output remaining characters.
286 flags = wide ? flags|0x80 : flags;
287 NSLog(@"Outputting %d %s chars (%d bytes)", endcol-startcol, wide ? "wide"
288 : "non-wide", len-start);
289 [backend replaceString:(char*)(s+start) length:len-start
290 row:row column:startcol flags:flags];
295 // Output chars until a wide char found. If a wide char is found, output a
296 // zero-width space after it so that a wide char looks like two chars to
297 // MMTextStorage. This way 1 char corresponds to 1 column.
308 MMBackend *backend = [MMBackend sharedInstance];
309 static char ZeroWidthSpace[] = { 0xe2, 0x80, 0x8b };
311 char_u *conv_str = NULL;
313 if (output_conv.vc_type != CONV_NONE) {
314 char_u *conv_str = string_convert(&output_conv, s, &len);
320 for (i = 0; i < len; i += cl) {
321 c = utf_ptr2char(s + i);
322 cl = utf_ptr2len(s + i);
323 cn = utf_char2cells(c);
325 if (!utf_iscomposing(c)) {
329 NSString *string = [[NSString alloc]
330 initWithBytesNoCopy:(void*)(s+start)
332 encoding:NSUTF8StringEncoding
334 NSLog(@"Flushing string=%@ len=%d row=%d col=%d end=%d",
335 string, i-start, row, startcol, endcol);
338 [backend replaceString:(char*)(s+start) length:i-start
339 row:row column:startcol flags:flags];
343 NSLog(@"Padding len=%d row=%d col=%d", sizeof(ZeroWidthSpace),
346 [backend replaceString:ZeroWidthSpace
347 length:sizeof(ZeroWidthSpace)
348 row:row column:endcol-1 flags:flags];
356 NSLog(@"Wide char detected! (char=%C hex=%x cells=%d)", c, c, cn);
364 NSString *string = [[NSString alloc]
365 initWithBytesNoCopy:(void*)(s+start)
367 encoding:NSUTF8StringEncoding
369 NSLog(@"Output string=%@ len=%d row=%d col=%d", string, len-start, row,
375 // Output remaining characters.
376 [backend replaceString:(char*)(s+start) length:len-start
377 row:row column:startcol flags:flags];
381 NSLog(@"Padding len=%d row=%d col=%d", sizeof(ZeroWidthSpace), row,
384 [backend replaceString:ZeroWidthSpace
385 length:sizeof(ZeroWidthSpace)
386 row:row column:endcol-1 flags:flags];
396 // This will fail abysmally when wide or composing characters are used.
397 [[MMBackend sharedInstance]
398 replaceString:(char*)s length:len row:row column:col flags:flags];
400 int i, c, cl, cn, cells = 0;
401 for (i = 0; i < len; i += cl) {
402 c = utf_ptr2char(s + i);
403 cl = utf_ptr2len(s + i);
404 cn = utf_char2cells(c);
406 if (!utf_iscomposing(c))
416 * Insert the given number of lines before the given row, scrolling down any
417 * following text within the scroll region.
420 gui_mch_insert_lines(int row, int num_lines)
422 [[MMBackend sharedInstance] insertLinesFromRow:row count:num_lines
423 scrollBottom:gui.scroll_region_bot
424 left:gui.scroll_region_left
425 right:gui.scroll_region_right];
430 * Set the current text foreground color.
433 gui_mch_set_fg_color(guicolor_T color)
435 [[MMBackend sharedInstance] setForegroundColor:color];
440 * Set the current text background color.
443 gui_mch_set_bg_color(guicolor_T color)
445 [[MMBackend sharedInstance] setBackgroundColor:color];
450 * Set the current text special color (used for underlines).
453 gui_mch_set_sp_color(guicolor_T color)
455 [[MMBackend sharedInstance] setSpecialColor:color];
460 * Set default colors.
465 MMBackend *backend = [MMBackend sharedInstance];
467 // The default colors are taken from system values
468 gui.def_norm_pixel = gui.norm_pixel =
469 [backend lookupColorWithKey:@"MacTextColor"];
470 gui.def_back_pixel = gui.back_pixel =
471 [backend lookupColorWithKey:@"MacTextBackgroundColor"];
473 // Set the text selection color to match the system preferences.
474 // TODO: Is there a better way to do this?
475 do_cmdline_cmd((char_u*)"hi Visual guibg=MacSelectedTextBackgroundColor");
480 * Called when the foreground or background color has been changed.
483 gui_mch_new_colors(void)
485 gui.def_back_pixel = gui.back_pixel;
486 gui.def_norm_pixel = gui.norm_pixel;
488 //NSLog(@"gui_mch_new_colors(back=%x, norm=%x)", gui.def_back_pixel,
489 // gui.def_norm_pixel);
491 [[MMBackend sharedInstance]
492 setDefaultColorsBackground:gui.def_back_pixel
493 foreground:gui.def_norm_pixel];
497 // -- Tabline ---------------------------------------------------------------
501 * Set the current tab to "nr". First tab is 1.
504 gui_mch_set_curtab(int nr)
506 [[MMBackend sharedInstance] selectTab:nr];
511 * Return TRUE when tabline is displayed.
514 gui_mch_showing_tabline(void)
516 return [[MMBackend sharedInstance] tabBarVisible];
520 * Update the labels of the tabline.
523 gui_mch_update_tabline(void)
525 [[MMBackend sharedInstance] updateTabBar];
529 * Show or hide the tabline.
532 gui_mch_show_tabline(int showit)
534 [[MMBackend sharedInstance] showTabBar:showit];
538 // -- Clipboard -------------------------------------------------------------
542 clip_mch_lose_selection(VimClipboard *cbd)
548 clip_mch_own_selection(VimClipboard *cbd)
555 clip_mch_request_selection(VimClipboard *cbd)
557 NSPasteboard *pb = [NSPasteboard generalPasteboard];
558 NSString *pbType = [pb availableTypeFromArray:
559 [NSArray arrayWithObject:NSStringPboardType]];
561 NSMutableString *string =
562 [[pb stringForType:NSStringPboardType] mutableCopy];
564 // Replace unrecognized end-of-line sequences with \x0a (line feed).
565 NSRange range = { 0, [string length] };
566 unsigned n = [string replaceOccurrencesOfString:@"\x0d\x0a"
567 withString:@"\x0a" options:0
570 n = [string replaceOccurrencesOfString:@"\x0d" withString:@"\x0a"
571 options:0 range:range];
574 // Scan for newline character to decide whether the string should be
575 // pasted linewise or characterwise.
577 if (0 < n || NSNotFound != [string rangeOfString:@"\n"].location)
580 char_u *str = (char_u*)[string UTF8String];
581 int len = [string lengthOfBytesUsingEncoding:NSUTF8StringEncoding];
584 if (input_conv.vc_type != CONV_NONE) {
585 NSLog(@"Converting from: '%@'", string);
586 char_u *conv_str = string_convert(&input_conv, str, &len);
588 NSLog(@" to: '%s'", conv_str);
589 clip_yank_selection(type, conv_str, len, cbd);
596 clip_yank_selection(type, str, len, cbd);
602 * Send the current selection to the clipboard.
605 clip_mch_set_selection(VimClipboard *cbd)
607 // If the '*' register isn't already filled in, fill it in now.
609 clip_get_selection(cbd);
612 // Get the text to put on the pasteboard.
613 long_u llen = 0; char_u *str = 0;
614 int type = clip_convert_selection(&str, &llen, cbd);
618 // TODO: Avoid overflow.
621 if (output_conv.vc_type != CONV_NONE) {
622 char_u *conv_str = string_convert(&output_conv, str, &len);
631 NSString *string = [[NSString alloc]
632 initWithBytes:str length:len encoding:NSUTF8StringEncoding];
634 NSPasteboard *pb = [NSPasteboard generalPasteboard];
635 [pb declareTypes:[NSArray arrayWithObject:NSStringPboardType]
637 [pb setString:string forType:NSStringPboardType];
646 // -- Menu ------------------------------------------------------------------
650 * Add a sub menu to the menu bar.
653 gui_mch_add_menu(vimmenu_T *menu, int idx)
655 // HACK! If menu has no parent, then we set the parent tag to the type of
656 // menu it is. This will not mix up tag and type because pointers can not
657 // take values close to zero (and the tag is simply the value of the
659 int parent = (int)menu->parent;
661 parent = menu_is_popup(menu->name) ? MenuPopupType :
662 menu_is_toolbar(menu->name) ? MenuToolbarType :
666 [[MMBackend sharedInstance]
667 addMenuWithTag:(int)menu parent:parent name:(char*)menu->dname
673 * Add a menu item to a menu
676 gui_mch_add_menu_item(vimmenu_T *menu, int idx)
678 // NOTE! If 'iconfile' is not set but 'iconidx' is, use the name of the
679 // menu item. (Should correspond to a stock item.)
680 char *icon = menu->iconfile ? (char*)menu->iconfile :
681 menu->iconidx >= 0 ? (char*)menu->dname :
683 //char *name = menu_is_separator(menu->name) ? NULL : (char*)menu->dname;
684 char *name = (char*)menu->dname;
685 char *tip = menu->strings[MENU_INDEX_TIP]
686 ? (char*)menu->strings[MENU_INDEX_TIP] : (char*)menu->actext;
688 // HACK! Check if menu is mapped to ':action actionName:'; if so, pass the
689 // action along so that MacVim can bind the menu item to this action. This
690 // means that if a menu item maps to an action in normal mode, then all
691 // other modes will also use the same action.
692 NSString *action = nil;
693 char_u *map_str = menu->strings[MENU_INDEX_NORMAL];
695 NSString *mapping = [NSString stringWithCString:(char*)map_str
696 encoding:NSUTF8StringEncoding];
697 NSArray *parts = [mapping componentsSeparatedByString:@" "];
698 if ([parts count] >=2
699 && [[parts objectAtIndex:0] isEqual:@":action"]) {
700 action = [parts objectAtIndex:1];
701 action = [action stringByTrimmingCharactersInSet:
702 [NSCharacterSet whitespaceAndNewlineCharacterSet]];
703 if (!gui_macvim_is_valid_action(action))
708 [[MMBackend sharedInstance]
709 addMenuItemWithTag:(int)menu
710 parent:(int)menu->parent
714 keyEquivalent:menu->ke_key
715 modifiers:menu->ke_mods
722 * Destroy the machine specific menu widget.
725 gui_mch_destroy_menu(vimmenu_T *menu)
727 [[MMBackend sharedInstance] removeMenuItemWithTag:(int)menu];
732 * Make a menu either grey or not grey.
735 gui_mch_menu_grey(vimmenu_T *menu, int grey)
737 [[MMBackend sharedInstance]
738 enableMenuItemWithTag:(int)menu state:!grey];
743 * Make menu item hidden or not hidden
746 gui_mch_menu_hidden(vimmenu_T *menu, int hidden)
748 // HACK! There is no (obvious) way to hide a menu item, so simply
749 // enable/disable it instead.
750 [[MMBackend sharedInstance]
751 enableMenuItemWithTag:(int)menu state:!hidden];
756 * This is called when user right clicks.
759 gui_mch_show_popupmenu(vimmenu_T *menu)
761 [[MMBackend sharedInstance] showPopupMenuWithName:(char*)menu->name
762 atMouseLocation:YES];
767 * This is called when a :popup command is executed.
770 gui_make_popup(char_u *path_name, int mouse_pos)
772 [[MMBackend sharedInstance] showPopupMenuWithName:(char*)path_name
773 atMouseLocation:mouse_pos];
778 * This is called after setting all the menus to grey/hidden or not.
781 gui_mch_draw_menubar(void)
783 // The (main) menu draws itself in Mac OS X.
788 gui_mch_enable_menu(int flag)
790 // The (main) menu is always enabled in Mac OS X.
796 gui_mch_set_menu_pos(int x, int y, int w, int h)
798 // The (main) menu cannot be moved in Mac OS X.
804 gui_mch_show_toolbar(int showit)
807 if (toolbar_flags & TOOLBAR_TEXT) flags |= ToolbarLabelFlag;
808 if (toolbar_flags & TOOLBAR_ICONS) flags |= ToolbarIconFlag;
809 if (tbis_flags & (TBIS_MEDIUM|TBIS_LARGE)) flags |= ToolbarSizeRegularFlag;
811 [[MMBackend sharedInstance] showToolbar:showit flags:flags];
817 // -- Fonts -----------------------------------------------------------------
821 * If a font is not going to be used, free its structure.
824 gui_mch_free_font(font)
831 * Get a font structure for highlighting.
834 gui_mch_get_font(char_u *name, int giveErrorIfMissing)
836 //NSLog(@"gui_mch_get_font(name=%s, giveErrorIfMissing=%d)", name,
837 // giveErrorIfMissing);
842 #if defined(FEAT_EVAL) || defined(PROTO)
844 * Return the name of font "font" in allocated memory.
845 * Don't know how to get the actual name, thus use the provided name.
848 gui_mch_get_fontname(GuiFont font, char_u *name)
850 //NSLog(@"gui_mch_get_fontname(font=%d, name=%s)", font, name);
857 * Initialise vim to use the font with the given name. Return FAIL if the font
858 * could not be loaded, OK otherwise.
861 gui_mch_init_font(char_u *font_name, int fontset)
863 //NSLog(@"gui_mch_init_font(font_name=%s, fontset=%d)", font_name, fontset);
865 // HACK! This gets called whenever the user types :set gfn=fontname, so
866 // for now we set the font here.
867 // TODO! Proper font handling, the way Vim expects it.
868 return [[MMBackend sharedInstance]
869 setFontWithName:(char*)font_name];
874 * Set the current text font.
877 gui_mch_set_font(GuiFont font)
882 // -- Scrollbars ------------------------------------------------------------
886 gui_mch_create_scrollbar(
888 int orient) /* SBAR_VERT or SBAR_HORIZ */
890 [[MMBackend sharedInstance]
891 createScrollbarWithIdentifier:sb->ident type:sb->type];
896 gui_mch_destroy_scrollbar(scrollbar_T *sb)
898 [[MMBackend sharedInstance]
899 destroyScrollbarWithIdentifier:sb->ident];
904 gui_mch_enable_scrollbar(
908 [[MMBackend sharedInstance]
909 showScrollbarWithIdentifier:sb->ident state:flag];
914 gui_mch_set_scrollbar_pos(
923 if (SBAR_BOTTOM == sb->type) {
928 [[MMBackend sharedInstance]
929 setScrollbarPosition:pos length:len identifier:sb->ident];
934 gui_mch_set_scrollbar_thumb(
940 [[MMBackend sharedInstance]
941 setScrollbarThumbValue:val size:size max:max identifier:sb->ident];
945 // -- Cursor ----------------------------------------------------------------
949 * Draw a cursor without focus.
952 gui_mch_draw_hollow_cursor(guicolor_T color)
954 return [[MMBackend sharedInstance]
955 drawCursorAtRow:gui.row column:gui.col shape:MMInsertionPointHollow
956 fraction:100 color:color];
961 * Draw part of a cursor, only w pixels wide, and h pixels high.
964 gui_mch_draw_part_cursor(int w, int h, guicolor_T color)
966 // HACK! 'w' and 'h' are always 1 since we do not tell Vim about the exact
967 // font dimensions. Thus these parameters are useless. Instead we look at
968 // the shape_table to determine the shape and size of the cursor (just like
969 // gui_update_cursor() does).
970 int idx = get_shape_idx(FALSE);
971 int shape = MMInsertionPointBlock;
972 switch (shape_table[idx].shape) {
973 case SHAPE_HOR: shape = MMInsertionPointHorizontal; break;
974 case SHAPE_VER: shape = MMInsertionPointVertical; break;
977 return [[MMBackend sharedInstance]
978 drawCursorAtRow:gui.row column:gui.col shape:shape
979 fraction:shape_table[idx].percentage color:color];
984 * Cursor blink functions.
986 * This is a simple state machine:
987 * BLINK_NONE not blinking at all
988 * BLINK_OFF blinking, cursor is not shown
989 * BLINK_ON blinking, cursor is shown
992 gui_mch_set_blinking(long wait, long on, long off)
994 [[MMBackend sharedInstance] setBlinkWait:wait on:on off:off];
999 * Start the cursor blinking. If it was already blinking, this restarts the
1000 * waiting time and shows the cursor.
1003 gui_mch_start_blink(void)
1005 [[MMBackend sharedInstance] startBlink];
1010 * Stop the cursor blinking. Show the cursor if it wasn't shown.
1013 gui_mch_stop_blink(void)
1015 [[MMBackend sharedInstance] stopBlink];
1019 // -- Mouse -----------------------------------------------------------------
1023 * Get current mouse coordinates in text window.
1026 gui_mch_getmouse(int *x, int *y)
1028 //NSLog(@"gui_mch_getmouse()");
1033 gui_mch_setmouse(int x, int y)
1035 //NSLog(@"gui_mch_setmouse(x=%d, y=%d)", x, y);
1040 mch_set_mouse_shape(int shape)
1042 [[MMBackend sharedInstance] setMouseShape:shape];
1048 // -- Unsorted --------------------------------------------------------------
1056 EMSG(_("E???: Command only available in GUI mode"));
1060 NSString *name = [NSString stringWithCString:(char*)eap->arg
1061 encoding:NSUTF8StringEncoding];
1062 if (gui_macvim_is_valid_action(name)) {
1063 [[MMBackend sharedInstance] executeActionWithName:name];
1065 EMSG2(_("E???: \"%s\" is not a valid action"), eap->arg);
1071 * Adjust gui.char_height (after 'linespace' was changed).
1074 gui_mch_adjust_charheight(void)
1076 [[MMBackend sharedInstance] adjustLinespace:p_linespace];
1090 * Pop open a file browser and return the file selected, in allocated memory,
1091 * or NULL if Cancel is hit.
1092 * saving - TRUE if the file will be saved to, FALSE if it will be opened.
1093 * title - Title message for the file browser dialog.
1094 * dflt - Default name of file.
1095 * ext - Default extension to be added to files without extensions.
1096 * initdir - directory in which to open the browser (NULL = current dir)
1097 * filter - Filter for matched files to choose from.
1098 * Has a format like this:
1099 * "C Files (*.c)\0*.c\0"
1100 * "All Files\0*.*\0\0"
1101 * If these two strings were concatenated, then a choice of two file
1102 * filters will be selectable to the user. Then only matching files will
1103 * be shown in the browser. If NULL, the default allows all files.
1105 * *NOTE* - the filter string must be terminated with TWO nulls.
1116 //NSLog(@"gui_mch_browse(saving=%d, title=%s, dflt=%s, ext=%s, initdir=%s,"
1117 // " filter=%s", saving, title, dflt, ext, initdir, filter);
1119 char_u *s = (char_u*)[[MMBackend sharedInstance]
1120 browseForFileInDirectory:(char*)initdir title:(char*)title
1125 #endif /* FEAT_BROWSE */
1138 //NSLog(@"gui_mch_dialog(type=%d title=%s message=%s buttons=%s "
1139 // "dfltbutton=%d textfield=%s)", type, title, message, buttons,
1140 // dfltbutton, textfield);
1142 return [[MMBackend sharedInstance] presentDialogWithType:type
1144 message:(char*)message
1145 buttons:(char*)buttons
1146 textField:(char*)textfield];
1151 gui_mch_flash(int msec)
1157 * Return the Pixel value (color) for the given color name. This routine was
1158 * pretty much taken from example code in the Silicon Graphics OSF/Motif
1159 * Programmer's Guide.
1160 * Return INVALCOLOR when failed.
1163 gui_mch_get_color(char_u *name)
1165 NSString *key = [NSString stringWithUTF8String:(char*)name];
1166 return [[MMBackend sharedInstance] lookupColorWithKey:key];
1171 * Return the RGB value of a pixel as long.
1174 gui_mch_get_rgb(guicolor_T pixel)
1176 // This is only implemented so that vim can guess the correct value for
1177 // 'background' (which otherwise defaults to 'dark'); it is not used for
1178 // anything else (as far as I know).
1179 // The implementation is simple since colors are stored in an int as
1186 * Get the screen dimensions.
1187 * Allow 10 pixels for horizontal borders, 40 for vertical borders.
1188 * Is there no way to find out how wide the borders really are?
1189 * TODO: Add live udate of those value on suspend/resume.
1192 gui_mch_get_screen_dimensions(int *screen_w, int *screen_h)
1194 //NSLog(@"gui_mch_get_screen_dimensions()");
1195 *screen_w = Columns;
1201 * Get the position of the top left corner of the window.
1204 gui_mch_get_winpos(int *x, int *y)
1212 * Return OK if the key with the termcap name "name" is supported.
1215 gui_mch_haskey(char_u *name)
1217 NSString *value = [NSString stringWithUTF8String:(char*)name];
1219 return [[MMBackend sharedInstance] hasSpecialKeyWithValue:value];
1226 * Iconify the GUI window.
1229 gui_mch_iconify(void)
1235 * Invert a rectangle from row r, column c, for nr rows and nc columns.
1238 gui_mch_invert_rectangle(int r, int c, int nr, int nc)
1243 #if defined(FEAT_EVAL) || defined(PROTO)
1245 * Bring the Vim window to the foreground.
1248 gui_mch_set_foreground(void)
1256 gui_mch_set_shellsize(
1265 //NSLog(@"gui_mch_set_shellsize(width=%d, height=%d, min_width=%d,"
1266 // " min_height=%d, base_width=%d, base_height=%d, direction=%d)",
1267 // width, height, min_width, min_height, base_width, base_height,
1269 [[MMBackend sharedInstance] setRows:height columns:width];
1274 gui_mch_set_text_area_pos(int x, int y, int w, int h)
1279 * Set the position of the top left corner of the window to the given
1283 gui_mch_set_winpos(int x, int y)
1290 * Set the window title and icon.
1291 * (The icon is not taken care of).
1294 gui_mch_settitle(char_u *title, char_u *icon)
1296 //NSLog(@"gui_mch_settitle(title=%s, icon=%s)", title, icon);
1298 [[MMBackend sharedInstance] setVimWindowTitle:(char*)title];
1304 gui_mch_toggle_tearoffs(int enable)
1310 gui_macvim_is_valid_action(NSString *action)
1312 static NSDictionary *actionDict = nil;
1315 NSBundle *mainBundle = [NSBundle mainBundle];
1316 NSString *path = [mainBundle pathForResource:@"Actions"
1319 actionDict = [[NSDictionary alloc] initWithContentsOfFile:path];
1321 // Allocate bogus dictionary so that error only pops up once.
1322 actionDict = [NSDictionary new];
1323 EMSG(_("E???: Failed to load action dictionary"));
1327 return [actionDict objectForKey:action] != nil;