mirror of
https://github.com/textmate/textmate.git
synced 2026-01-23 05:37:55 -05:00
27 lines
741 B
Plaintext
27 lines
741 B
Plaintext
#import "LiveSearchView.h"
|
|
|
|
@implementation LiveSearchView
|
|
- (void)drawRect:(NSRect)dirtyRect
|
|
{
|
|
NSColor* cornerColor = [NSColor colorWithDeviceWhite:239.0/255.0 alpha:1];
|
|
NSColor* middleColor = [NSColor colorWithDeviceWhite:223/255.0 alpha:1];
|
|
int angle = 270;
|
|
|
|
NSGradient* aGradient = [[NSGradient alloc] initWithColorsAndLocations:
|
|
cornerColor, 0.0,
|
|
middleColor, 0.5,
|
|
cornerColor, 1.0, nil];
|
|
|
|
NSRect bounds = NSMakeRect(self.bounds.origin.x, self.bounds.origin.y+1, self.bounds.size.width, self.bounds.size.height-1);
|
|
[aGradient drawInRect:bounds angle:angle];
|
|
|
|
[[NSColor colorWithDeviceWhite:169.0/255.0 alpha:1] setFill];
|
|
NSRectFill(NSMakeRect(0, 0, self.bounds. size.width, 1));
|
|
}
|
|
|
|
- (BOOL)isFlipped
|
|
{
|
|
return YES;
|
|
}
|
|
@end
|