Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-gpu
Commits
bb196db7
Commit
bb196db7
authored
Mar 05, 2009
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt4: incomplete support for dialog_Fatal
parent
cc4e24a8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
0 deletions
+25
-0
modules/gui/qt4/main_interface.cpp
modules/gui/qt4/main_interface.cpp
+25
-0
No files found.
modules/gui/qt4/main_interface.cpp
View file @
bb196db7
...
@@ -61,6 +61,7 @@
...
@@ -61,6 +61,7 @@
#include <vlc_keys.h>
/* Wheel event */
#include <vlc_keys.h>
/* Wheel event */
#include <vlc_vout.h>
#include <vlc_vout.h>
#include <vlc_dialog.h>
/* Callback prototypes */
/* Callback prototypes */
static
int
PopupMenuCB
(
vlc_object_t
*
p_this
,
const
char
*
psz_variable
,
static
int
PopupMenuCB
(
vlc_object_t
*
p_this
,
const
char
*
psz_variable
,
...
@@ -69,6 +70,8 @@ static int IntfShowCB( vlc_object_t *p_this, const char *psz_variable,
...
@@ -69,6 +70,8 @@ static int IntfShowCB( vlc_object_t *p_this, const char *psz_variable,
vlc_value_t
old_val
,
vlc_value_t
new_val
,
void
*
param
);
vlc_value_t
old_val
,
vlc_value_t
new_val
,
void
*
param
);
static
int
InteractCallback
(
vlc_object_t
*
,
const
char
*
,
vlc_value_t
,
static
int
InteractCallback
(
vlc_object_t
*
,
const
char
*
,
vlc_value_t
,
vlc_value_t
,
void
*
);
vlc_value_t
,
void
*
);
static
int
DialogCallback
(
vlc_object_t
*
,
const
char
*
,
vlc_value_t
,
vlc_value_t
,
void
*
);
MainInterface
::
MainInterface
(
intf_thread_t
*
_p_intf
)
:
QVLCMW
(
_p_intf
)
MainInterface
::
MainInterface
(
intf_thread_t
*
_p_intf
)
:
QVLCMW
(
_p_intf
)
{
{
...
@@ -203,6 +206,10 @@ MainInterface::MainInterface( intf_thread_t *_p_intf ) : QVLCMW( _p_intf )
...
@@ -203,6 +206,10 @@ MainInterface::MainInterface( intf_thread_t *_p_intf ) : QVLCMW( _p_intf )
var_AddCallback
(
p_intf
,
"interaction"
,
InteractCallback
,
this
);
var_AddCallback
(
p_intf
,
"interaction"
,
InteractCallback
,
this
);
interaction_Register
(
p_intf
);
interaction_Register
(
p_intf
);
var_Create
(
p_intf
,
"dialog-fatal"
,
VLC_VAR_ADDRESS
);
var_AddCallback
(
p_intf
,
"dialog-fatal"
,
DialogCallback
,
this
);
dialog_Register
(
p_intf
);
var_AddCallback
(
p_intf
->
p_libvlc
,
"intf-show"
,
IntfShowCB
,
p_intf
);
var_AddCallback
(
p_intf
->
p_libvlc
,
"intf-show"
,
IntfShowCB
,
p_intf
);
/* Register callback for the intf-popupmenu variable */
/* Register callback for the intf-popupmenu variable */
...
@@ -317,6 +324,9 @@ MainInterface::~MainInterface()
...
@@ -317,6 +324,9 @@ MainInterface::~MainInterface()
interaction_Unregister
(
p_intf
);
interaction_Unregister
(
p_intf
);
var_DelCallback
(
p_intf
,
"interaction"
,
InteractCallback
,
this
);
var_DelCallback
(
p_intf
,
"interaction"
,
InteractCallback
,
this
);
dialog_Unregister
(
p_intf
);
var_DelCallback
(
p_intf
,
"dialog-fatal"
,
DialogCallback
,
this
);
p_intf
->
p_sys
->
p_mi
=
NULL
;
p_intf
->
p_sys
->
p_mi
=
NULL
;
}
}
...
@@ -1212,6 +1222,21 @@ static int InteractCallback( vlc_object_t *p_this,
...
@@ -1212,6 +1222,21 @@ static int InteractCallback( vlc_object_t *p_this,
return
VLC_SUCCESS
;
return
VLC_SUCCESS
;
}
}
static
int
DialogCallback
(
vlc_object_t
*
p_this
,
const
char
*
type
,
vlc_value_t
previous
,
vlc_value_t
value
,
void
*
data
)
{
MainInterface
*
self
=
(
MainInterface
*
)
data
;
const
dialog_fatal_t
*
dialog
=
(
const
dialog_fatal_t
*
)
value
.
p_address
;
if
(
!
strcmp
(
type
,
"dialog-fatal"
))
printf
(
"ERROR: %s
\n
%s
\n
"
,
dialog
->
title
,
dialog
->
message
);
/* FIXME!!! */
(
void
)
previous
;
return
VLC_SUCCESS
;
}
/*****************************************************************************
/*****************************************************************************
* PopupMenuCB: callback triggered by the intf-popupmenu playlist variable.
* PopupMenuCB: callback triggered by the intf-popupmenu playlist variable.
* We don't show the menu directly here because we don't want the
* We don't show the menu directly here because we don't want the
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment