bookmarks.h
资源名称:vlc-1.0.5.zip [点击查看]
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:2k
源码类别:
midi
开发平台:
Unix_Linux
- /*****************************************************************************
- * bookmarks.h: MacOS X Bookmarks window
- *****************************************************************************
- * Copyright (C) 2005, 2007 the VideoLAN team
- * $Id: 7388ef93f47b43258ec726f9712681024ce0e0ce $
- *
- * Authors: Felix Kühne <fkuehne@users.sf.net>
- *
- * 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>
- #import "intf.h"
- #import <vlc_common.h>
- @interface VLCBookmarks : NSObject
- {
- /* main window */
- IBOutlet id o_bookmarks_window;
- IBOutlet id o_btn_add;
- IBOutlet id o_btn_clear;
- IBOutlet id o_btn_edit;
- IBOutlet id o_btn_extract;
- IBOutlet id o_btn_rm;
- IBOutlet id o_tbl_dataTable;
- /* edit window */
- IBOutlet id o_edit_window;
- IBOutlet id o_edit_btn_ok;
- IBOutlet id o_edit_btn_cancel;
- IBOutlet id o_edit_lbl_name;
- IBOutlet id o_edit_lbl_time;
- IBOutlet id o_edit_lbl_bytes;
- IBOutlet id o_edit_fld_name;
- IBOutlet id o_edit_fld_time;
- IBOutlet id o_edit_fld_bytes;
- input_thread_t *p_old_input;
- }
- - (IBAction)add:(id)sender;
- - (IBAction)clear:(id)sender;
- - (IBAction)edit:(id)sender;
- - (IBAction)extract:(id)sender;
- - (IBAction)remove:(id)sender;
- - (IBAction)goToBookmark:(id)sender;
- - (IBAction)edit_cancel:(id)sender;
- - (IBAction)edit_ok:(id)sender;
- + (VLCBookmarks *)sharedInstance;
- - (void)initStrings;
- - (void)showBookmarks;
- - (id)dataTable;
- @end