mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 23:40:18 +00:00
64f4276e21
- remove the separate window toolbars from the history and commit views and create a new window toolbar in the repository window
- add new toolbars inside the history view
- new class to draw a gradient in the background of a view
- moved the search field from the main toolbar to the scope bar
20 lines
395 B
Objective-C
20 lines
395 B
Objective-C
//
|
|
// PBGitGradientBarView.h
|
|
// GitX
|
|
//
|
|
// Created by Nathan Kinsinger on 2/22/10.
|
|
// Copyright 2010 Nathan Kinsinger. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
|
@interface PBGitGradientBarView : NSView {
|
|
NSGradient *gradient;
|
|
}
|
|
|
|
- (void) setTopShade:(float)topShade bottomShade:(float)bottomShade;
|
|
- (void) setTopColor:(NSColor *)topShade bottomColor:(NSColor *)bottomColor;
|
|
|
|
@end
|