mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 15:30:18 +00:00
62319b8cd9
This allows the user to suppress the display of some of the warning dialogs (like "Confirm before Push"). They can be reset with Reset Warnings in the General preferences.
33 lines
880 B
Objective-C
33 lines
880 B
Objective-C
//
|
|
// 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;
|
|
|
|
/* Variables for the Updates View */
|
|
IBOutlet NSPathControl *gitPathController;
|
|
IBOutlet NSImageView *badGitPathIcon;
|
|
IBOutlet NSView *gitPathOpenAccessory;
|
|
NSOpenPanel *gitPathOpenPanel;
|
|
|
|
}
|
|
|
|
- (IBAction) checkGitValidity: sender;
|
|
- (void)pathCell:(NSPathCell *)pathCell willDisplayOpenPanel:(NSOpenPanel *)openPanel;
|
|
- (IBAction) showHideAllFiles: sender;
|
|
- (IBAction) resetGitPath: sender;
|
|
- (IBAction)resetAllDialogWarnings:(id)sender;
|
|
|
|
@end
|