Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
VLC-Tizen
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
9
Issues
9
List
Boards
Labels
Milestones
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
VideoLAN
VLC-Tizen
Commits
14f2de84
Commit
14f2de84
authored
Nov 03, 2015
by
Ludovic Fauvet
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mini player: remove now useless callback
parent
8f4de42a
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
7 deletions
+0
-7
src/ui/audio_player.c
src/ui/audio_player.c
+0
-7
No files found.
src/ui/audio_player.c
View file @
14f2de84
...
@@ -789,12 +789,6 @@ audio_player_show_fullscreen(audio_player *mpd)
...
@@ -789,12 +789,6 @@ audio_player_show_fullscreen(audio_player *mpd)
mpd
->
fs_state
=
true
;
mpd
->
fs_state
=
true
;
}
}
static
void
audio_player_fullscreen_cb
(
void
*
data
,
Evas_Object
*
obj
,
void
*
event_info
)
{
audio_player_show_fullscreen
(
data
);
}
static
void
static
void
audio_player_fullscreen_edge_cb
(
void
*
data
,
Evas_Object
*
o
,
const
char
*
emission
,
const
char
*
source
)
audio_player_fullscreen_edge_cb
(
void
*
data
,
Evas_Object
*
o
,
const
char
*
emission
,
const
char
*
source
)
{
{
...
@@ -906,7 +900,6 @@ audio_player_create(interface *intf, playback_service *p_ps, Evas_Object *layout
...
@@ -906,7 +900,6 @@ audio_player_create(interface *intf, playback_service *p_ps, Evas_Object *layout
/* Add button callbacks */
/* Add button callbacks */
evas_object_event_callback_add
(
mpd
->
play_pause_img
,
EVAS_CALLBACK_MOUSE_DOWN
,
play_pause_mouse_down_cb
,
mpd
);
evas_object_event_callback_add
(
mpd
->
play_pause_img
,
EVAS_CALLBACK_MOUSE_DOWN
,
play_pause_mouse_down_cb
,
mpd
);
evas_object_event_callback_add
(
mpd
->
play_pause_img
,
EVAS_CALLBACK_MOUSE_UP
,
play_pause_mouse_up_cb
,
mpd
);
evas_object_event_callback_add
(
mpd
->
play_pause_img
,
EVAS_CALLBACK_MOUSE_UP
,
play_pause_mouse_up_cb
,
mpd
);
evas_object_smart_callback_add
(
mpd
->
cover
,
"clicked"
,
audio_player_fullscreen_cb
,
mpd
);
edje_object_signal_callback_add
(
edje
,
"*clicked*"
,
"expand_region"
,
audio_player_fullscreen_edge_cb
,
mpd
);
edje_object_signal_callback_add
(
edje
,
"*clicked*"
,
"expand_region"
,
audio_player_fullscreen_edge_cb
,
mpd
);
...
...
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