Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
ba02e3b2
Commit
ba02e3b2
authored
Sep 26, 2005
by
Eric Petit
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
beos/*: update the playlist properly
parent
db913e1c
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
269 additions
and
252 deletions
+269
-252
modules/gui/beos/InterfaceWindow.cpp
modules/gui/beos/InterfaceWindow.cpp
+38
-28
modules/gui/beos/InterfaceWindow.h
modules/gui/beos/InterfaceWindow.h
+13
-11
modules/gui/beos/PlayListWindow.cpp
modules/gui/beos/PlayListWindow.cpp
+218
-213
No files found.
modules/gui/beos/InterfaceWindow.cpp
View file @
ba02e3b2
...
...
@@ -174,6 +174,14 @@ collect_folder_contents( BDirectory& dir, BList& list, bool& deep, bool& asked,
}
}
static
int
PlaylistChanged
(
vlc_object_t
*
p_this
,
const
char
*
psz_variable
,
vlc_value_t
old_val
,
vlc_value_t
new_val
,
void
*
param
)
{
InterfaceWindow
*
w
=
(
InterfaceWindow
*
)
param
;
w
->
UpdatePlaylist
();
return
VLC_SUCCESS
;
}
/*****************************************************************************
* InterfaceWindow
...
...
@@ -193,6 +201,15 @@ InterfaceWindow::InterfaceWindow( intf_thread_t * _p_intf, BRect frame,
fLastUpdateTime
(
system_time
()
),
fSettings
(
new
BMessage
(
'
sett
'
)
)
{
p_playlist
=
(
playlist_t
*
)
vlc_object_find
(
p_intf
,
VLC_OBJECT_PLAYLIST
,
FIND_ANYWHERE
);
var_AddCallback
(
p_playlist
,
"intf-change"
,
PlaylistChanged
,
this
);
var_AddCallback
(
p_playlist
,
"item-change"
,
PlaylistChanged
,
this
);
var_AddCallback
(
p_playlist
,
"item-append"
,
PlaylistChanged
,
this
);
var_AddCallback
(
p_playlist
,
"item-deleted"
,
PlaylistChanged
,
this
);
var_AddCallback
(
p_playlist
,
"playlist-current"
,
PlaylistChanged
,
this
);
char
psz_tmp
[
1024
];
#define ADD_ELLIPSIS( a ) \
memset( psz_tmp, 0, 1024 ); \
...
...
@@ -416,7 +433,7 @@ void InterfaceWindow::MessageReceived( BMessage * p_message )
playlist_Add
(
p_playlist
,
psz_uri
,
psz_device
,
PLAYLIST_APPEND
|
PLAYLIST_GO
,
PLAYLIST_END
);
}
_
UpdatePlaylist
();
UpdatePlaylist
();
}
break
;
...
...
@@ -731,7 +748,7 @@ void InterfaceWindow::MessageReceived( BMessage * p_message )
}
}
_
UpdatePlaylist
();
UpdatePlaylist
();
break
;
}
...
...
@@ -792,12 +809,6 @@ bool InterfaceWindow::QuitRequested()
*****************************************************************************/
void
InterfaceWindow
::
UpdateInterface
()
{
/* Manage the input part */
if
(
!
p_playlist
)
{
p_playlist
=
(
playlist_t
*
)
vlc_object_find
(
p_intf
,
VLC_OBJECT_PLAYLIST
,
FIND_ANYWHERE
);
}
if
(
!
p_input
)
{
p_input
=
(
input_thread_t
*
)
...
...
@@ -815,6 +826,17 @@ void InterfaceWindow::UpdateInterface()
return
;
}
if
(
b_playlist_update
)
{
if
(
fPlaylistWindow
->
Lock
()
)
{
fPlaylistWindow
->
UpdatePlaylist
(
true
);
fPlaylistWindow
->
Unlock
();
b_playlist_update
=
false
;
}
p_mediaControl
->
SetEnabled
(
p_playlist
->
i_size
);
}
if
(
p_input
)
{
vlc_value_t
val
;
...
...
@@ -840,13 +862,6 @@ void InterfaceWindow::UpdateInterface()
aout_VolumeGet
(
p_intf
,
&
i_volume
);
p_mediaControl
->
SetAudioEnabled
(
true
);
p_mediaControl
->
SetMuted
(
i_volume
);
// update playlist as well
if
(
fPlaylistWindow
->
LockWithTimeout
(
INTERFACE_LOCKING_TIMEOUT
)
==
B_OK
)
{
fPlaylistWindow
->
UpdatePlaylist
();
fPlaylistWindow
->
Unlock
();
}
}
else
{
...
...
@@ -877,26 +892,21 @@ void InterfaceWindow::UpdateInterface()
}
/*****************************************************************************
* InterfaceWindow::
IsStopped
* InterfaceWindow::
UpdatePlaylist
*****************************************************************************/
bool
InterfaceWindow
::
IsStopped
()
const
void
InterfaceWindow
::
UpdatePlaylist
()
{
return
(
system_time
()
-
fLastUpdateTime
>
INTERFACE_UPDATE_TIMEOUT
)
;
b_playlist_update
=
true
;
}
/*****************************************************************************
* InterfaceWindow::
_UpdatePlaylist
* InterfaceWindow::
IsStopped
*****************************************************************************/
void
InterfaceWindow
::
_UpdatePlaylist
()
bool
InterfaceWindow
::
IsStopped
()
const
{
if
(
fPlaylistWindow
->
Lock
()
)
{
fPlaylistWindow
->
UpdatePlaylist
(
true
);
fPlaylistWindow
->
Unlock
();
}
p_mediaControl
->
SetEnabled
(
p_playlist
->
i_size
);
return
(
system_time
()
-
fLastUpdateTime
>
INTERFACE_UPDATE_TIMEOUT
);
}
/*****************************************************************************
...
...
modules/gui/beos/InterfaceWindow.h
View file @
ba02e3b2
...
...
@@ -102,13 +102,14 @@ class InterfaceWindow : public BWindow
// InterfaceWindow
void
UpdateInterface
();
void
UpdatePlaylist
();
bool
IsStopped
()
const
;
MediaControlView
*
p_mediaControl
;
MessagesWindow
*
fMessagesWindow
;
private:
void
_UpdatePlaylist
();
void
_SetMenusEnabled
(
bool
hasFile
,
bool
hasChapters
=
false
,
bool
hasTitles
=
false
);
...
...
@@ -122,6 +123,7 @@ class InterfaceWindow : public BWindow
input_thread_t
*
p_input
;
playlist_t
*
p_playlist
;
es_descriptor_t
*
p_spu_es
;
bool
b_playlist_update
;
BFilePanel
*
fFilePanel
;
PlayListWindow
*
fPlaylistWindow
;
...
...
modules/gui/beos/PlayListWindow.cpp
View file @
ba02e3b2
...
...
@@ -283,12 +283,17 @@ PlayListWindow::ReallyQuit()
void
PlayListWindow
::
UpdatePlaylist
(
bool
rebuild
)
{
if
(
rebuild
)
playlist_t
*
p_playlist
;
if
(
rebuild
)
fListView
->
RebuildList
();
#if 0
fListView->SetCurrent( p_wrapper->PlaylistCurrent() );
fListView->SetPlaying( p_wrapper->IsPlaying() );
#endif
p_playlist
=
(
playlist_t
*
)
vlc_object_find
(
p_intf
,
VLC_OBJECT_PLAYLIST
,
FIND_ANYWHERE
);
fListView
->
SetCurrent
(
p_playlist
->
i_index
);
fListView
->
SetPlaying
(
p_playlist
->
status
.
i_status
==
PLAYLIST_RUNNING
);
vlc_object_release
(
p_playlist
);
_CheckItemsEnableState
();
}
...
...
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