mirror of
https://github.com/videolan/vlc.git
synced 2024-12-11 18:54:36 +08:00
223286529b
Nibs will be added later on. No user-visible change as of yet.
45 lines
1.6 KiB
Objective-C
45 lines
1.6 KiB
Objective-C
/*****************************************************************************
|
|
* sidebarview.h: MacOS X interface module
|
|
*****************************************************************************
|
|
* Copyright (C) 2005-2008 the VideoLAN team
|
|
* $Id$
|
|
*
|
|
* Authors: Eric Dudiak <dudiak at gmail dot com>
|
|
* Colloquy <http://colloquy.info/>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
|
|
*****************************************************************************/
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@interface sidebarview : NSSplitView
|
|
{
|
|
long _mainSubviewIndex;
|
|
}
|
|
@end
|
|
|
|
/*****************************************************************************
|
|
* VLCSidebar interface
|
|
*****************************************************************************/
|
|
@interface VLCSidebar : NSObject
|
|
{
|
|
IBOutlet id o_outline_view;
|
|
IBOutlet id o_playlist;
|
|
}
|
|
|
|
- (NSOutlineView *)outlineView;
|
|
- (void)updateSidebar:(id)item;
|
|
|
|
@end |