Cog/Utils/SideViewController.h
Christopher Snowhill 0832a8ea34 Restore the File Tree, now with a chooser button
Revert "Remove the file tree, as Sandbox does not permit"

This reverts commit 02ec735687.

This also changes how the File Tree choosing works.

Signed-off-by: Christopher Snowhill <kode54@gmail.com>
2022-06-30 16:57:51 -07:00

34 lines
706 B
Objective-C

//
// SideBarController.h
// Cog
//
// Created by Vincent Spader on 6/21/08.
// Copyright 2008 __MyCompanyName__. All rights reserved.
//
#import "PlaylistController.h"
#import <Cocoa/Cocoa.h>
@interface SideViewController : NSViewController {
IBOutlet NSSplitView *splitView;
IBOutlet NSView *mainView;
IBOutlet NSView *firstResponder;
}
- (IBAction)toggleSideView:(id)sender;
- (IBAction)toggleVertical:(id)sender;
- (void)showSideView;
- (void)hideSideView;
- (BOOL)sideViewIsHidden;
- (void)setDividerPosition:(float)position;
- (float)dividerPosition;
- (void)doAddToPlaylist:(NSArray *)urls origin:(URLOrigin)origin;
- (void)clear:(id)sender;
- (void)playPauseResume:(id)sender;
@end