From 30b431ea2a0069f854532fbe975f172a5246e044 Mon Sep 17 00:00:00 2001 From: Pierre d'Herbemont Date: Wed, 2 Jan 2008 17:35:53 +0000 Subject: [PATCH 1/1] MacOSX/VLC_app: Remove moved files. --- extras/MacOSX/VLC_app/VLCController.h | 41 -------------------- extras/MacOSX/VLC_app/VLCController.m | 54 --------------------------- 2 files changed, 95 deletions(-) delete mode 100644 extras/MacOSX/VLC_app/VLCController.h delete mode 100644 extras/MacOSX/VLC_app/VLCController.m diff --git a/extras/MacOSX/VLC_app/VLCController.h b/extras/MacOSX/VLC_app/VLCController.h deleted file mode 100644 index e0e72f8c5d..0000000000 --- a/extras/MacOSX/VLC_app/VLCController.h +++ /dev/null @@ -1,41 +0,0 @@ -/***************************************************************************** - * VLCController.h: VLC.app main controller - ***************************************************************************** - * Copyright (C) 2007 Pierre d'Herbemont - * Copyright (C) 2007 the VideoLAN team - * $Id$ - * - * Authors: Pierre d'Herbemont - * - * 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 - -#define VLCPanic( ex ) __VLCPanic( ex, __FUNCTION__, __FILE__, __LINE__ ) -static inline void __VLCPanic( const char * str, const char * function, const char * file, int line_number ) -{ - NSRunCriticalAlertPanel( @"Error", [NSString stringWithFormat:@"The following error was encountered: %s (%s:%d %s)", str, file, line_number, function], @"Quit", nil, nil ); - exit( -1 ); -} - -@interface VLCController : NSObject -{ - IBOutlet id categoryList; - IBOutlet id detailList; - IBOutlet id videoView; - IBOutlet id detailSearchField; -} -@end diff --git a/extras/MacOSX/VLC_app/VLCController.m b/extras/MacOSX/VLC_app/VLCController.m deleted file mode 100644 index 84e9c0ff4d..0000000000 --- a/extras/MacOSX/VLC_app/VLCController.m +++ /dev/null @@ -1,54 +0,0 @@ -/***************************************************************************** - * VLCController.h: VLC.app main controller - ***************************************************************************** - * Copyright (C) 2007 Pierre d'Herbemont - * Copyright (C) 2007 the VideoLAN team - * $Id$ - * - * Authors: Pierre d'Herbemont - * - * 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 - -#import "VLCController.h" - -@implementation VLCController -- (void)awakeFromNib -{ - VLCMediaList * mediaList = [[[VLCMediaDiscoverer alloc] initWithName:@"shoutcasttv"] discoveredMedia]; - NSArrayController * arrayController = [[NSArrayController alloc] init]; - [arrayController bind:@"contentArray" toObject:[mediaList flatAspect] withKeyPath:@"media" options:nil]; - NSMutableDictionary *bindingOptions = [NSMutableDictionary dictionary]; - - [bindingOptions setObject:@"No Title" forKey:NSDisplayNameBindingOption]; - - /* binding for "title" column */ - NSTableColumn * tableColumn = [detailList tableColumnWithIdentifier:@"title"]; - - [tableColumn bind:@"value" toObject: arrayController - withKeyPath:@"arrangedObjects.metaDictionary.title" options:bindingOptions]; - /* Predicate */ - [bindingOptions removeAllObjects]; - [bindingOptions setObject:@"metaDictionary.title contains[c] $value" forKey:NSPredicateFormatBindingOption]; - [bindingOptions setObject:@"No Title" forKey:NSDisplayNameBindingOption]; - [detailSearchField bind:@"predicate" toObject: arrayController - withKeyPath:@"filterPredicate" options:bindingOptions]; - -} - - -@end \ No newline at end of file -- 2.20.1