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
5ad1cce8
Commit
5ad1cce8
authored
Nov 14, 2005
by
Antoine Cellerier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove VLC update checker stuff from 0.8.4
parent
67e19f8a
Changes
6
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
0 additions
and
792 deletions
+0
-792
NEWS
NEWS
+0
-1
modules/gui/wxwidgets/Modules.am
modules/gui/wxwidgets/Modules.am
+0
-1
modules/gui/wxwidgets/dialogs.cpp
modules/gui/wxwidgets/dialogs.cpp
+0
-18
modules/gui/wxwidgets/interface.cpp
modules/gui/wxwidgets/interface.cpp
+0
-7
modules/gui/wxwidgets/updatevlc.cpp
modules/gui/wxwidgets/updatevlc.cpp
+0
-704
modules/gui/wxwidgets/wxwidgets.h
modules/gui/wxwidgets/wxwidgets.h
+0
-61
No files found.
NEWS
View file @
5ad1cce8
...
...
@@ -51,7 +51,6 @@ Interfaces:
* wxWidgets
- Rename wxWindows interface in wxWidgets.
- All the --wxwin-* options are now --wx-*
- VLC update checker
- Support for RTP streaming in Stream Ouput dialog
- Now require wx2.6 with Unicode support
* Skins2
...
...
modules/gui/wxwidgets/Modules.am
View file @
5ad1cce8
...
...
@@ -18,7 +18,6 @@ SOURCES_wxwidgets = \
preferences_widgets.h \
timer.cpp \
fileinfo.cpp \
updatevlc.cpp \
subtitles.cpp \
bookmarks.cpp \
video.cpp \
...
...
modules/gui/wxwidgets/dialogs.cpp
View file @
5ad1cce8
...
...
@@ -51,7 +51,6 @@ private:
void
Open
(
int
i_access_method
,
int
i_arg
);
/* Event handlers (these functions should _not_ be virtual) */
void
OnUpdateVLC
(
wxCommandEvent
&
event
);
void
OnExit
(
wxCommandEvent
&
event
);
void
OnPlaylist
(
wxCommandEvent
&
event
);
void
OnMessages
(
wxCommandEvent
&
event
);
...
...
@@ -91,7 +90,6 @@ public:
wxFrame
*
p_prefs_dialog
;
wxFrame
*
p_bookmarks_dialog
;
wxFileDialog
*
p_file_generic_dialog
;
UpdateVLC
*
p_updatevlc_dialog
;
};
DEFINE_LOCAL_EVENT_TYPE
(
wxEVT_DIALOG
);
...
...
@@ -129,8 +127,6 @@ BEGIN_EVENT_TABLE(DialogsProvider, wxFrame)
DialogsProvider
::
OnPopupMenu
)
EVT_COMMAND
(
INTF_DIALOG_EXIT
,
wxEVT_DIALOG
,
DialogsProvider
::
OnExitThread
)
EVT_COMMAND
(
INTF_DIALOG_UPDATEVLC
,
wxEVT_DIALOG
,
DialogsProvider
::
OnUpdateVLC
)
END_EVENT_TABLE
()
wxWindow
*
CreateDialogsProvider
(
intf_thread_t
*
p_intf
,
wxWindow
*
p_parent
)
...
...
@@ -156,7 +152,6 @@ DialogsProvider::DialogsProvider( intf_thread_t *_p_intf, wxWindow *p_parent )
p_wizard_dialog
=
NULL
;
p_bookmarks_dialog
=
NULL
;
p_dir_dialog
=
NULL
;
p_updatevlc_dialog
=
NULL
;
/* Give our interface a nice little icon */
p_intf
->
p_sys
->
p_icon
=
new
wxIcon
(
vlc_xpm
);
...
...
@@ -227,7 +222,6 @@ DialogsProvider::~DialogsProvider()
if
(
p_file_generic_dialog
)
delete
p_file_generic_dialog
;
if
(
p_wizard_dialog
)
delete
p_wizard_dialog
;
if
(
p_bookmarks_dialog
)
delete
p_bookmarks_dialog
;
if
(
p_updatevlc_dialog
)
delete
p_updatevlc_dialog
;
if
(
p_intf
->
p_sys
->
p_icon
)
delete
p_intf
->
p_sys
->
p_icon
;
...
...
@@ -490,15 +484,3 @@ void DialogsProvider::OnExitThread( wxCommandEvent& WXUNUSED(event) )
{
wxTheApp
->
ExitMainLoop
();
}
void
DialogsProvider
::
OnUpdateVLC
(
wxCommandEvent
&
WXUNUSED
(
event
)
)
{
/* Show/hide the file info window */
if
(
!
p_updatevlc_dialog
)
p_updatevlc_dialog
=
new
UpdateVLC
(
p_intf
,
this
);
if
(
p_updatevlc_dialog
)
{
p_updatevlc_dialog
->
Show
(
!
p_updatevlc_dialog
->
IsShown
()
);
}
}
modules/gui/wxwidgets/interface.cpp
View file @
5ad1cce8
...
...
@@ -157,7 +157,6 @@ enum
* this standard value as otherwise it won't be handled properly under Mac
* (where it is special and put into the "Apple" menu) */
About_Event
=
wxID_ABOUT
,
UpdateVLC_Event
,
Iconize_Event
};
...
...
@@ -166,7 +165,6 @@ BEGIN_EVENT_TABLE(Interface, wxFrame)
/* Menu events */
EVT_MENU
(
Exit_Event
,
Interface
::
OnExit
)
EVT_MENU
(
About_Event
,
Interface
::
OnAbout
)
EVT_MENU
(
UpdateVLC_Event
,
Interface
::
OnShowDialog
)
EVT_MENU
(
Playlist_Event
,
Interface
::
OnShowDialog
)
EVT_MENU
(
Logs_Event
,
Interface
::
OnShowDialog
)
...
...
@@ -458,8 +456,6 @@ void Interface::CreateOurMenuBar()
/* Create the "Help" menu */
wxMenu
*
help_menu
=
new
wxMenu
;
help_menu
->
Append
(
About_Event
,
wxU
(
_
(
"About VLC media player"
))
);
help_menu
->
AppendSeparator
();
help_menu
->
Append
(
UpdateVLC_Event
,
wxU
(
_
(
"Check for updates ..."
))
);
/* Append the freshly created menus to the menu bar... */
wxMenuBar
*
menubar
=
new
wxMenuBar
();
...
...
@@ -979,9 +975,6 @@ void Interface::OnShowDialog( wxCommandEvent& event )
case
Bookmarks_Event
:
i_id
=
INTF_DIALOG_BOOKMARKS
;
break
;
case
UpdateVLC_Event
:
i_id
=
INTF_DIALOG_UPDATEVLC
;
break
;
default:
i_id
=
INTF_DIALOG_FILE
;
break
;
...
...
modules/gui/wxwidgets/updatevlc.cpp
deleted
100644 → 0
View file @
67e19f8a
This diff is collapsed.
Click to expand it.
modules/gui/wxwidgets/wxwidgets.h
View file @
5ad1cce8
...
...
@@ -1060,67 +1060,6 @@ private:
};
/* Update VLC */
class
UpdateVLC
:
public
wxFrame
{
public:
/* Constructor */
UpdateVLC
(
intf_thread_t
*
p_intf
,
wxWindow
*
p_parent
);
virtual
~
UpdateVLC
();
private:
void
OnButtonClose
(
wxCommandEvent
&
event
);
void
OnClose
(
wxCloseEvent
&
WXUNUSED
(
event
)
);
void
GetData
();
void
OnCheckForUpdate
(
wxCommandEvent
&
event
);
void
OnMirrorChoice
(
wxCommandEvent
&
event
);
void
UpdateUpdatesTree
();
void
UpdateMirrorsChoice
();
void
OnUpdatesTreeActivate
(
wxTreeEvent
&
event
);
void
DownloadFile
(
wxString
url
,
wxString
dst
);
DECLARE_EVENT_TABLE
();
intf_thread_t
*
p_intf
;
wxTreeCtrl
*
updates_tree
;
wxTreeItemId
updates_root
;
wxChoice
*
mirrors_choice
;
wxString
release_type
;
/* could be "stable", "test", "nightly" ... */
struct
update_file_t
{
wxString
type
;
wxString
md5
;
wxString
size
;
wxString
url
;
wxString
description
;
};
struct
update_version_t
{
wxString
type
;
wxString
major
;
wxString
minor
;
wxString
revision
;
wxString
extra
;
std
::
list
<
update_file_t
>
m_files
;
};
std
::
list
<
update_version_t
>
m_versions
;
struct
update_mirror_t
{
wxString
name
;
wxString
location
;
wxString
type
;
wxString
base_url
;
};
std
::
list
<
update_mirror_t
>
m_mirrors
;
};
#if wxUSE_DRAG_AND_DROP
/* Drag and Drop class */
class
DragAndDrop
:
public
wxFileDropTarget
...
...
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