Files
gitx/View/PBArgumentPicker.h
Tomasz Krasnyk cc5c93c2b6 - stashes can be created with optional message
- added clearing all stashes
- added possibility to ignore files with given extension
- submodules are now showed
- submodules can be opened
2010-11-07 23:37:41 +01:00

25 lines
594 B
Objective-C

//
// PBArgumentPicker.h
// GitX
//
// Created by Tomasz Krasnyk on 10-11-06.
// Copyright 2010 __MyCompanyName__. All rights reserved.
//
#import <Cocoa/Cocoa.h>
@interface PBArgumentPicker : NSView {
IBOutlet NSTextField *textField;
IBOutlet NSTextField *label;
IBOutlet NSButton *okButton;
IBOutlet NSButton *cancelButton;
}
@property (nonatomic, retain, readonly) NSTextField *textField;
@property (nonatomic, retain, readonly) NSTextField *label;
@property (nonatomic, retain, readonly) NSButton *okButton;
@property (nonatomic, retain, readonly) NSButton *cancelButton;
@end