2 // PBPrefsWindowController.h
5 // Created by Christian Jacobsen on 02/10/2008.
6 // Copyright 2008 __MyCompanyName__. All rights reserved.
9 #import <Cocoa/Cocoa.h>
10 #import "DBPrefsWindowController.h"
12 @interface PBPrefsWindowController
: DBPrefsWindowController
{
13 /* Outlets for Preference Views */
14 IBOutlet NSView
*generalPrefsView
;
15 IBOutlet NSView
*integrationPrefsView
;
16 IBOutlet NSView
*updatesPrefsView
;
18 /* Variables for the Updates View */
19 IBOutlet NSPathControl
*gitPathController
;
20 IBOutlet NSImageView
*badGitPathIcon
;
21 IBOutlet NSView
*gitPathOpenAccessory
;
22 NSOpenPanel
*gitPathOpenPanel
;
26 - (IBAction
) checkGitValidity
: sender
;
27 - (void)pathCell
:(NSPathCell
*)pathCell willDisplayOpenPanel
:(NSOpenPanel
*)openPanel
;
28 - (IBAction
) showHideAllFiles
: sender
;
29 - (IBAction
) resetGitPath
: sender
;