1 /*****************************************************************************
2 * subtitles.cpp : WinCE gui plugin for VLC
3 *****************************************************************************
4 * Copyright (C) 2000-2001 the VideoLAN team
7 * Authors: Marodon Cedric <cedric_marodon@yahoo.fr>
8 * Gildas Bazin <gbazin@videolan.org>
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23 *****************************************************************************/
25 /*****************************************************************************
27 *****************************************************************************/
29 #include <vlc_interface.h>
39 /*****************************************************************************
41 *****************************************************************************/
43 /*****************************************************************************
45 *****************************************************************************/
46 SubsFileDialog::SubsFileDialog( intf_thread_t *p_intf, CBaseWindow *p_parent,
48 : CBaseWindow( p_intf, p_parent, h_inst )
52 /***********************************************************************
58 Processes messages sent to the main window.
60 ***********************************************************************/
61 LRESULT SubsFileDialog::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp )
65 INITCOMMONCONTROLSEX ic;
69 module_config_t *p_item;
78 shidi.dwMask = SHIDIM_FLAGS;
79 shidi.dwFlags = SHIDIF_DONEBUTTON | SHIDIF_SIPDOWN | SHIDIF_FULLSCREENNOMENUBAR;//SHIDIF_SIZEDLGFULLSCREEN;
81 SHInitDialog( &shidi );
84 memset (&mbi, 0, sizeof (SHMENUBARINFO));
85 mbi.cbSize = sizeof (SHMENUBARINFO);
86 mbi.hwndParent = hwnd;
87 mbi.dwFlags = SHCMBF_EMPTYBAR;
90 if (!SHCreateMenuBar(&mbi))
92 MessageBox(hwnd, _T("SHCreateMenuBar Failed"), _T("Error"), MB_OK);
98 // Get the client area rect to put the panels in
99 GetClientRect(hwnd, &rcClient);
101 /* Create the subtitles file textctrl */
102 file_box = CreateWindow( _T("STATIC"), _T("Subtitles file"),
103 WS_CHILD | WS_VISIBLE | SS_LEFT,
104 5, 10, rcClient.right - 2*5, 15,
105 hwnd, NULL, hInst, NULL );
107 psz_subsfile = config_GetPsz( p_intf, "sub-file" );
108 if( !psz_subsfile ) psz_subsfile = strdup("");
110 file_combo = CreateWindow( _T("COMBOBOX"), _FROMMB(psz_subsfile),
111 WS_CHILD | WS_VISIBLE | CBS_AUTOHSCROLL | CBS_SORT | WS_VSCROLL,
112 10, 10 + 15 + 10 - 3, rcClient.right - 2*10, 5*15 + 6,
113 hwnd, NULL, hInst, NULL );
115 if( psz_subsfile ) free( psz_subsfile );
117 browse_button = CreateWindow( _T("BUTTON"), _T("Browse..."),
118 WS_CHILD | WS_VISIBLE | BS_PUSHBUTTON,
119 10, 10 + 2*(15 + 10) - 3, 80, 15 + 6,
120 hwnd, NULL, hInst, NULL);
122 /* Subtitles encoding */
123 encoding_combo = NULL;
124 p_item = config_FindConfig( VLC_OBJECT(p_intf), "subsdec-encoding" );
127 enc_box = CreateWindow( _T("STATIC"), _T("Subtitles encoding"),
128 WS_CHILD | WS_VISIBLE | SS_LEFT,
129 5, 10 + 3*(15 + 10), rcClient.right - 2*5, 15,
130 hwnd, NULL, hInst, NULL );
132 enc_label = CreateWindow( _T("STATIC"), _FROMMB(p_item->psz_text),
133 WS_CHILD | WS_VISIBLE | SS_LEFT,
134 10, 10 + 4*(15 + 10), rcClient.right - 2*10, 15,
135 hwnd, NULL, hInst, NULL );
137 encoding_combo = CreateWindow( _T("COMBOBOX"),
138 _FROMMB(p_item->psz_value),
139 WS_CHILD | WS_VISIBLE | CBS_AUTOHSCROLL | CBS_DROPDOWNLIST |
140 LBS_SORT | WS_VSCROLL,
141 rcClient.right - 150 - 10, 10 + 5*(15 + 10) - 3, 150, 5*15 + 6,
142 hwnd, NULL, hInst, NULL );
144 /* build a list of available options */
145 for( int i_index = 0; p_item->ppsz_list &&
146 p_item->ppsz_list[i_index]; i_index++ )
148 ComboBox_AddString( encoding_combo,
149 _FROMMB(p_item->ppsz_list[i_index]) );
151 if( p_item->psz_value &&
152 !strcmp( p_item->psz_value, p_item->ppsz_list[i_index] ) )
153 ComboBox_SetCurSel( encoding_combo, i_index );
156 if( p_item->psz_value )
158 ComboBox_SelectString( encoding_combo, 0,
159 _FROMMB(p_item->psz_value) );
164 /* Misc Subtitles options */
165 misc_box = CreateWindow( _T("STATIC"), _T("Subtitles options"),
166 WS_CHILD | WS_VISIBLE | SS_LEFT,
167 5, 10 + 6*(15 + 10), rcClient.right - 2*5, 15,
168 hwnd, NULL, hInst, NULL );
170 delay_label = CreateWindow( _T("STATIC"),
171 _T("Delay subtitles (in 1/10s)"),
172 WS_CHILD | WS_VISIBLE | SS_LEFT,
173 10, 10 + 7*(15 + 10), rcClient.right - 70 - 2*10, 15,
174 hwnd, NULL, hInst, NULL );
176 i_delay = config_GetInt( p_intf, "sub-delay" );
177 _stprintf( psz_text, _T("%d"), i_delay );
179 delay_edit = CreateWindow( _T("EDIT"), psz_text,
180 WS_CHILD | WS_VISIBLE | WS_BORDER | SS_LEFT | ES_AUTOHSCROLL,
181 rcClient.right - 70 - 10, 10 + 7*(15 + 10) - 3, 70, 15 + 6,
182 hwnd, NULL, hInst, NULL );
184 ic.dwSize = sizeof(INITCOMMONCONTROLSEX);
185 ic.dwICC = ICC_UPDOWN_CLASS;
186 InitCommonControlsEx(&ic);
189 CreateUpDownControl( WS_CHILD | WS_VISIBLE | WS_BORDER |
190 UDS_ALIGNRIGHT | UDS_SETBUDDYINT | UDS_NOTHOUSANDS,
191 0, 0, 0, 0, hwnd, 0, hInst,
192 delay_edit, 650000, -650000, i_delay );
194 fps_label = CreateWindow( _T("STATIC"), _T("Frames per second"),
195 WS_CHILD | WS_VISIBLE | SS_LEFT,
196 10, 10 + 8*(15 + 10), rcClient.right - 70 - 2*10, 15,
197 hwnd, NULL, hInst, NULL );
199 f_fps = config_GetFloat( p_intf, "sub-fps" );
200 _stprintf( psz_text, _T("%f"), f_fps );
202 fps_edit = CreateWindow( _T("EDIT"), psz_text,
203 WS_CHILD | WS_VISIBLE | WS_BORDER | SS_LEFT | ES_AUTOHSCROLL,
204 rcClient.right - 70 - 10, 10 + 8*(15 + 10) - 3, 70, 15 + 6,
205 hwnd, NULL, hInst, NULL);
207 ic.dwSize = sizeof(INITCOMMONCONTROLSEX);
208 ic.dwICC = ICC_UPDOWN_CLASS;
209 InitCommonControlsEx(&ic);
211 fps_spinctrl = CreateUpDownControl(
212 WS_CHILD | WS_VISIBLE | WS_BORDER | UDS_ALIGNRIGHT |
213 UDS_SETBUDDYINT | UDS_NOTHOUSANDS,
214 0, 0, 0, 0, hwnd, 0, hInst, fps_edit, 16000, 0, (int)f_fps );
219 EndDialog( hwnd, LOWORD( wp ) );
223 SHFullScreen( hwnd, SHFS_SHOWSIPBUTTON );
227 if ( LOWORD(wp) == IDOK )
229 subsfile_mrl.clear();
231 string szFileCombo = "sub-file=";
232 GetWindowText( file_combo, psz_text, 256 );
233 szFileCombo += _TOMB(psz_text);
234 subsfile_mrl.push_back( szFileCombo );
236 if( GetWindowTextLength( encoding_combo ) != 0 )
238 string szEncoding = "subsdec-encoding=";
239 GetWindowText( encoding_combo, psz_text, 256 );
240 szEncoding += _TOMB(psz_text);
241 subsfile_mrl.push_back( szEncoding );
244 string szDelay = "sub-delay=";
245 Edit_GetText( delay_edit, psz_text, 256 );
246 szDelay += _TOMB(psz_text);
247 subsfile_mrl.push_back( szDelay );
249 string szFps = "sub-fps=";
250 Edit_GetText( fps_edit, psz_text, 256 );
251 szFps += _TOMB(psz_text);
252 subsfile_mrl.push_back( szFps );
254 EndDialog( hwnd, LOWORD( wp ) );
257 if( HIWORD(wp) == BN_CLICKED )
259 if ((HWND)lp == browse_button)
261 SHFullScreen( GetForegroundWindow(), SHFS_HIDESIPBUTTON );
274 /*****************************************************************************
276 *****************************************************************************/
278 /*****************************************************************************
280 *****************************************************************************/
281 static void OnOpenCB( intf_dialog_args_t *p_arg )
283 SubsFileDialog *p_this = (SubsFileDialog *)p_arg->p_arg;
285 if( p_arg->i_results && p_arg->psz_results[0] )
287 SetWindowText( p_this->file_combo, _FROMMB(p_arg->psz_results[0]) );
288 ComboBox_AddString( p_this->file_combo,
289 _FROMMB(p_arg->psz_results[0]) );
290 if( ComboBox_GetCount( p_this->file_combo ) > 10 )
291 ComboBox_DeleteString( p_this->file_combo, 0 );
295 void SubsFileDialog::OnFileBrowse()
297 intf_dialog_args_t *p_arg =
298 (intf_dialog_args_t *)malloc( sizeof(intf_dialog_args_t) );
299 memset( p_arg, 0, sizeof(intf_dialog_args_t) );
301 p_arg->psz_title = strdup( "Open file" );
302 p_arg->psz_extensions = strdup( "All|*.*" );
304 p_arg->pf_callback = OnOpenCB;
306 p_intf->p_sys->pf_show_dialog( p_intf, INTF_DIALOG_FILE_GENERIC, 0, p_arg);