]> git.sesse.net Git - vlc/blob - modules/gui/wxwidgets/dialogs/updatevlc.hpp
p( vlc.getInterfaces().getInterface( "wxwidgets" ).isBroken() ) = 1/2
[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 <list>
29
30 class wxTreeCtrl;
31
32 namespace wxvlc
33 {
34     class UpdateVLC: public wxFrame
35     {
36     public:
37         /** Constructor */
38         UpdateVLC( intf_thread_t *p_intf, wxWindow *p_parent );
39         virtual ~UpdateVLC();
40
41     private:
42         void OnButtonClose( wxCommandEvent& event );
43         void OnClose( wxCloseEvent& WXUNUSED(event) );
44         void GetData();
45         void OnCheckForUpdate( wxCommandEvent& event );
46         void OnMirrorChoice( wxCommandEvent& event );
47         void UpdateUpdatesTree();
48         void UpdateMirrorsChoice();
49         void OnUpdatesTreeActivate( wxTreeEvent& event );
50         void DownloadFile( wxString url, wxString dst );
51
52         DECLARE_EVENT_TABLE();
53
54         intf_thread_t *p_intf;
55         wxTreeCtrl *updates_tree;
56
57         wxChoice *mirrors_choice;
58
59         wxString release_type; /* could be "stable", "test", "nightly" ... */
60
61         struct update_file_t
62         {
63             wxString type;
64             wxString md5;
65             wxString size;
66             wxString url;
67             wxString description;
68         };
69
70         struct update_version_t
71         {
72             wxString type;
73             wxString major;
74             wxString minor;
75             wxString revision;
76             wxString extra;
77             std::list<update_file_t> m_files;
78         };
79
80         std::list<update_version_t> m_versions;
81
82         struct update_mirror_t
83         {
84             wxString name;
85             wxString location;
86             wxString type;
87             wxString base_url;
88         };
89
90         std::list<update_mirror_t> m_mirrors;
91     };
92 };
93
94 #endif