mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 23:40:18 +00:00
b18b957190
Subclasses NSOutlineView to PBQLOutlineView that takes a controller which should respond to toggleQuickLook:. This is used for our tree walker to actually show QuickLook when space is pressed.
17 lines
292 B
Objective-C
17 lines
292 B
Objective-C
//
|
|
// PBQLOutlineView.h
|
|
// GitX
|
|
//
|
|
// Created by Pieter de Bie on 6/17/08.
|
|
// Copyright 2008 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
#import "PBDetailController.h"
|
|
|
|
@interface PBQLOutlineView : NSOutlineView {
|
|
IBOutlet PBDetailController* controller;
|
|
}
|
|
|
|
@end
|