Fix placement of auxiliary IM window for Core Text
[MacVim.git] / src / MacVim / MMWindow.h
blob3e3fc1221e140560538494079f8b8f01be5381ec
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.
9 */
11 #import "MacVim.h"
15 @interface MMWindow : NSWindow {
16 NSBox *tablineSeparator;
19 - (id)initWithContentRect:(NSRect)rect
20 styleMask:(NSUInteger)style
21 backing:(NSBackingStoreType)bufferingType
22 defer:(BOOL)flag;
24 - (BOOL)hideTablineSeparator:(BOOL)hide;
26 - (NSRect)contentRectForFrameRect:(NSRect)frame;
27 - (NSRect)frameRectForContentRect:(NSRect)rect;
28 - (void)setContentMinSize:(NSSize)size;
29 - (void)setContentMaxSize:(NSSize)size;
30 - (void)setContentSize:(NSSize)size;
32 @end