]> git.sesse.net Git - vlc/blobdiff - modules/gui/macosx/interaction.h
* added the progress dialogue to the set of widgets
[vlc] / modules / gui / macosx / interaction.h
index 906bdbafefff7dd35d3ebcca5861d3af0aabb2f2..036065148d78b8dd0a582df7fa6009f580adde1f 100644 (file)
@@ -5,6 +5,7 @@
  * $Id: vout.h 13803 2005-12-18 18:54:28Z bigben $
  *
  * Authors: Derk-Jan Hartman <hartman at videolan dot org>
+ *          Felix K\9fhne <fkuehne at videolan dot org>
  *
  * 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
 /*****************************************************************************
  * VLCInteraction interface
  *****************************************************************************/
+
 @interface VLCInteraction : NSObject
 {
-    interaction_dialog_t    *p_dialog;
+    /* progress widget */
+    IBOutlet id o_prog_bar;
+    IBOutlet id o_prog_cancel_btn;
+    IBOutlet id o_prog_description;
+    IBOutlet id o_prog_title;
+    IBOutlet id o_prog_win;
+
+    interaction_dialog_t * p_dialog;
     intf_thread_t * p_intf;
+    BOOL nib_interact_loaded;
 }
 
+- (IBAction)cancelAndClose:(id)sender;
+
 -(id)initDialog: (interaction_dialog_t *)_p_dialog;
 -(void)runDialog;
 -(void)updateDialog;