Files
gitx/PBQLOutlineView.h
T
Pieter de Bie b18b957190 Allow QuickLook to activate by pressing space
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.
2008-06-17 02:55:49 +02:00

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