]> git.sesse.net Git - vlc/blobdiff - modules/gui/wxwidgets/wxwidgets.h
remove VLC update checker stuff from 0.8.4
[vlc] / modules / gui / wxwidgets / wxwidgets.h
index e97463f85da3fcef4d111cd37356f031fd550094..4956e0a25467ebfc61d4f58d80a9319fdff9750e 100644 (file)
@@ -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