Files
gitx/PBViewController.m
T
Nathan Kinsinger 1b41171d92 Add a bottom content border/toolbar to the repository window
- add an action menu for the selected ref in the source view
    - add Add Remote, Fetch, Pull and Push buttons to the bottom bar
        - Add Remote icon by Nathan Kinsinger
        - Fetch, Pull and Push icons are modified versions of André Berg's icons (from 4396081c07) made a bit smaller to fit in the UI better.
    - move the status message for both the history view and the commit/stage view
        - all PBViewControllers now have status and isBusy properties and can use those to put a message in the bottom bar when they are the active content controller of the window
2010-03-13 22:15:13 -07:00

51 lines
1005 B
Objective-C

//
// PBViewController.m
// GitX
//
// Created by Pieter de Bie on 22-09-08.
// Copyright 2008 __MyCompanyName__. All rights reserved.
//
#import "PBViewController.h"
@implementation PBViewController
@synthesize repository;
@synthesize status;
@synthesize isBusy;
- (id)initWithRepository:(PBGitRepository *)theRepository superController:(PBGitWindowController *)controller
{
NSString *nibName = [[[self class] description] stringByReplacingOccurrencesOfString:@"Controller"
withString:@"View"];
if(self = [self initWithNibName:nibName bundle:nil]) {
repository = theRepository;
superController = controller;
}
return self;
}
- (void) removeView
{
[self unbind:@"repository"];
[[self view] removeFromSuperview]; // remove the current view
}
- (void) awakeFromNib
{
}
// This is called when the view is displayed again; it
// should be updated to show the most recent information
- (void) updateView
{
}
- (NSResponder *)firstResponder;
{
return nil;
}
@end