forked from pieter/gitx
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPBPrefsWindowController.h
41 lines (34 loc) · 1.19 KB
/
PBPrefsWindowController.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
//
// PBPrefsWindowController.h
// GitX
//
// Created by Christian Jacobsen on 02/10/2008.
// Copyright 2008 __MyCompanyName__. All rights reserved.
//
#import <Cocoa/Cocoa.h>
#import "DBPrefsWindowController.h"
@interface PBPrefsWindowController : DBPrefsWindowController {
/* Outlets for Preference Views */
IBOutlet NSView *generalPrefsView;
IBOutlet NSView *integrationPrefsView;
IBOutlet NSView *updatesPrefsView;
IBOutlet NSView *reviewBoardPrefsView;
/* Variables for the Updates View */
IBOutlet NSPathControl *gitPathController;
IBOutlet NSImageView *badGitPathIcon;
IBOutlet NSView *gitPathOpenAccessory;
NSOpenPanel *gitPathOpenPanel;
IBOutlet NSButton *reviewBoardEnabled;
IBOutlet NSTextField *reviewBoardUrl;
IBOutlet NSTextField *reviewBoardUsername;
IBOutlet NSTextField *reviewBoardPassword;
}
- (IBAction) checkGitValidity: sender;
- (void)pathCell:(NSPathCell *)pathCell willDisplayOpenPanel:(NSOpenPanel *)openPanel;
- (IBAction) showHideAllFiles: sender;
- (IBAction) resetGitPath: sender;
- (IBAction) reviewBoardEnableEdit: sender;
- (IBAction) reviewBoardUrlEdit: sender;
- (IBAction) reviewBoardUsernameEdit: sender;
- (IBAction) ReviewBoardPasswordEdit: sender;
@end