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>
15 // Enable support for MacVim plugins (not to be confused with Vim plugins!).
17 #define MM_ENABLE_PLUGINS
22 // This is the protocol MMBackend implements.
24 // Only processInput:data: is allowed to cause state changes in Vim; all other
25 // messages should only read the Vim state. (Note that setDialogReturn: is an
26 // exception to this rule; there really is no other way to deal with dialogs
27 // since they work with callbacks, so we cannot wait for them to return.)
29 // Be careful with messages with return type other than 'oneway void' -- there
30 // is a reply timeout set in MMAppController, if a message fails to get a
31 // response within the given timeout an exception will be thrown. Use
32 // @try/@catch/@finally to deal with timeouts.
34 @protocol MMBackendProtocol
35 - (oneway
void)processInput
:(int)msgid data
:(in bycopy NSData
*)data
;
36 - (oneway
void)processInputAndData
:(in bycopy NSArray
*)messages
;
37 - (oneway
void)setDialogReturn
:(in bycopy id
)obj
;
38 - (NSString
*)evaluateExpression
:(in bycopy NSString
*)expr
;
39 - (id
)evaluateExpressionCocoa
:(in bycopy NSString
*)expr
40 errorString
:(out bycopy NSString
**)errstr
;
41 - (BOOL
)starRegisterToPasteboard
:(byref NSPasteboard
*)pboard
;
42 - (oneway
void)acknowledgeConnection
;
46 // This is the protocol MMVimController implements.
48 // Be very careful if you want to add methods to this protocol. Since DO
49 // messages may arrive while Cocoa is in the middle of processing some other
50 // message be sure to consider reentrancy issues. Look at processCommandQueue:
51 // to see an example of how to deal with this.
53 @protocol MMFrontendProtocol
54 - (oneway
void)processCommandQueue
:(in bycopy NSArray
*)queue
;
55 - (oneway
void)showSavePanelWithAttributes
:(in bycopy NSDictionary
*)attr
;
56 - (oneway
void)presentDialogWithAttributes
:(in bycopy NSDictionary
*)attr
;
61 // This is the protocol MMAppController implements.
63 // It handles connections between MacVim and Vim.
65 @protocol MMAppProtocol
66 - (byref id
<MMFrontendProtocol
>)
67 connectBackend
:(byref in id
<MMBackendProtocol
>)backend
69 - (NSArray
*)serverList
;
73 @protocol MMVimServerProtocol
;
76 // The Vim client protocol (implemented by MMBackend).
78 // The client needs to keep track of server replies. Take a look at MMBackend
79 // if you want to implement this protocol in another program.
81 @protocol MMVimClientProtocol
82 - (oneway
void)addReply
:(in bycopy NSString
*)reply
83 server
:(in byref id
<MMVimServerProtocol
>)server
;
88 // The Vim server protocol (implemented by MMBackend).
90 // Note that addInput:client: is not asynchronous, because otherwise Vim might
91 // quit before the message has been passed (e.g. if --remote was used on the
94 @protocol MMVimServerProtocol
95 - (void)addInput
:(in bycopy NSString
*)input
96 client
:(in byref id
<MMVimClientProtocol
>)client
;
97 - (NSString
*)evaluateExpression
:(in bycopy NSString
*)expr
98 client
:(in byref id
<MMVimClientProtocol
>)client
;
104 // The following enum lists all messages that are passed between MacVim and
105 // Vim. These can be sent in processInput:data: and in processCommandQueue:.
108 // NOTE! This array must be updated whenever the enum below changes!
109 extern char *MessageStrings
[];
126 SetTextDimensionsMsgID
,
128 SetTextDimensionsReplyMsgID
,
142 CreateScrollbarMsgID
,
143 DestroyScrollbarMsgID
,
145 SetScrollbarPositionMsgID
,
146 SetScrollbarThumbMsgID
,
151 SetDefaultColorsMsgID
,
160 AdjustLinespaceMsgID
,
163 EnterFullscreenMsgID
,
164 LeaveFullscreenMsgID
,
165 BuffersNotModifiedMsgID
,
166 BuffersModifiedMsgID
,
168 SetPreEditPositionMsgID
,
171 EnableAntialiasMsgID
,
172 DisableAntialiasMsgID
,
174 SetDocumentFilenameMsgID
,
175 OpenWithArgumentsMsgID
,
177 SetFullscreenColorMsgID
,
178 ShowFindReplaceDialogMsgID
,
183 #define DRAW_WIDE 0x40 /* draw wide text */
186 ClearAllDrawType
= 1,
192 SetCursorPosDrawType
,
193 DrawInvertedRectDrawType
,
197 MMInsertionPointBlock
,
198 MMInsertionPointHorizontal
,
199 MMInsertionPointVertical
,
200 MMInsertionPointHollow
,
201 MMInsertionPointVerticalRight
,
206 ToolbarLabelFlag
= 1,
208 ToolbarSizeRegularFlag
= 4
218 // Argument used to stop MacVim from opening an empty window on startup
219 // (techincally this is a user default but should not be used as such).
220 extern NSString
*MMNoWindowKey
;
222 // Vim pasteboard type (holds motion type + string)
223 extern NSString
*VimPBoardType
;
228 @interface
NSString (MMExtras
)
229 - (NSString
*)stringByEscapingSpecialFilenameCharacters
;
233 @interface
NSColor (MMExtras
)
234 + (NSColor
*)colorWithRgbInt
:(unsigned)rgb
;
235 + (NSColor
*)colorWithArgbInt
:(unsigned)argb
;
239 @interface
NSDictionary (MMExtras
)
240 + (id
)dictionaryWithData
:(NSData
*)data
;
241 - (NSData
*)dictionaryAsData
;
244 @interface
NSMutableDictionary (MMExtras
)
245 + (id
)dictionaryWithData
:(NSData
*)data
;
251 // ODB Editor Suite Constants (taken from ODBEditorSuite.h)
252 #define keyFileSender 'FSnd'
253 #define keyFileSenderToken 'FTok'
254 #define keyFileCustomPath 'Burl'
255 #define kODBEditorSuite 'R*ch'
256 #define kAEModifiedFile 'FMod'
257 #define keyNewLocation 'New?'
258 #define kAEClosedFile 'FCls'
259 #define keySenderToken 'Tokn'
262 // MacVim Apple Event Constants
263 #define keyMMUntitledWindow 'MMuw'
268 #if MAC_OS_X_VERSION_MAX_ALLOWED <= MAC_OS_X_VERSION_10_4
269 // NSInteger was introduced in 10.5
270 # if __LP64__ || NS_BUILD_32_LIKE_64
271 typedef long NSInteger
;
272 typedef unsigned long NSUInteger
;
274 typedef int NSInteger
;
275 typedef unsigned int NSUInteger
;