]> git.sesse.net Git - vlc/blob - projects/macosx/frontrow_plugin/VLCAppliance.m
Add a NEWS entry.
[vlc] / projects / macosx / frontrow_plugin / VLCAppliance.m
1 /*****************************************************************************
2  * VLCAppliance.m: Front Row plugin
3  *****************************************************************************
4  * Copyright (C) 2007 - 2008 the VideoLAN Team
5  * $Id$
6  *
7  * Authors: hyei
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 #import <VLCKit/VLCKit.h>
25
26 #import "VLCAppliance.h"
27
28 #import "VLCApplianceController.h"
29 #import "VLCMediaListController.h"
30
31 @implementation VLCAppliance
32
33 + (NSString *) className {
34         return @"RUIMoviesAppliance";
35 }
36
37 - (void)dealloc
38 {
39     NSLog(@"DEALLOC");
40     [super dealloc];
41 }
42
43 - (id)applianceController
44 {
45     // Disabled until we properly display a menu for that. You can test it by uncommenting those lines, and comment the following line.
46     // VLCMediaListAspect * mediaListAspect = [[[[[VLCMediaDiscoverer alloc] initWithName:@"freebox"] discoveredMedia] retain] hierarchicalAspect];
47     // VLCApplianceController * controller = [[VLCMediaListController alloc] initWithMediaListAspect:mediaListAspect];
48
49     VLCApplianceController * controller = [[VLCApplianceController alloc] initWithPath:[NSHomeDirectory() stringByAppendingPathComponent:@"Movies"]];
50     
51     return [controller autorelease];
52 }
53
54
55 //
56 //- (id)initWithSettings:(id)fp8
57 //{
58 //    self = [super initWithSettings:fp8];
59 //    NSLog(@"settings: %@", fp8);
60 //    return [self retain];
61 //}
62
63
64 @end