coredialogs.h
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:3k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * coredialogs.h: Mac OS X Core Dialogs
  3.  *****************************************************************************
  4.  * Copyright (C) 2005-2009 the VideoLAN team
  5.  * $Id: 66b2f8ba8404082c039d21c84b822657f6432a6f $
  6.  *
  7.  * Authors: Derk-Jan Hartman <hartman at videolan dot org>
  8.  *          Felix Paul Kühne <fkuehne at videolan dot org>
  9.  *
  10.  * This program is free software; you can redistribute it and/or modify
  11.  * it under the terms of the GNU General Public License as published by
  12.  * the Free Software Foundation; either version 2 of the License, or
  13.  * (at your option) any later version.
  14.  *
  15.  * This program is distributed in the hope that it will be useful,
  16.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  * GNU General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU General Public License
  21.  * along with this program; if not, write to the Free Software
  22.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  23.  *****************************************************************************/
  24. #import <vlc_common.h>
  25. #import <vlc_dialog.h>
  26. #import <Cocoa/Cocoa.h>
  27. /*****************************************************************************
  28.  * VLCErrorPanel interface
  29.  *****************************************************************************/
  30. @interface VLCErrorPanel : NSObject
  31. {
  32.     IBOutlet id o_window;
  33.     IBOutlet id o_cleanup_button;
  34.     IBOutlet id o_error_table;
  35.     IBOutlet id o_messages_btn;
  36.     
  37.     NSMutableArray * o_errors;
  38.     NSMutableArray * o_icons;
  39.     
  40.     BOOL b_nib_loaded;
  41. }
  42. - (IBAction)cleanupTable:(id)sender;
  43. - (IBAction)showMessages:(id)sender;
  44. -(void)showPanel;
  45. -(void)addError: (NSString *)o_error withMsg:(NSString *)o_msg;
  46. @end
  47. /*****************************************************************************
  48.  * VLCCoreDialogProvider interface
  49.  *****************************************************************************/
  50. @interface VLCCoreDialogProvider : NSObject
  51. {
  52.     VLCErrorPanel *o_error_panel;
  53.     /* authentication dialogue */
  54.     IBOutlet id o_auth_cancel_btn;
  55.     IBOutlet id o_auth_description_txt;
  56.     IBOutlet id o_auth_login_fld;
  57.     IBOutlet id o_auth_login_txt;
  58.     IBOutlet id o_auth_ok_btn;
  59.     IBOutlet id o_auth_pw_fld;
  60.     IBOutlet id o_auth_pw_txt;
  61.     IBOutlet id o_auth_title_txt;
  62.     IBOutlet id o_auth_win;
  63.     /* progress dialogue */
  64.     IBOutlet NSProgressIndicator * o_prog_bar;
  65.     IBOutlet id o_prog_cancel_btn;
  66.     IBOutlet id o_prog_description_txt;
  67.     IBOutlet id o_prog_title_txt;
  68.     IBOutlet id o_prog_win;
  69.     BOOL b_progress_cancelled;
  70. }
  71. + (VLCCoreDialogProvider *)sharedInstance;
  72. -(void)performDialogEvent: (NSNotification *)o_notification;
  73. -(void)showFatalDialog: (NSValue *)o_value;
  74. -(void)showFatalWaitDialog: (NSValue *)o_value;
  75. -(void)showQuestionDialog: (NSValue *)o_value;
  76. -(void)showLoginDialog: (NSValue *)o_value;
  77. -(IBAction)loginDialogAction:(id)sender;
  78. -(void)showProgressDialog: (NSValue *)o_value;
  79. -(IBAction)progDialogAction:(id)sender;
  80. -(BOOL)progressCancelled;
  81. -(void)updateProgressPanelWithText: (NSString *)string andNumber: (double)d_number;
  82. -(void)destroyProgressPanel;
  83. -(id)errorPanel;
  84. @end