mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 23:40:18 +00:00
0975426f2f
This merges functionality that was previously stored in the combination of PBGitCommitController / PBChangedFile to a dedicated controller, PBGitIndexController.
29 lines
667 B
Objective-C
29 lines
667 B
Objective-C
//
|
|
// PBWebChangesController.h
|
|
// GitX
|
|
//
|
|
// Created by Pieter de Bie on 22-09-08.
|
|
// Copyright 2008 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
#import "PBWebController.h"
|
|
#import "PBGitCommitController.h"
|
|
#import "PBChangedFile.h"
|
|
|
|
@interface PBWebChangesController : PBWebController {
|
|
IBOutlet NSArrayController *unstagedFilesController;
|
|
IBOutlet NSArrayController *cachedFilesController;
|
|
IBOutlet PBGitCommitController *controller;
|
|
IBOutlet id indexController;
|
|
|
|
PBChangedFile *selectedFile;
|
|
BOOL selectedFileIsCached;
|
|
}
|
|
|
|
- (void) refresh;
|
|
- (void) setStateMessage:(NSString *)state;
|
|
|
|
- (void) showMultiple:(NSArray *)files;
|
|
@end
|