Main Page | Modules | Class Hierarchy | Class List | Directories | File List | Class Members | File Members | Related Pages

playlistinfo.h

00001 /*****************************************************************************
00002  * playlistinfo.h: MacOS X interface module
00003  *****************************************************************************
00004  * Copyright (C) 2002-2004 the VideoLAN team
00005  * $Id: playlistinfo.h 11664 2005-07-09 06:17:09Z courmisch $
00006  *
00007  * Authors: Benjamin Pracht <bigben at videolan dot org> 
00008  *
00009  * This program is free software; you can redistribute it and/or modify
00010  * it under the terms of the GNU General Public License as published by
00011  * the Free Software Foundation; either version 2 of the License, or
00012  * (at your option) any later version.
00013  * 
00014  * This program is distributed in the hope that it will be useful,
00015  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00016  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00017  * GNU General Public License for more details.
00018  *
00019  * You should have received a copy of the GNU General Public License
00020  * along with this program; if not, write to the Free Software
00021  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
00022  *****************************************************************************/
00023 
00024 /*****************************************************************************
00025  * VLCPlaylistInfo interface 
00026  *****************************************************************************/
00027 
00028 
00029 @interface VLCInfo : NSObject
00030 {
00031     IBOutlet id o_info_window;
00032     IBOutlet id o_uri_lbl;
00033     IBOutlet id o_title_lbl;
00034     IBOutlet id o_author_lbl;
00035     IBOutlet id o_uri_txt;
00036     IBOutlet id o_title_txt;
00037     IBOutlet id o_author_txt;
00038     IBOutlet id o_btn_ok;
00039     IBOutlet id o_btn_cancel;
00040     IBOutlet id o_btn_delete_group;
00041     IBOutlet id o_btn_add_group;
00042     IBOutlet id o_outline_view;
00043 
00044     playlist_item_t * p_item;
00045 }
00046 
00047 - (IBAction)togglePlaylistInfoPanel:(id)sender;
00048 - (IBAction)toggleInfoPanel:(id)sender;
00049 - (void)initPanel:(id)sender;
00050 - (IBAction)infoCancel:(id)sender;
00051 - (IBAction)infoOk:(id)sender;
00052 - (playlist_item_t *)getItem;
00053 - (BOOL)isItemInPlaylist:(playlist_item_t *)p_item;
00054 
00055 @end
00056 
00057 @interface VLCInfoTreeItem : NSObject
00058 {
00059     NSString *o_name;
00060     NSString *o_value;
00061     int i_object_id;
00062     playlist_item_t * p_item;
00063     VLCInfoTreeItem *o_parent;
00064     NSMutableArray *o_children;
00065 }
00066 
00067 + (VLCInfoTreeItem *)rootItem;
00068 - (int)numberOfChildren;
00069 - (VLCInfoTreeItem *)childAtIndex:(int)i_index;
00070 - (NSString *)getName;
00071 - (NSString *)getValue;
00072 - (void)refresh;
00073 
00074 @end
00075 

Generated on Tue Dec 20 10:14:38 2005 for vlc-0.8.4a by  doxygen 1.4.2