Files
gitx/PBGitGradientBarView.h
T
Nathan Kinsinger 64f4276e21 Delete old toolbars and create new ones
- 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
2010-03-13 22:14:36 -07:00

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