Commit 6cb1101a authored by Felix Paul Kühne's avatar Felix Paul Kühne

* enhanced the interaction core with some method additions/changes

- intf_UserProgress* takes an additional argument now. use it to provide the time to go (in sec) until the process will be finished. Provide 0, if you don't have such info. The interface will hide the respective text-field.
- intf_UserProgressIsCancelled can be called by the module which triggered the interaction dialogue on a regular interval, to check if the user cancelled the dialogue or not. This is for dialogues with an optional cancel-button only (like the modal progress panel), so it doesn't replace p_dialog->i_return = DIALOG_CANCELLED which is for yes/no-style dialogues
- intf_UserOkayCancel was removed in favour of an enhanced intf_UserYesNo
- intf_UserYesNo takes 3 additional arguments now to get the custom captions of the default (~Yes), alternate(~No) and one optional button(~Cancel). This provides a better interface experience for the user and is more compliant with OSX's HIGL. The interface automatically hides the 3rd button, if NULL is given.
parent 87a71d24
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
IBClasses = ( IBClasses = (
{CLASS = FirstResponder; LANGUAGE = ObjC; SUPERCLASS = NSObject; }, {CLASS = FirstResponder; LANGUAGE = ObjC; SUPERCLASS = NSObject; },
{ {
ACTIONS = {cancelAndClose = id; okayAndClose = id; }; ACTIONS = {cancelAndClose = id; cancelDialog = id; okayAndClose = id; };
CLASS = VLCInteraction; CLASS = VLCInteraction;
LANGUAGE = ObjC; LANGUAGE = ObjC;
OUTLETS = { OUTLETS = {
...@@ -24,6 +24,7 @@ ...@@ -24,6 +24,7 @@
"o_prog_bar" = id; "o_prog_bar" = id;
"o_prog_cancel_btn" = id; "o_prog_cancel_btn" = id;
"o_prog_description" = id; "o_prog_description" = id;
"o_prog_timeToGo" = id;
"o_prog_title" = id; "o_prog_title" = id;
"o_prog_win" = id; "o_prog_win" = id;
}; };
......
...@@ -8,9 +8,9 @@ ...@@ -8,9 +8,9 @@
<string>446.1</string> <string>446.1</string>
<key>IBOpenObjects</key> <key>IBOpenObjects</key>
<array> <array>
<integer>5</integer>
<integer>55</integer> <integer>55</integer>
<integer>79</integer> <integer>79</integer>
<integer>5</integer>
</array> </array>
<key>IBSystem Version</key> <key>IBSystem Version</key>
<string>8J135</string> <string>8J135</string>
......
...@@ -24,6 +24,7 @@ ...@@ -24,6 +24,7 @@
/** /**
* This structure describes an interaction widget * This structure describes an interaction widget
* WIDGETS ARE OUTDATED! THIS IS ONLY A STUB TO KEEP WX COMPILING!
*/ */
struct user_widget_t struct user_widget_t
{ {
...@@ -35,6 +36,7 @@ struct user_widget_t ...@@ -35,6 +36,7 @@ struct user_widget_t
/** /**
* Possible widget types * Possible widget types
* WIDGETS ARE OUTDATED! THIS IS ONLY A STUB TO KEEP WX COMPILING!
*/ */
enum enum
{ {
...@@ -52,10 +54,15 @@ struct interaction_dialog_t ...@@ -52,10 +54,15 @@ struct interaction_dialog_t
int i_type; ///< Type identifier int i_type; ///< Type identifier
char *psz_title; ///< Title char *psz_title; ///< Title
char *psz_description; ///< Descriptor string char *psz_description; ///< Descriptor string
char *psz_defaultButton; ///< default button title (~OK)
char *psz_alternateButton;///< alternate button title (~NO)
char *psz_otherButton; ///< other button title (optional,~Cancel)
char *psz_returned[1]; ///< returned responses from the user char *psz_returned[1]; ///< returned responses from the user
vlc_value_t val; ///< a value coming from core for dialogue vlc_value_t val; ///< a value coming from core for dialogue
int i_timeToGo; ///< time (in sec) until shown progress is finished
vlc_bool_t b_cancelled; ///< was the dialogue cancelled by the user?
int i_widgets; ///< Number of dialog widgets int i_widgets; ///< Number of dialog widgets
user_widget_t **pp_widgets; ///< Dialog widgets user_widget_t **pp_widgets; ///< Dialog widgets
...@@ -76,8 +83,6 @@ struct interaction_dialog_t ...@@ -76,8 +83,6 @@ struct interaction_dialog_t
* Possible flags . Reusable and button types * Possible flags . Reusable and button types
*/ */
#define DIALOG_REUSABLE 0x01 #define DIALOG_REUSABLE 0x01
#define DIALOG_OK_CANCEL 0x02
#define DIALOG_YES_NO 0x04
#define DIALOG_YES_NO_CANCEL 0x04 #define DIALOG_YES_NO_CANCEL 0x04
#define DIALOG_CLEAR_NOSHOW 0x08 #define DIALOG_CLEAR_NOSHOW 0x08
#define DIALOG_GOT_ANSWER 0x10 #define DIALOG_GOT_ANSWER 0x10
...@@ -169,22 +174,22 @@ VLC_EXPORT( int,__intf_Interact,( vlc_object_t *,interaction_dialog_t * ) ); ...@@ -169,22 +174,22 @@ VLC_EXPORT( int,__intf_Interact,( vlc_object_t *,interaction_dialog_t * ) );
VLC_EXPORT( void, __intf_UserFatal,( vlc_object_t*, const char*, const char*, ...) ); VLC_EXPORT( void, __intf_UserFatal,( vlc_object_t*, const char*, const char*, ...) );
#define intf_UserLoginPassword( a, b, c, d, e... ) __intf_UserLoginPassword( VLC_OBJECT(a),b,c,d,e) #define intf_UserLoginPassword( a, b, c, d, e... ) __intf_UserLoginPassword( VLC_OBJECT(a),b,c,d,e)
VLC_EXPORT( int, __intf_UserLoginPassword,( vlc_object_t*, const char*, const char*, char **, char **) ); VLC_EXPORT( int, __intf_UserLoginPassword,( vlc_object_t*, const char*, const char*, char **, char **) );
#define intf_UserYesNo( a, b, c ) __intf_UserYesNo( VLC_OBJECT(a),b,c ) #define intf_UserYesNo( a, b, c, d, e, f ) __intf_UserYesNo( VLC_OBJECT(a),b,c, d, e, f )
VLC_EXPORT( int, __intf_UserYesNo,( vlc_object_t*, const char*, const char*) ); VLC_EXPORT( int, __intf_UserYesNo,( vlc_object_t*, const char*, const char*, const char*, const char*, const char*) );
#define intf_UserOkayCancel( a, b, c ) __intf_UserOkayCancel( VLC_OBJECT(a),b,c )
VLC_EXPORT( int, __intf_UserOkayCancel,( vlc_object_t*, const char*, const char*) );
#define intf_UserProgress( a, b, c, d ) __intf_UserProgress( VLC_OBJECT(a),b,c, d ) #define intf_UserProgress( a, b, c, d, e ) __intf_UserProgress( VLC_OBJECT(a),b,c,d,e )
VLC_EXPORT( int, __intf_UserProgress,( vlc_object_t*, const char*, const char*, float) ); VLC_EXPORT( int, __intf_UserProgress,( vlc_object_t*, const char*, const char*, float, int) );
#define intf_UserProgressUpdate( a, b, c, d ) __intf_UserProgressUpdate( VLC_OBJECT(a),b,c, d ) #define intf_UserProgressUpdate( a, b, c, d, e ) __intf_UserProgressUpdate( VLC_OBJECT(a),b,c,d,e )
VLC_EXPORT( void, __intf_UserProgressUpdate,( vlc_object_t*, int, const char*, float) ); VLC_EXPORT( void, __intf_UserProgressUpdate,( vlc_object_t*, int, const char*, float, int) );
#define intf_UserProgressIsCancelled( a, b ) __intf_UserProgressIsCancelled( VLC_OBJECT(a),b )
VLC_EXPORT( vlc_bool_t, __intf_UserProgressIsCancelled,( vlc_object_t*, int ) );
#define intf_UserStringInput( a, b, c, d ) __intf_UserStringInput( VLC_OBJECT(a),b,c,d ) #define intf_UserStringInput( a, b, c, d ) __intf_UserStringInput( VLC_OBJECT(a),b,c,d )
VLC_EXPORT( int, __intf_UserStringInput,(vlc_object_t*, const char*, const char*, char **) ); VLC_EXPORT( int, __intf_UserStringInput,(vlc_object_t*, const char*, const char*, char **) );
#define intf_IntfProgress( a, b, c ) __intf_IntfProgress( VLC_OBJECT(a),b,c ) #define intf_IntfProgress( a, b, c ) __intf_IntfProgress( VLC_OBJECT(a),b,c )
VLC_EXPORT( int, __intf_IntfProgress,( vlc_object_t*, const char*, float) ); VLC_EXPORT( int, __intf_IntfProgress,( vlc_object_t*, const char*, float) );
#define intf_IntfProgressUpdate( a, b, c, d ) __intf_IntfProgressUpdate( VLC_OBJECT(a),b,c, d ) #define intf_IntfProgressUpdate( a, b, c, d ) __intf_IntfProgressUpdate( VLC_OBJECT(a),b,c,d )
VLC_EXPORT( void, __intf_IntfProgressUpdate,( vlc_object_t*, int, const char*, float) ); VLC_EXPORT( void, __intf_IntfProgressUpdate,( vlc_object_t*, int, const char*, float) );
#define intf_UserHide( a, b ) __intf_UserHide( VLC_OBJECT(a), b ) #define intf_UserHide( a, b ) __intf_UserHide( VLC_OBJECT(a), b )
......
...@@ -558,7 +558,8 @@ aviindex: ...@@ -558,7 +558,8 @@ aviindex:
i_create = intf_UserYesNo( p_demux, _("AVI Index") , i_create = intf_UserYesNo( p_demux, _("AVI Index") ,
_( "This AVI file is broken. Seeking will not " _( "This AVI file is broken. Seeking will not "
"work correctly.\nDo you want to " "work correctly.\nDo you want to "
"try to repair it (this might take a long time) ?" ) ); "try to repair it (this might take a long time) ?" ),
_( "Repair" ), _( "Don't repair" ), NULL );
if( i_create == DIALOG_OK_YES ) if( i_create == DIALOG_OK_YES )
{ {
b_index = VLC_TRUE; b_index = VLC_TRUE;
......
...@@ -31,12 +31,13 @@ ...@@ -31,12 +31,13 @@
@interface VLCInteraction : NSObject @interface VLCInteraction : NSObject
{ {
/* progress widget */ /* progress dialogue */
IBOutlet id o_prog_bar; IBOutlet id o_prog_bar;
IBOutlet id o_prog_cancel_btn; IBOutlet id o_prog_cancel_btn;
IBOutlet id o_prog_description; IBOutlet id o_prog_description;
IBOutlet id o_prog_title; IBOutlet id o_prog_title;
IBOutlet id o_prog_win; IBOutlet id o_prog_win;
IBOutlet id o_prog_timeToGo;
/* authentication dialogue */ /* authentication dialogue */
IBOutlet id o_auth_cancel_btn; IBOutlet id o_auth_cancel_btn;
...@@ -65,6 +66,7 @@ ...@@ -65,6 +66,7 @@
- (IBAction)cancelAndClose:(id)sender; - (IBAction)cancelAndClose:(id)sender;
- (IBAction)okayAndClose:(id)sender; - (IBAction)okayAndClose:(id)sender;
- (IBAction)cancelDialog:(id)sender;
-(id)initDialog: (interaction_dialog_t *)_p_dialog; -(id)initDialog: (interaction_dialog_t *)_p_dialog;
-(void)runDialog; -(void)runDialog;
......
...@@ -130,6 +130,9 @@ ...@@ -130,6 +130,9 @@
NSString *o_title = [NSString stringWithUTF8String:p_dialog->psz_title ? p_dialog->psz_title : "title"]; NSString *o_title = [NSString stringWithUTF8String:p_dialog->psz_title ? p_dialog->psz_title : "title"];
NSString *o_description = [NSString stringWithUTF8String:p_dialog->psz_description ? p_dialog->psz_description : ""]; NSString *o_description = [NSString stringWithUTF8String:p_dialog->psz_description ? p_dialog->psz_description : ""];
NSString *o_defaultButton = [NSString stringWithUTF8String:p_dialog->psz_defaultButton];
NSString *o_alternateButton = [NSString stringWithUTF8String:p_dialog->psz_alternateButton];
NSString *o_otherButton = p_dialog->psz_otherButton ? [NSString stringWithUTF8String:p_dialog->psz_otherButton] : nil;
vout_thread_t *p_vout = vlc_object_find( VLCIntf, VLC_OBJECT_VOUT, FIND_ANYWHERE ); vout_thread_t *p_vout = vlc_object_find( VLCIntf, VLC_OBJECT_VOUT, FIND_ANYWHERE );
if( p_vout != NULL ) if( p_vout != NULL )
...@@ -169,19 +172,11 @@ ...@@ -169,19 +172,11 @@
} }
else else
{ {
if( p_dialog->i_flags & DIALOG_OK_CANCEL ) if( p_dialog->i_flags & DIALOG_YES_NO_CANCEL )
{
msg_Dbg( p_intf, "OK-Cancel-dialog requested" );
NSBeginInformationalAlertSheet( o_title, _NS("OK") , _NS("Cancel"),
nil, o_window, self,
@selector(sheetDidEnd: returnCode: contextInfo:), NULL, nil,
o_description );
}
else if( p_dialog->i_flags & DIALOG_YES_NO_CANCEL )
{ {
msg_Dbg( p_intf, "yes-no-cancel-dialog requested" ); msg_Dbg( p_intf, "yes-no-cancel-dialog requested" );
NSBeginInformationalAlertSheet( o_title, _NS("Yes"), _NS("No"), NSBeginInformationalAlertSheet( o_title, o_defaultButton,
_NS("Cancel"), o_window, self, o_alternateButton, o_otherButton, o_window, self,
@selector(sheetDidEnd: returnCode: contextInfo:), NULL, nil, @selector(sheetDidEnd: returnCode: contextInfo:), NULL, nil,
o_description ); o_description );
} }
...@@ -202,6 +197,11 @@ ...@@ -202,6 +197,11 @@
[o_prog_title setStringValue: o_title]; [o_prog_title setStringValue: o_title];
[o_prog_description setStringValue: o_description]; [o_prog_description setStringValue: o_description];
[o_prog_bar setDoubleValue: (double)p_dialog->val.f_float]; [o_prog_bar setDoubleValue: (double)p_dialog->val.f_float];
if( p_dialog->i_timeToGo < 1 )
[o_prog_timeToGo setStringValue: @""];
else
[o_prog_timeToGo setStringValue: [NSString stringWithFormat:
_NS("Remaining time: %i seconds"), p_dialog->i_timeToGo]];
[NSApp beginSheet: o_prog_win modalForWindow: o_window [NSApp beginSheet: o_prog_win modalForWindow: o_window
modalDelegate: self didEndSelector: nil contextInfo: nil]; modalDelegate: self didEndSelector: nil contextInfo: nil];
[o_prog_win makeKeyWindow]; [o_prog_win makeKeyWindow];
...@@ -239,10 +239,6 @@ ...@@ -239,10 +239,6 @@
{ {
p_dialog->i_return = DIALOG_OK_YES; p_dialog->i_return = DIALOG_OK_YES;
} }
else if( i_return == NSAlertAlternateReturn && ( p_dialog->i_flags & DIALOG_OK_CANCEL ) )
{
p_dialog->i_return = DIALOG_CANCELLED;
}
else if( i_return == NSAlertAlternateReturn ) else if( i_return == NSAlertAlternateReturn )
{ {
p_dialog->i_return = DIALOG_NO; p_dialog->i_return = DIALOG_NO;
...@@ -268,6 +264,13 @@ ...@@ -268,6 +264,13 @@
/* we are done, let's hide */ /* we are done, let's hide */
[self hideDialog]; [self hideDialog];
} }
if( p_dialog->i_timeToGo < 1 )
[o_prog_timeToGo setStringValue: @""];
else
[o_prog_timeToGo setStringValue: [NSString stringWithFormat:
_NS("Remaining time: %i seconds"), p_dialog->i_timeToGo]];
return; return;
} }
if( p_dialog->i_flags & DIALOG_INTF_PROGRESS ) if( p_dialog->i_flags & DIALOG_INTF_PROGRESS )
...@@ -321,7 +324,7 @@ ...@@ -321,7 +324,7 @@
- (IBAction)cancelAndClose:(id)sender - (IBAction)cancelAndClose:(id)sender
{ {
/* tell the core that the dialog was cancelled */ /* tell the core that the dialog was cancelled in a yes/no-style dialogue */
vlc_mutex_lock( &p_dialog->p_interaction->object_lock ); vlc_mutex_lock( &p_dialog->p_interaction->object_lock );
p_dialog->i_return = DIALOG_CANCELLED; p_dialog->i_return = DIALOG_CANCELLED;
p_dialog->i_status = ANSWERED_DIALOG; p_dialog->i_status = ANSWERED_DIALOG;
...@@ -329,6 +332,16 @@ ...@@ -329,6 +332,16 @@
msg_Dbg( p_intf, "dialog cancelled" ); msg_Dbg( p_intf, "dialog cancelled" );
} }
- (IBAction)cancelDialog:(id)sender
{
/* tell core that the user wishes to cancel the dialogue
* Use this function if cancelling is optionally like in the progress-dialogue */
vlc_mutex_lock( &p_dialog->p_interaction->object_lock );
p_dialog->b_cancelled = VLC_TRUE;
vlc_mutex_unlock( &p_dialog->p_interaction->object_lock );
msg_Dbg( p_intf, "cancelling dialog, will close it later on" );
}
- (IBAction)okayAndClose:(id)sender - (IBAction)okayAndClose:(id)sender
{ {
vlc_mutex_lock( &p_dialog->p_interaction->object_lock ); vlc_mutex_lock( &p_dialog->p_interaction->object_lock );
......
...@@ -196,7 +196,7 @@ static void Run( services_discovery_t *p_sd ) ...@@ -196,7 +196,7 @@ static void Run( services_discovery_t *p_sd )
int i_id = input_Read( p_sd, p_sys->p_input, VLC_FALSE ); int i_id = input_Read( p_sd, p_sys->p_input, VLC_FALSE );
int i_dialog_id; int i_dialog_id;
i_dialog_id = intf_UserProgress( p_sd, "Shoutcast" , "Connecting...", 0.0 ); i_dialog_id = intf_UserProgress( p_sd, "Shoutcast" , "Connecting...", 0.0, 0 );
p_sys->b_dialog = VLC_TRUE; p_sys->b_dialog = VLC_TRUE;
while( !p_sd->b_die ) while( !p_sd->b_die )
...@@ -215,7 +215,7 @@ static void Run( services_discovery_t *p_sd ) ...@@ -215,7 +215,7 @@ static void Run( services_discovery_t *p_sd )
float f_pos = (float)(p_sys->p_node_cat->i_children)* 2 *100.0 / float f_pos = (float)(p_sys->p_node_cat->i_children)* 2 *100.0 /
260 /* gruiiik FIXME */; 260 /* gruiiik FIXME */;
intf_UserProgressUpdate( p_sd, i_dialog_id, "Downloading", intf_UserProgressUpdate( p_sd, i_dialog_id, "Downloading",
f_pos ); f_pos, 0 );
} }
vlc_object_release( p_input ); vlc_object_release( p_input );
} }
......
...@@ -143,8 +143,6 @@ void intf_InteractionManage( playlist_t *p_playlist ) ...@@ -143,8 +143,6 @@ void intf_InteractionManage( playlist_t *p_playlist )
// Give default answer // Give default answer
p_dialog->i_return = DIALOG_DEFAULT; p_dialog->i_return = DIALOG_DEFAULT;
if( p_dialog->i_flags & DIALOG_OK_CANCEL )
p_dialog->i_return = DIALOG_CANCELLED;
// Pretend we have hidden and destroyed it // Pretend we have hidden and destroyed it
if( p_dialog->i_status == HIDDEN_DIALOG ) if( p_dialog->i_status == HIDDEN_DIALOG )
...@@ -275,15 +273,21 @@ void __intf_UserFatal( vlc_object_t *p_this, ...@@ -275,15 +273,21 @@ void __intf_UserFatal( vlc_object_t *p_this,
intf_Interact( p_this, p_new ); intf_Interact( p_this, p_new );
} }
/** Helper function to ask a yes-no question /** Helper function to ask a yes-no-cancel question
* \param p_this Parent vlc_object * \param p_this Parent vlc_object
* \param psz_title Title for the dialog * \param psz_title Title for the dialog
* \param psz_description A description * \param psz_description A description
* \param psz_default caption for the default button
* \param psz_alternate caption for the alternate button
* \param psz_other caption for the optional 3rd button (== cancel)
* \return Clicked button code * \return Clicked button code
*/ */
int __intf_UserYesNo( vlc_object_t *p_this, int __intf_UserYesNo( vlc_object_t *p_this,
const char *psz_title, const char *psz_title,
const char *psz_description ) const char *psz_description,
const char *psz_default,
const char *psz_alternate,
const char *psz_other )
{ {
int i_ret; int i_ret;
interaction_dialog_t *p_new = NULL; interaction_dialog_t *p_new = NULL;
...@@ -294,31 +298,12 @@ int __intf_UserYesNo( vlc_object_t *p_this, ...@@ -294,31 +298,12 @@ int __intf_UserYesNo( vlc_object_t *p_this,
p_new->psz_title = strdup( psz_title ); p_new->psz_title = strdup( psz_title );
p_new->psz_description = strdup( psz_description ); p_new->psz_description = strdup( psz_description );
p_new->i_flags = DIALOG_YES_NO_CANCEL; p_new->i_flags = DIALOG_YES_NO_CANCEL;
p_new->psz_defaultButton = strdup( psz_default );
i_ret = intf_Interact( p_this, p_new ); p_new->psz_alternateButton = strdup( psz_alternate );
if( psz_other )
return i_ret; p_new->psz_otherButton = strdup( psz_other );
} else
p_new->psz_otherButton = NULL;
/** Helper function to trigger a okay-cancel dialogue
* \param p_this Parent vlc_object
* \param psz_title Title for the dialog
* \param psz_description A description
* \return Clicked button code
*/
int __intf_UserOkayCancel( vlc_object_t *p_this,
const char *psz_title,
const char *psz_description )
{
int i_ret;
interaction_dialog_t *p_new = NULL;
INTERACT_INIT( p_new );
p_new->i_type = INTERACT_DIALOG_TWOWAY;
p_new->psz_title = strdup( psz_title );
p_new->psz_description = strdup( psz_description );
p_new->i_flags = DIALOG_OK_CANCEL;
i_ret = intf_Interact( p_this, p_new ); i_ret = intf_Interact( p_this, p_new );
...@@ -330,12 +315,14 @@ int __intf_UserOkayCancel( vlc_object_t *p_this, ...@@ -330,12 +315,14 @@ int __intf_UserOkayCancel( vlc_object_t *p_this,
* \param psz_title Title for the dialog * \param psz_title Title for the dialog
* \param psz_status Current status * \param psz_status Current status
* \param f_position Current position (0.0->100.0) * \param f_position Current position (0.0->100.0)
* \param i_timeToGo Time (in sec) to go until process is finished
* \return Dialog id, to give to UserProgressUpdate * \return Dialog id, to give to UserProgressUpdate
*/ */
int __intf_UserProgress( vlc_object_t *p_this, int __intf_UserProgress( vlc_object_t *p_this,
const char *psz_title, const char *psz_title,
const char *psz_status, const char *psz_status,
float f_pos ) float f_pos,
int i_time )
{ {
int i_ret; int i_ret;
interaction_dialog_t *p_new = NULL; interaction_dialog_t *p_new = NULL;
...@@ -346,6 +333,7 @@ int __intf_UserProgress( vlc_object_t *p_this, ...@@ -346,6 +333,7 @@ int __intf_UserProgress( vlc_object_t *p_this,
p_new->psz_title = strdup( psz_title ); p_new->psz_title = strdup( psz_title );
p_new->psz_description = strdup( psz_status ); p_new->psz_description = strdup( psz_status );
p_new->val.f_float = f_pos; p_new->val.f_float = f_pos;
p_new->i_timeToGo = i_time;
p_new->i_flags = DIALOG_USER_PROGRESS; p_new->i_flags = DIALOG_USER_PROGRESS;
...@@ -359,10 +347,12 @@ int __intf_UserProgress( vlc_object_t *p_this, ...@@ -359,10 +347,12 @@ int __intf_UserProgress( vlc_object_t *p_this,
* \param i_id Identifier of the dialog * \param i_id Identifier of the dialog
* \param psz_status New status * \param psz_status New status
* \param f_position New position (0.0->100.0) * \param f_position New position (0.0->100.0)
* \param i_timeToGo Time (in sec) to go until process is finished
* \return nothing * \return nothing
*/ */
void __intf_UserProgressUpdate( vlc_object_t *p_this, int i_id, void __intf_UserProgressUpdate( vlc_object_t *p_this, int i_id,
const char *psz_status, float f_pos ) const char *psz_status, float f_pos,
int i_time )
{ {
interaction_t *p_interaction = intf_InteractionGet( p_this ); interaction_t *p_interaction = intf_InteractionGet( p_this );
interaction_dialog_t *p_dialog; interaction_dialog_t *p_dialog;
...@@ -383,11 +373,37 @@ void __intf_UserProgressUpdate( vlc_object_t *p_this, int i_id, ...@@ -383,11 +373,37 @@ void __intf_UserProgressUpdate( vlc_object_t *p_this, int i_id,
p_dialog->psz_description = strdup( psz_status ); p_dialog->psz_description = strdup( psz_status );
p_dialog->val.f_float = f_pos; p_dialog->val.f_float = f_pos;
p_dialog->i_timeToGo = i_time;
p_dialog->i_status = UPDATED_DIALOG; p_dialog->i_status = UPDATED_DIALOG;
vlc_mutex_unlock( &p_interaction->object_lock) ; vlc_mutex_unlock( &p_interaction->object_lock) ;
} }
/** Helper function to communicate dialogue cancellations between the intf-module and caller
* \param p_this Parent vlc_object
* \param i_id Identifier of the dialogue
* \return Either true or false
*/
vlc_bool_t __intf_UserProgressIsCancelled( vlc_object_t *p_this, int i_id )
{
interaction_t *p_interaction = intf_InteractionGet( p_this );
interaction_dialog_t *p_dialog;
if( !p_interaction ) return VLC_TRUE;
vlc_mutex_lock( &p_interaction->object_lock );
p_dialog = intf_InteractionGetById( p_this, i_id );
if( !p_dialog )
{
vlc_mutex_unlock( &p_interaction->object_lock ) ;
return VLC_TRUE;
}
vlc_mutex_unlock( &p_interaction->object_lock) ;
return p_dialog->b_cancelled;
}
/** Helper function to make a login/password dialogue /** Helper function to make a login/password dialogue
* \param p_this Parent vlc_object * \param p_this Parent vlc_object
* \param psz_title Title for the dialog * \param psz_title Title for the dialog
......
...@@ -1264,7 +1264,7 @@ void update_download_for_real( download_thread_t *p_this ) ...@@ -1264,7 +1264,7 @@ void update_download_for_real( download_thread_t *p_this )
asprintf( &psz_status, "%s\nDownloading... 0.0/? %.1f%% done", asprintf( &psz_status, "%s\nDownloading... 0.0/? %.1f%% done",
p_this->psz_status, 0.0 ); p_this->psz_status, 0.0 );
i_progress = intf_UserProgress( p_vlc, "Downloading...", i_progress = intf_UserProgress( p_vlc, "Downloading...",
psz_status, 0.0 ); psz_status, 0.0, 0 );
p_stream = stream_UrlNew( p_vlc, psz_src ); p_stream = stream_UrlNew( p_vlc, psz_src );
if( !p_stream ) if( !p_stream )
...@@ -1309,7 +1309,7 @@ void update_download_for_real( download_thread_t *p_this ) ...@@ -1309,7 +1309,7 @@ void update_download_for_real( download_thread_t *p_this )
free( psz_s1 ); free( psz_s2 ); free( psz_s1 ); free( psz_s2 );
intf_UserProgressUpdate( p_vlc, i_progress, intf_UserProgressUpdate( p_vlc, i_progress,
psz_status, f_progress ); psz_status, f_progress, 0 );
} }
free( p_buffer ); free( p_buffer );
...@@ -1321,7 +1321,7 @@ void update_download_for_real( download_thread_t *p_this ) ...@@ -1321,7 +1321,7 @@ void update_download_for_real( download_thread_t *p_this )
asprintf( &psz_status, "%s\nDone %s (100.00%%)", asprintf( &psz_status, "%s\nDone %s (100.00%%)",
p_this->psz_status, psz_s2 ); p_this->psz_status, psz_s2 );
free( psz_s2 ); free( psz_s2 );
intf_UserProgressUpdate( p_vlc, i_progress, psz_status, 100.0 ); intf_UserProgressUpdate( p_vlc, i_progress, psz_status, 100.0, 0 );
free( psz_status ); free( psz_status );
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment