Change name of window menu items
[MacVim.git] / src / MacVim / MMWindow.h
blob69eb3fb1479344b1b02b4ef479c43bf7b568dd12
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 <Cocoa/Cocoa.h>
15 @interface MMWindow : NSWindow {
16 NSBox *tablineSeparator;
17 NSRect userFrame;
20 - (id)initWithContentRect:(NSRect)rect
21 styleMask:(unsigned int)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