Testing: add missing file
[GitX.git] / PBPrefsWindowController.h
blobed65d38c46cd7273fd683fb4ab411af8efb19935
1 //
2 // PBPrefsWindowController.h
3 // GitX
4 //
5 // Created by Christian Jacobsen on 02/10/2008.
6 // Copyright 2008 __MyCompanyName__. All rights reserved.
7 //
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;
31 @end