Files
gitx/PBWebChangesController.h
T
Pieter de Bie 90db001409 WebCommitView: Add a state display
This adds a div in the webview to display the current commit
state. It allows us to notify the user of new commits by
showing something in the webview, rather than a modal
dialog.
2008-11-01 20:56:33 +01:00

27 lines
597 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;
PBChangedFile *selectedFile;
BOOL selectedFileIsCached;
}
- (void) refresh;
- (void) setStateMessage:(NSString *)state;
@end