3

我需要更改应用程序 NSWindow 周围的边框颜色。

有谁知道窗口边框的绘制位置,以及如何更改颜色/覆盖绘制边框的方法?

我注意到 Tweetbot 这样做:

常规边框与 Tweetbot 边框

4

1 回答 1

2

从记忆中,我认为 Tweetbot 使用了一个完整的无边框窗口,并自己添加了窗口控件,但如果你想让 AppKit 仍然处理这些细节,还有另一种方法。如果将窗口设置为纹理窗口,则可以设置自定义背景 NSColor。这个 NSColor 可以是使用的图像+[NSColor colorWithPatternImage:]

我快速敲了这个例子,只是使用纯灰色作为填充,但是你可以在这个图像中绘制任何你喜欢的东西。然后,您只需将 NSWindow 的类类型设置为带纹理的窗口类。

SLFTexturedWindow.h

@interface SLFTexturedWindow : NSWindow
@end

SLFTexturedWindow.m

#import "SLFTexturedWindow.h"

@implementation SLFTexturedWindow

- (id)initWithContentRect:(NSRect)contentRect
                styleMask:(NSUInteger)styleMask
                  backing:(NSBackingStoreType)bufferingType
                    defer:(BOOL)flag;
{
    NSUInteger newStyle;
if (styleMask & NSTexturedBackgroundWindowMask) {
    newStyle = styleMask;
} else {
    newStyle = (NSTexturedBackgroundWindowMask | styleMask);
}

if (self = [super initWithContentRect:contentRect styleMask:newStyle backing:bufferingType defer:flag]) {

    [[NSNotificationCenter defaultCenter] addObserver:self
                                                 selector:@selector(windowDidResize:)
                                                     name:NSWindowDidResizeNotification
                                                   object:self];

        [self setBackgroundColor:[self addBorderToBackground]];

        return self;
}

return nil;
}

- (void)windowDidResize:(NSNotification *)aNotification
{
    [self setBackgroundColor:[self addBorderToBackground]];
}

- (NSColor *)addBorderToBackground
{
    NSImage *bg = [[NSImage alloc] initWithSize:[self frame].size];
    // Begin drawing into our main image
[bg lockFocus];

[[NSColor lightGrayColor] set];
NSRectFill(NSMakeRect(0, 0, [bg size].width, [bg size].height));

    [[NSColor blackColor] set];

    NSRect bounds = NSMakeRect(0, 0, [self frame].size.width, [self frame].size.height);
    NSBezierPath *border = [NSBezierPath bezierPathWithRoundedRect:bounds xRadius:3 yRadius:3];
    [border stroke];

    [bg unlockFocus];

    return [NSColor colorWithPatternImage:bg];  
}

@end
于 2013-02-09T05:56:28.797 回答