Remove feat/core-text from README-repo.txt
[MacVim.git] / src / MacVim / MMWindow.h
blob89a62f9065e870ccfedf2febe13e5cdfe513f215
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;
17 NSRect userFrame;
20 - (id)initWithContentRect:(NSRect)rect
21 styleMask:(NSUInteger)style
22 backing:(NSBackingStoreType)bufferingType
23 defer:(BOOL)flag;
25 - (BOOL)hideTablineSeparator:(BOOL)hide;
27 - (NSRect)contentRectForFrameRect:(NSRect)frame;
28 - (NSRect)frameRectForContentRect:(NSRect)rect;
29 - (void)setContentMinSize:(NSSize)size;
30 - (void)setContentMaxSize:(NSSize)size;
31 - (void)setContentSize:(NSSize)size;
33 @end