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
34eab38e
Commit
34eab38e
authored
Apr 08, 2001
by
Pierre Baillet
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Corrected playlist update on file opening.
parent
9dde7278
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
28 additions
and
27 deletions
+28
-27
plugins/gtk/gtk_callbacks.c
plugins/gtk/gtk_callbacks.c
+23
-14
plugins/gtk/gtk_playlist.c
plugins/gtk/gtk_playlist.c
+5
-13
No files found.
plugins/gtk/gtk_callbacks.c
View file @
34eab38e
...
...
@@ -2,7 +2,7 @@
* gtk_callbacks.c : Callbacks for the Gtk+ plugin.
*****************************************************************************
* Copyright (C) 2000, 2001 VideoLAN
* $Id: gtk_callbacks.c,v 1.1
2 2001/03/21 13:42:34 sam
Exp $
* $Id: gtk_callbacks.c,v 1.1
3 2001/04/08 13:09:32 octplane
Exp $
*
* Authors: Samuel Hocevar <sam@zoy.org>
* Stphane Borel <stef@via.ecp.fr>
...
...
@@ -51,18 +51,11 @@
#include "gtk_callbacks.h"
#include "gtk_interface.h"
#include "gtk_support.h"
#include "gtk_playlist.h"
#include "intf_gtk.h"
#include "main.h"
/****************************************************************************
* External function
*/
void
on_generic_drop_data_received
(
intf_thread_t
*
p_intf
,
GtkSelectionData
*
data
,
guint
info
,
int
position
);
/*****************************************************************************
* Callbacks
******************************************************************************/
...
...
@@ -132,7 +125,7 @@ on_toolbar_open_clicked (GtkButton *button,
{
p_intf
->
p_sys
->
p_fileopen
=
create_intf_fileopen
();
gtk_object_set_data
(
GTK_OBJECT
(
p_intf
->
p_sys
->
p_fileopen
),
"p_intf"
,
p_intf
);
"p_intf"
,
p_intf
);
}
gtk_widget_show
(
p_intf
->
p_sys
->
p_fileopen
);
...
...
@@ -252,14 +245,30 @@ void
on_fileopen_ok_clicked
(
GtkButton
*
button
,
gpointer
user_data
)
{
Gtk
Widget
*
filesel
;
Gtk
CList
*
playlist_clist
;
gchar
*
filename
;
filesel
=
gtk_widget_get_toplevel
(
GTK_WIDGET
(
button
));
GtkWidget
*
filesel
=
gtk_widget_get_toplevel
(
GTK_WIDGET
(
button
)
);
/* retrieve the interface */
intf_thread_t
*
p_intf
=
GetIntf
(
GTK_WIDGET
(
filesel
),
"intf_fileopen"
);
/* hide the widget */
gtk_widget_hide
(
filesel
);
filename
=
gtk_file_selection_get_filename
(
GTK_FILE_SELECTION
(
filesel
));
intf_PlaylistAdd
(
p_main
->
p_playlist
,
PLAYLIST_END
,
(
char
*
)
filename
);
/* catch the GTK CList */
playlist_clist
=
GTK_CLIST
(
lookup_widget
(
p_intf
->
p_sys
->
p_playlist
,
"playlist_clist"
));
intf_PlaylistAdd
(
p_main
->
p_playlist
,
PLAYLIST_END
,
(
char
*
)
filename
);
/* update the display */
rebuildCList
(
playlist_clist
,
p_main
->
p_playlist
);
}
...
...
plugins/gtk/gtk_playlist.c
View file @
34eab38e
...
...
@@ -2,7 +2,7 @@
* gtk_playlist.c : Interface for the playlist dialog
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* $Id: gtk_playlist.c,v 1.
8 2001/03/21 13:42:34 sam
Exp $
* $Id: gtk_playlist.c,v 1.
9 2001/04/08 13:09:32 octplane
Exp $
*
* Authors: Pierre Baillet <oct@zoy.org>
*
...
...
@@ -56,19 +56,11 @@
#include "gtk_callbacks.h"
#include "gtk_interface.h"
#include "gtk_support.h"
#include "gtk_playlist.h"
#include "intf_gtk.h"
#include "main.h"
/* Playlist specific functions */
void
rebuildCList
(
GtkCList
*
clist
,
playlist_t
*
playlist_p
);
gint
compareItems
(
gconstpointer
a
,
gconstpointer
b
);
int
hasValidExtension
(
gchar
*
filename
);
GList
*
intf_readFiles
(
gchar
*
fsname
);
int
intf_AppendList
(
playlist_t
*
p_playlist
,
int
i_pos
,
GList
*
list
);
void
GtkPlayListManage
(
gpointer
p_data
);
void
on_generic_drop_data_received
(
intf_thread_t
*
p_intf
,
GtkSelectionData
*
data
,
guint
info
,
int
position
);
#include "main.h"
void
on_menubar_playlist_activate
(
GtkMenuItem
*
menuitem
,
...
...
@@ -110,7 +102,7 @@ on_toolbar_playlist_clicked (GtkButton *button,
if
(
!
GTK_IS_WIDGET
(
p_intf
->
p_sys
->
p_playlist
)
)
{
/* this shoud never happen */
/* this shou
l
d never happen */
intf_ErrMsgImm
(
"intf_playlist is not a widget !"
);
p_intf
->
p_sys
->
p_playlist
=
create_intf_playlist
();
...
...
@@ -273,7 +265,7 @@ on_delete_clicked (GtkMenuItem *item,
g_list_foreach
(
selection
,
deleteGListItem
,
p_intf
);
/* rebuild the CList */
rebuildCList
(
clist
,
playlist_p
);
}
...
...
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