mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 23:40:18 +00:00
28 lines
548 B
Objective-C
28 lines
548 B
Objective-C
//
|
|
// PBGitSidebar.h
|
|
// GitX
|
|
//
|
|
// Created by Pieter de Bie on 9/8/09.
|
|
// Copyright 2009 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
#import "PBViewController.h"
|
|
|
|
@class PBSourceViewAction, PBSourceViewItem;
|
|
|
|
@interface PBGitSidebarController : PBViewController {
|
|
IBOutlet NSWindow *window;
|
|
IBOutlet NSOutlineView *sourceView;
|
|
|
|
NSMutableArray *items;
|
|
|
|
/* Specific things */
|
|
PBSourceViewAction *commitAction;
|
|
|
|
PBSourceViewItem *branches, *remotes, *tags, *custom;
|
|
}
|
|
|
|
@property(readonly) NSMutableArray *items;
|
|
@end
|