]> git.sesse.net Git - vlc/blob - modules/gui/wxwidgets/dialogs/updatevlc.hpp
8151af14dd7f1d8647f5e8d09328e78570155034
[vlc] / modules / gui / wxwidgets / dialogs / updatevlc.hpp
1 /*****************************************************************************
2  * updatevlc.hpp: VLC Update checker
3  *****************************************************************************
4  * Copyright (C) 1999-2005 the VideoLAN team
5  * $Id: wxwidgets.h 12670 2005-09-25 11:16:31Z zorglub $
6  *
7  * Authors: Antoine Cellerier <dionoea@videolan.org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23
24 #ifndef _WXVLC_UPDATEVLC_H_
25 #define _WXVLC_UPDATEVLC_H_
26
27 #include "wxwidgets.hpp"
28 #include <wx/treectrl.h>
29 #include <list>
30
31 class wxTreeCtrl;
32
33 namespace wxvlc
34 {
35     class UpdateVLC: public wxFrame
36     {
37     public:
38         /** Constructor */
39         UpdateVLC( intf_thread_t *p_intf, wxWindow *p_parent );
40         virtual ~UpdateVLC();
41
42     private:
43         void OnButtonClose( wxCommandEvent& event );
44         void OnClose( wxCloseEvent& WXUNUSED(event) );
45         void GetData();
46         void OnCheckForUpdate( wxCommandEvent& event );
47         void OnMirrorChoice( wxCommandEvent& event );
48         void UpdateUpdatesTree();
49         void UpdateMirrorsChoice();
50         void OnUpdatesTreeActivate( wxTreeEvent& event );
51         void DownloadFile( wxString url, wxString dst );
52
53         DECLARE_EVENT_TABLE();
54
55         intf_thread_t *p_intf;
56         wxTreeCtrl *updates_tree;
57
58         wxChoice *mirrors_choice;
59
60         wxString release_type; /* could be "stable", "test", "nightly" ... */
61
62         struct update_file_t
63         {
64             wxString type;
65             wxString md5;
66             wxString size;
67             wxString url;
68             wxString description;
69         };
70
71         struct update_version_t
72         {
73             wxString type;
74             wxString major;
75             wxString minor;
76             wxString revision;
77             wxString extra;
78             std::list<update_file_t> m_files;
79         };
80
81         std::list<update_version_t> m_versions;
82
83         struct update_mirror_t
84         {
85             wxString name;
86             wxString location;
87             wxString type;
88             wxString base_url;
89         };
90
91         std::list<update_mirror_t> m_mirrors;
92     };
93 };
94
95 #endif