]> git.sesse.net Git - vlc/blob - modules/gui/wxwindows/subtitles.cpp
* modules/gui/wxwindows/wxwindows.cpp: don't "play on start" when in dialogs provider...
[vlc] / modules / gui / wxwindows / subtitles.cpp
1 /*****************************************************************************
2  * subtitles.cpp : wxWindows plugin for vlc
3  *****************************************************************************
4  * Copyright (C) 2000-2001 VideoLAN
5  * $Id: subtitles.cpp,v 1.11 2004/02/14 12:36:16 gbazin Exp $
6  *
7  * Authors: Gildas Bazin <gbazin@netcourrier.com>
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 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27 #include <stdlib.h>                                      /* malloc(), free() */
28 #include <errno.h>                                                 /* ENOMEM */
29 #include <string.h>                                            /* strerror() */
30 #include <stdio.h>
31
32 #include <vlc/vlc.h>
33 #include <vlc/intf.h>
34
35 #include "wxwindows.h"
36 #include <wx/combobox.h>
37 #include <wx/statline.h>
38
39 #ifndef wxRB_SINGLE
40 #   define wxRB_SINGLE 0
41 #endif
42
43 /*****************************************************************************
44  * Event Table.
45  *****************************************************************************/
46
47 /* IDs for the controls and the menu commands */
48 enum
49 {
50     FileBrowse_Event = wxID_HIGHEST,
51 };
52
53 BEGIN_EVENT_TABLE(SubsFileDialog, wxDialog)
54     /* Button events */
55     EVT_BUTTON(wxID_OK, SubsFileDialog::OnOk)
56     EVT_BUTTON(wxID_CANCEL, SubsFileDialog::OnCancel)
57     EVT_BUTTON(FileBrowse_Event, SubsFileDialog::OnFileBrowse)
58
59 END_EVENT_TABLE()
60
61 /*****************************************************************************
62  * Constructor.
63  *****************************************************************************/
64 SubsFileDialog::SubsFileDialog( intf_thread_t *_p_intf, wxWindow* _p_parent ):
65     wxDialog( _p_parent, -1, wxU(_("Subtitle options")),
66               wxDefaultPosition, wxDefaultSize, wxDEFAULT_FRAME_STYLE )
67 {
68     /* Initializations */
69     p_intf = _p_intf;
70     p_parent = _p_parent;
71     SetIcon( *p_intf->p_sys->p_icon );
72
73     /* Create a panel to put everything in */
74     wxPanel *panel = new wxPanel( this, -1 );
75     panel->SetAutoLayout( TRUE );
76     wxBoxSizer *main_sizer = new wxBoxSizer( wxVERTICAL );
77     wxBoxSizer *panel_sizer = new wxBoxSizer( wxVERTICAL );
78
79     /* Create the subtitles file textctrl */
80     wxBoxSizer *file_sizer_sizer = new wxBoxSizer( wxHORIZONTAL );
81     wxStaticBox *file_box = new wxStaticBox( panel, -1,
82                                              wxU(_("Subtitles file")) );
83     wxStaticBoxSizer *file_sizer = new wxStaticBoxSizer( file_box,
84                                                         wxHORIZONTAL );
85     char *psz_subsfile = config_GetPsz( p_intf, "sub-file" );
86     if( !psz_subsfile ) psz_subsfile = strdup("");
87     file_combo = new wxComboBox( panel, -1, wxL2U(psz_subsfile),
88                                  wxPoint(20,25), wxSize(300, -1), 0, NULL );
89     if( psz_subsfile ) free( psz_subsfile );
90     wxButton *browse_button = new wxButton( panel, FileBrowse_Event,
91                                             wxU(_("Browse...")) );
92     file_sizer->Add( file_combo, 1, wxALL, 5 );
93     file_sizer->Add( browse_button, 0, wxALL, 5 );
94     file_sizer_sizer->Add( file_sizer, 1, wxEXPAND | wxALL, 5 );
95     panel_sizer->Add( file_sizer, 0, wxEXPAND | wxALL, 5 );
96
97     /* Subtitles encoding */
98     encoding_combo = NULL;
99     module_config_t *p_item =
100         config_FindConfig( VLC_OBJECT(p_intf), "subsdec-encoding" );
101     if( p_item )
102     {
103         wxBoxSizer *enc_sizer_sizer = new wxBoxSizer( wxHORIZONTAL );
104         wxStaticBox *enc_box = new wxStaticBox( panel, -1,
105                                                 wxU(_("Subtitles encoding")) );
106         wxStaticBoxSizer *enc_sizer = new wxStaticBoxSizer( enc_box,
107                                                             wxHORIZONTAL );
108         wxStaticText *label =
109             new wxStaticText(panel, -1, wxU(p_item->psz_text));
110         encoding_combo = new wxComboBox( panel, -1, wxU(p_item->psz_value),
111                                          wxDefaultPosition, wxDefaultSize,
112                                          0, NULL, wxCB_READONLY );
113
114         /* build a list of available options */
115         for( int i_index = 0; p_item->ppsz_list && p_item->ppsz_list[i_index];
116              i_index++ )
117         {
118             encoding_combo->Append( wxU(p_item->ppsz_list[i_index]) );
119             if( p_item->psz_value && !strcmp( p_item->psz_value,
120                                               p_item->ppsz_list[i_index] ) )
121                 encoding_combo->SetSelection( i_index );
122         }
123
124         if( p_item->psz_value )
125         encoding_combo->SetValue( wxU(p_item->psz_value) );
126         encoding_combo->SetToolTip( wxU(p_item->psz_longtext) );
127
128         enc_sizer->Add( label, 0, wxALL, 5 );
129         enc_sizer->Add( encoding_combo, 0, wxALL, 5 );
130         enc_sizer_sizer->Add( enc_sizer, 1, wxEXPAND | wxALL, 5 );
131         panel_sizer->Add( enc_sizer, 0, wxEXPAND | wxALL, 5 );
132     }
133
134     /* Misc Subtitles options */
135     wxBoxSizer *misc_sizer_sizer = new wxBoxSizer( wxHORIZONTAL );
136     wxStaticBox *misc_box = new wxStaticBox( panel, -1,
137                                              wxU(_("Subtitles options")) );
138     wxStaticBoxSizer *misc_sizer = new wxStaticBoxSizer( misc_box,
139                                                          wxHORIZONTAL );
140     wxStaticText *label =
141         new wxStaticText(panel, -1, wxU(_("Delay subtitles (in 1/10s)")));
142     int i_delay = config_GetInt( p_intf, "sub-delay" );
143     /* Outside the new wxSpinCtrl to avoid an internal error in gcc2.95 ! */
144     wxString format_delay(wxString::Format(wxT("%d"), i_delay));
145     delay_spinctrl = new wxSpinCtrl( panel, -1, format_delay,
146                                      wxDefaultPosition, wxDefaultSize,
147                                      wxSP_ARROW_KEYS,
148                                      -650000, 650000, i_delay );
149
150     misc_sizer->Add( label, 0, wxALL, 5 );
151     misc_sizer->Add( delay_spinctrl, 0, wxALL, 5 );
152
153     label = new wxStaticText(panel, -1, wxU(_("Frames per second")));
154
155     float f_fps = config_GetFloat( p_intf, "sub-fps" );
156     /* Outside the new wxSpinCtrl to avoid an internal error in gcc2.95 ! */
157     wxString format_fps(wxString::Format(wxT("%d"),(int)f_fps));
158     fps_spinctrl = new wxSpinCtrl( panel, -1, format_fps,
159                                    wxDefaultPosition, wxDefaultSize,
160                                    wxSP_ARROW_KEYS,
161                                    0, 16000, (int)f_fps );
162     fps_spinctrl->SetToolTip( wxU(_("Override frames per second. "
163                               "It will only work with MicroDVD subtitles.")) );
164     misc_sizer->Add( label, 0, wxALL, 5 );
165     misc_sizer->Add( fps_spinctrl, 0, wxALL, 5 );
166
167     misc_sizer_sizer->Add( misc_sizer, 1, wxEXPAND | wxALL, 5 );
168     panel_sizer->Add( misc_sizer, 0, wxEXPAND | wxALL, 5 );
169
170     /* Separation */
171     wxStaticLine *static_line = new wxStaticLine( panel, wxID_OK );
172
173     /* Create the buttons */
174     wxButton *ok_button = new wxButton( panel, wxID_OK, wxU(_("OK")) );
175     ok_button->SetDefault();
176     wxButton *cancel_button = new wxButton( panel, wxID_CANCEL,
177                                             wxU(_("Cancel")) );
178
179     /* Place everything in sizers */
180     wxBoxSizer *button_sizer = new wxBoxSizer( wxHORIZONTAL );
181     button_sizer->Add( ok_button, 0, wxALL, 5 );
182     button_sizer->Add( cancel_button, 0, wxALL, 5 );
183     button_sizer->Layout();
184
185     panel_sizer->Add( static_line, 0, wxEXPAND | wxALL, 5 );
186     panel_sizer->Add( button_sizer, 0, wxALIGN_LEFT | wxALIGN_BOTTOM |
187                       wxALL, 5 );
188     panel_sizer->Layout();
189     panel->SetSizerAndFit( panel_sizer );
190     main_sizer->Add( panel, 1, wxGROW, 0 );
191     main_sizer->Layout();
192     SetSizerAndFit( main_sizer );
193 }
194
195 SubsFileDialog::~SubsFileDialog()
196 {
197 }
198
199 /*****************************************************************************
200  * Private methods.
201  *****************************************************************************/
202
203 /*****************************************************************************
204  * Events methods.
205  *****************************************************************************/
206 void SubsFileDialog::OnOk( wxCommandEvent& WXUNUSED(event) )
207 {
208     EndModal( wxID_OK );
209 }
210
211 void SubsFileDialog::OnCancel( wxCommandEvent& WXUNUSED(event) )
212 {
213     EndModal( wxID_CANCEL );
214 }
215
216 void SubsFileDialog::OnFileBrowse( wxCommandEvent& WXUNUSED(event) )
217 {
218     wxFileDialog dialog( this, wxU(_("Open file")),
219                          wxT(""), wxT(""), wxT("*"), wxOPEN );
220
221     if( dialog.ShowModal() == wxID_OK )
222     {
223         file_combo->SetValue( dialog.GetPath() );
224     }
225 }