mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 23:40:18 +00:00
c545832108
It will now remember it's position and the divider will keep its position relative to the bottom when the window resizes.
37 lines
976 B
Objective-C
37 lines
976 B
Objective-C
//
|
|
// PBGitCommitController.h
|
|
// GitX
|
|
//
|
|
// Created by Pieter de Bie on 19-09-08.
|
|
// Copyright 2008 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
#import "PBViewController.h"
|
|
|
|
@class PBGitIndexController, PBIconAndTextCell, PBWebChangesController, PBGitIndex;
|
|
@class PBNiceSplitView;
|
|
|
|
@interface PBGitCommitController : PBViewController {
|
|
// This might have to transfer over to the PBGitRepository
|
|
// object sometime
|
|
PBGitIndex *index;
|
|
|
|
IBOutlet NSTextView *commitMessageView;
|
|
IBOutlet NSArrayController *unstagedFilesController;
|
|
IBOutlet NSArrayController *cachedFilesController;
|
|
IBOutlet NSButton *commitButton;
|
|
|
|
IBOutlet PBGitIndexController *indexController;
|
|
IBOutlet PBWebChangesController *webController;
|
|
IBOutlet PBNiceSplitView *commitSplitView;
|
|
}
|
|
|
|
@property(readonly) PBGitIndex *index;
|
|
|
|
- (IBAction) refresh:(id) sender;
|
|
- (IBAction) commit:(id) sender;
|
|
- (IBAction) forceCommit:(id) sender;
|
|
- (IBAction)signOff:(id)sender;
|
|
@end
|