]> git.sesse.net Git - vlc/blob - modules/gui/wxwidgets/dialogs/updatevlc.cpp
Revert [14732]
[vlc] / modules / gui / wxwidgets / dialogs / updatevlc.cpp
1 /*****************************************************************************
2  * updatevlc.cpp : VLC Update checker
3  *****************************************************************************
4  * Copyright (C) 2000-2004 the VideoLAN team
5  * $Id$
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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27 #include "updatevlc.hpp"
28 #include <wx/imaglist.h>
29
30 #include "bitmaps/update_ascii.xpm"
31 #include "bitmaps/update_binary.xpm"
32 #include "bitmaps/update_document.xpm"
33 #include "bitmaps/update_info.xpm"
34 #include "bitmaps/update_source.xpm"
35
36 /*****************************************************************************
37  * Event Table.
38  *****************************************************************************/
39
40 /* IDs for the controls and the menu commands */
41 enum
42 {
43     Close_Event,
44     CheckForUpdate_Event,
45     ChooseItem_Event
46 };
47
48 BEGIN_EVENT_TABLE(UpdateVLC, wxFrame)
49     /* Button events */
50     EVT_BUTTON(wxID_OK, UpdateVLC::OnButtonClose)
51     EVT_BUTTON(CheckForUpdate_Event, UpdateVLC::OnCheckForUpdate)
52
53     /* CtrlList events */
54     EVT_LIST_ITEM_ACTIVATED( ChooseItem_Event, UpdateVLC::OnChooseItem )
55
56     /* Hide the window when the user closes the window */
57     EVT_CLOSE(UpdateVLC::OnClose)
58
59 END_EVENT_TABLE()
60
61 /*****************************************************************************
62  * Constructor.
63  *****************************************************************************/
64 UpdateVLC::UpdateVLC( intf_thread_t *_p_intf, wxWindow *p_parent ):
65     wxFrame( p_parent, -1, wxU(_("VLC media player - Updates")),
66              wxDefaultPosition, wxDefaultSize,
67          wxSYSTEM_MENU|wxCLOSE_BOX|wxFRAME_FLOAT_ON_PARENT|wxFRAME_TOOL_WINDOW)
68 {
69     /* Initializations */
70     p_intf = _p_intf;
71     SetIcon( *p_intf->p_sys->p_icon );
72     SetAutoLayout( TRUE );
73
74     wxBoxSizer *main_sizer = new wxBoxSizer( wxVERTICAL );
75     wxButton *update_button =
76         new wxButton( this, CheckForUpdate_Event,
77                       wxU(_("Check for updates now !")) );
78     main_sizer->Add( update_button );
79     SetSizerAndFit( main_sizer );
80
81     p_u = update_New( p_intf );
82 }
83
84
85 UpdateVLC::~UpdateVLC()
86 {
87     update_Delete( p_u );
88 }
89
90 void UpdateVLC::OnButtonClose( wxCommandEvent& event )
91 {
92     wxCloseEvent cevent;
93     OnClose(cevent);
94 }
95
96 void UpdateVLC::OnClose( wxCloseEvent& WXUNUSED(event) )
97 {
98     Hide();
99 }
100
101 void UpdateVLC::OnCheckForUpdate( wxCommandEvent& event )
102 {
103     update_Check( p_u, VLC_FALSE );
104     update_iterator_t *p_uit = update_iterator_New( p_u );
105     if( p_uit )
106     {
107         wxBoxSizer *main_sizer = new wxBoxSizer( wxVERTICAL );
108
109         p_uit->i_rs = UPDATE_RELEASE_STATUS_NEWER;
110         p_uit->i_t = UPDATE_FILE_TYPE_ALL;
111         update_iterator_Action( p_uit, UPDATE_MIRROR );
112
113         DestroyChildren();
114
115         wxListCtrl *list =
116             new wxListCtrl( this, ChooseItem_Event,
117                             wxDefaultPosition, wxSize( 400, 300 ),
118                             wxLC_AUTOARRANGE|wxLC_SINGLE_SEL );
119         wxImageList *images = new wxImageList( 32, 32, TRUE );
120         images->Add( wxIcon( update_ascii_xpm ) );
121         images->Add( wxIcon( update_info_xpm ) );
122         images->Add( wxIcon( update_source_xpm ) );
123         images->Add( wxIcon( update_binary_xpm ) );
124         images->Add( wxIcon( update_document_xpm ) );
125         list->AssignImageList( images, wxIMAGE_LIST_SMALL );
126         while( update_iterator_Action( p_uit, UPDATE_FILE ) != UPDATE_FAIL )
127         {
128             int i_image;
129             switch( p_uit->file.i_type )
130             {
131                 case UPDATE_FILE_TYPE_INFO:
132                     i_image = 1;
133                     break;
134                 case UPDATE_FILE_TYPE_SOURCE:
135                     i_image = 2;
136                     break;
137                 case UPDATE_FILE_TYPE_BINARY:
138                     i_image = 3;
139                     break;
140                 case UPDATE_FILE_TYPE_PLUGIN:
141                     i_image = 4;
142                     break;
143                 default:
144                     i_image = 0;
145             }
146             list->InsertItem( list->GetItemCount(),
147                               wxU(p_uit->file.psz_description)+wxU("\n")
148                               + wxU(p_uit->release.psz_version)+wxU(" (")
149                               + wxU(p_uit->release.psz_svn_revision)+wxU(")"),
150                               i_image );
151         }
152
153         main_sizer->Add( new wxStaticText( this, -1, wxU( _("\nAvailable updates and related downloads:\n(Double click on a file to download it)\n" ) ) ) );
154         main_sizer->Add( list );
155         SetSizerAndFit( main_sizer );
156         Layout();
157         update_iterator_Delete( p_uit );
158     }
159 }
160
161 void UpdateVLC::OnChooseItem( wxListEvent& event )
162 {
163     update_iterator_t *p_uit = update_iterator_New( p_u );
164     if( p_uit )
165     {
166         p_uit->i_rs = UPDATE_RELEASE_STATUS_NEWER;
167         p_uit->i_t = UPDATE_FILE_TYPE_ALL;
168         update_iterator_Action( p_uit, UPDATE_MIRROR );
169
170         int i_count = 0;
171         while( update_iterator_Action( p_uit, UPDATE_FILE ) != UPDATE_FAIL )
172         {
173             if( i_count == event.GetIndex() )
174                 break;
175             i_count++;
176         }
177         wxString url = wxU( p_uit->file.psz_url );
178         wxFileDialog *filedialog =
179                     new wxFileDialog( this, wxU(_("Save file...")),
180                         wxT(""), url.AfterLast( '/' ), wxT("*.*"),
181                         wxSAVE | wxOVERWRITE_PROMPT );
182         if( filedialog->ShowModal() == wxID_OK )
183         {
184             update_download( p_uit, filedialog->GetPath().mb_str() );
185         }
186         update_iterator_Delete( p_uit );
187         delete filedialog;
188     }
189 }