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 <Cocoa/Cocoa.h>
14 // Enable to use experimental 'enc' support.
15 #define MM_ENABLE_CONV 1
20 // This is the protocol MMBackend implements.
22 // Only processInput:data: is allowed to cause state changes in Vim; all other
23 // messages should only read the Vim state. (Note that setDialogReturn: is an
24 // exception to this rule; there really is no other way to deal with dialogs
25 // since they work with callbacks, so we cannot wait for them to return.)
27 // Be careful with messages with return type other than 'oneway void' -- there
28 // is a reply timeout set in MMAppController, if a message fails to get a
29 // response within the given timeout an exception will be thrown. Use
30 // @try/@catch/@finally to deal with timeouts.
32 @protocol MMBackendProtocol
33 - (oneway
void)processInput
:(int)msgid data
:(in bycopy NSData
*)data
;
34 - (oneway
void)processInputAndData
:(in bycopy NSArray
*)messages
;
35 - (BOOL
)checkForModifiedBuffers
;
36 - (oneway
void)setDialogReturn
:(in bycopy id
)obj
;
37 - (BOOL
)starRegisterToPasteboard
:(byref NSPasteboard
*)pboard
;
42 // This is the protocol MMVimController implements.
44 @protocol MMFrontendProtocol
45 - (oneway
void)processCommandQueue
:(in bycopy NSArray
*)queue
;
46 - (oneway
void)showSavePanelForDirectory
:(in bycopy NSString
*)dir
47 title
:(in bycopy NSString
*)title
49 - (oneway
void)presentDialogWithStyle
:(int)style
50 message
:(in bycopy NSString
*)message
51 informativeText
:(in bycopy NSString
*)text
52 buttonTitles
:(in bycopy NSArray
*)buttonTitles
53 textFieldString
:(in bycopy NSString
*)textFieldString
;
58 // This is the protocol MMAppController implements.
60 // It handles connections between MacVim and Vim.
62 @protocol MMAppProtocol
63 - (byref id
<MMFrontendProtocol
>)
64 connectBackend
:(byref in id
<MMBackendProtocol
>)backend
66 - (NSArray
*)serverList
;
70 @protocol MMVimServerProtocol
;
73 // The Vim client protocol (implemented by MMBackend).
75 // The client needs to keep track of server replies. Take a look at MMBackend
76 // if you want to implement this protocol in another program.
78 @protocol MMVimClientProtocol
79 - (oneway
void)addReply
:(in bycopy NSString
*)reply
80 server
:(in byref id
<MMVimServerProtocol
>)server
;
85 // The Vim server protocol (implemented by MMBackend).
87 // Note that addInput:client: is not asynchronous, because otherwise Vim might
88 // quit before the message has been passed (e.g. if --remote was used on the
91 @protocol MMVimServerProtocol
92 - (void)addInput
:(in bycopy NSString
*)input
93 client
:(in byref id
<MMVimClientProtocol
>)client
;
94 - (NSString
*)evaluateExpression
:(in bycopy NSString
*)expr
95 client
:(in byref id
<MMVimClientProtocol
>)client
;
101 // The following enum lists all messages that are passed between MacVim and
102 // Vim. These can be sent in processInput:data: and in processCommandQueue:.
105 // NOTE! This array must be updated whenever the enum below changes!
106 extern char *MessageStrings
[];
109 OpenVimWindowMsgID
= 1,
121 SetTextDimensionsMsgID
,
135 CreateScrollbarMsgID
,
136 DestroyScrollbarMsgID
,
138 SetScrollbarPositionMsgID
,
139 SetScrollbarThumbMsgID
,
143 SetDefaultColorsMsgID
,
152 AdjustLinespaceMsgID
,
155 EnterFullscreenMsgID
,
156 LeaveFullscreenMsgID
,
157 BuffersNotModifiedMsgID
,
158 BuffersModifiedMsgID
,
163 ClearAllDrawType
= 1,
166 ReplaceStringDrawType
,
172 MMInsertionPointBlock
,
173 MMInsertionPointHorizontal
,
174 MMInsertionPointVertical
,
175 MMInsertionPointHollow
,
179 // NOTE! These values must be close to zero, or the 'add menu' message might
180 // fail to distinguish type from tag.
189 ToolbarLabelFlag
= 1,
191 ToolbarSizeRegularFlag
= 4
195 // NSUserDefaults keys
196 extern NSString
*MMNoWindowKey
;
197 extern NSString
*MMTabMinWidthKey
;
198 extern NSString
*MMTabMaxWidthKey
;
199 extern NSString
*MMTabOptimumWidthKey
;
200 extern NSString
*MMTextInsetLeftKey
;
201 extern NSString
*MMTextInsetRightKey
;
202 extern NSString
*MMTextInsetTopKey
;
203 extern NSString
*MMTextInsetBottomKey
;
204 extern NSString
*MMTerminateAfterLastWindowClosedKey
;
205 extern NSString
*MMTypesetterKey
;
206 extern NSString
*MMCellWidthMultiplierKey
;
207 extern NSString
*MMBaselineOffsetKey
;
208 extern NSString
*MMTranslateCtrlClickKey
;
209 extern NSString
*MMTopLeftPointKey
;
210 extern NSString
*MMOpenFilesInTabsKey
;
215 // Loads all fonts in the Resouces folder of the app bundle and returns a font
216 // container reference (which should be used to deactivate the loaded fonts).
217 ATSFontContainerRef
loadFonts();
222 @interface
NSString (MMExtras
)
223 - (NSString
*)stringByEscapingSpecialFilenameCharacters
;