Commit 9abc1276 authored by Gildas Bazin's avatar Gildas Bazin

* modules/gui/wince: cleanup + ported to win32 (but not tried yet ;).

parent 78d2cf9c
...@@ -162,7 +162,7 @@ void FileInfo::UpdateFileInfo(HWND hwnd) ...@@ -162,7 +162,7 @@ void FileInfo::UpdateFileInfo(HWND hwnd)
string szAnsi = (string)p_info->psz_name; string szAnsi = (string)p_info->psz_name;
szAnsi += ": "; szAnsi += ": ";
szAnsi += p_info->psz_value; szAnsi += p_info->psz_value;
tvi.pszText = _FROMMB( szAnsi.c_str() ); tvi.pszText = (TCHAR *)_FROMMB( szAnsi.c_str() );
tvi.cchTextMax = _tcslen( tvi.pszText ); tvi.cchTextMax = _tcslen( tvi.pszText );
tvi.lParam = (LPARAM)3; // level 3 tvi.lParam = (LPARAM)3; // level 3
tvins.item = tvi; tvins.item = tvi;
......
...@@ -81,19 +81,19 @@ ...@@ -81,19 +81,19 @@
// The TBBUTTON structure contains information the toolbar buttons. // The TBBUTTON structure contains information the toolbar buttons.
static TBBUTTON tbButton[] = static TBBUTTON tbButton[] =
{ {
{0, ID_FILE_QUICKOPEN, TBSTATE_ENABLED, TBSTYLE_BUTTON, 0, -1}, {0, ID_FILE_QUICKOPEN, TBSTATE_ENABLED, TBSTYLE_BUTTON},
{1, ID_FILE_OPENNET, TBSTATE_ENABLED, TBSTYLE_BUTTON, 0, -1}, {1, ID_FILE_OPENNET, TBSTATE_ENABLED, TBSTYLE_BUTTON},
{0, 0, TBSTATE_ENABLED, TBSTYLE_SEP, 0, -1}, {0, 0, TBSTATE_ENABLED, TBSTYLE_SEP},
{2, StopStream_Event, TBSTATE_ENABLED, TBSTYLE_BUTTON, 0, -1}, {2, StopStream_Event, TBSTATE_ENABLED, TBSTYLE_BUTTON},
{3, PlayStream_Event, TBSTATE_ENABLED, TBSTYLE_BUTTON, 0, -1}, {3, PlayStream_Event, TBSTATE_ENABLED, TBSTYLE_BUTTON},
{0, 0, TBSTATE_ENABLED, TBSTYLE_SEP, 0, -1}, {0, 0, TBSTATE_ENABLED, TBSTYLE_SEP},
{4, ID_VIEW_PLAYLIST, TBSTATE_ENABLED, TBSTYLE_BUTTON, 0, -1}, {4, ID_VIEW_PLAYLIST, TBSTATE_ENABLED, TBSTYLE_BUTTON},
{0, 0, TBSTATE_ENABLED, TBSTYLE_SEP, 0, -1}, {0, 0, TBSTATE_ENABLED, TBSTYLE_SEP},
{5, PrevStream_Event, TBSTATE_ENABLED, TBSTYLE_BUTTON, 0, -1}, {5, PrevStream_Event, TBSTATE_ENABLED, TBSTYLE_BUTTON},
{6, NextStream_Event, TBSTATE_ENABLED, TBSTYLE_BUTTON, 0, -1}, {6, NextStream_Event, TBSTATE_ENABLED, TBSTYLE_BUTTON},
{0, 0, TBSTATE_ENABLED, TBSTYLE_SEP, 0, -1}, {0, 0, TBSTATE_ENABLED, TBSTYLE_SEP},
{7, SlowStream_Event, TBSTATE_ENABLED, TBSTYLE_BUTTON, 0, -1}, {7, SlowStream_Event, TBSTATE_ENABLED, TBSTYLE_BUTTON},
{8, FastStream_Event, TBSTATE_ENABLED, TBSTYLE_BUTTON, 0, -1}, {8, FastStream_Event, TBSTATE_ENABLED, TBSTYLE_BUTTON},
}; };
// Toolbar ToolTips // Toolbar ToolTips
...@@ -169,7 +169,7 @@ HWND WINAPI Interface::CreateToolbar( HWND hwnd ) ...@@ -169,7 +169,7 @@ HWND WINAPI Interface::CreateToolbar( HWND hwnd )
dwStyle = WS_VISIBLE | WS_CHILD | TBSTYLE_TOOLTIPS | dwStyle = WS_VISIBLE | WS_CHILD | TBSTYLE_TOOLTIPS |
WS_EX_OVERLAPPEDWINDOW | CCS_NOPARENTALIGN; WS_EX_OVERLAPPEDWINDOW | CCS_NOPARENTALIGN;
hwndTB = CreateToolbarEx( hwnd, dwStyle, NULL, NUMIMAGES, hwndTB = CreateToolbarEx( hwnd, dwStyle, 0, NUMIMAGES,
hInst, IDB_BITMAP1, tbButton, sizeof(tbButton) / sizeof(TBBUTTON), hInst, IDB_BITMAP1, tbButton, sizeof(tbButton) / sizeof(TBBUTTON),
BUTTONWIDTH, BUTTONHEIGHT, IMAGEWIDTH, IMAGEHEIGHT, sizeof(TBBUTTON) ); BUTTONWIDTH, BUTTONHEIGHT, IMAGEWIDTH, IMAGEHEIGHT, sizeof(TBBUTTON) );
...@@ -209,7 +209,7 @@ HWND WINAPI Interface::CreateSliderbar( HWND hwnd ) ...@@ -209,7 +209,7 @@ HWND WINAPI Interface::CreateSliderbar( HWND hwnd )
// Registers TRACKBAR_CLASS control classes from the common control dll // Registers TRACKBAR_CLASS control classes from the common control dll
InitCommonControlsEx( &iccex ); InitCommonControlsEx( &iccex );
hwndSlider = CreateWindowEx( NULL, TRACKBAR_CLASS, NULL, hwndSlider = CreateWindowEx( 0, TRACKBAR_CLASS, NULL,
WS_CHILD | WS_VISIBLE | TBS_HORZ | WS_EX_OVERLAPPEDWINDOW | WS_CHILD | WS_VISIBLE | TBS_HORZ | WS_EX_OVERLAPPEDWINDOW |
TBS_BOTTOM, //|WS_CLIPSIBLINGS, TBS_BOTTOM, //|WS_CLIPSIBLINGS,
0, 0, 0, 0, hwnd, NULL, hInst, NULL ); 0, 0, 0, 0, hwnd, NULL, hInst, NULL );
...@@ -274,7 +274,7 @@ HWND WINAPI Interface::CreateVolTrackbar( HWND hwnd ) ...@@ -274,7 +274,7 @@ HWND WINAPI Interface::CreateVolTrackbar( HWND hwnd )
// Registers TRACKBAR_CLASS control classes from the common control dll // Registers TRACKBAR_CLASS control classes from the common control dll
InitCommonControlsEx( &iccex ); InitCommonControlsEx( &iccex );
hwndVol = CreateWindowEx( NULL, TRACKBAR_CLASS, NULL, hwndVol = CreateWindowEx( 0, TRACKBAR_CLASS, NULL,
WS_CHILD | WS_VISIBLE | TBS_VERT | TBS_RIGHT | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | TBS_VERT | TBS_RIGHT | TBS_AUTOTICKS |
WS_EX_OVERLAPPEDWINDOW, //|WS_CLIPSIBLINGS, WS_EX_OVERLAPPEDWINDOW, //|WS_CLIPSIBLINGS,
0, 0, 0, 0, hwnd, NULL, hInst, NULL ); 0, 0, 0, 0, hwnd, NULL, hInst, NULL );
...@@ -322,7 +322,7 @@ HWND WINAPI Interface::CreateStatusbar( HWND hwnd ) ...@@ -322,7 +322,7 @@ HWND WINAPI Interface::CreateStatusbar( HWND hwnd )
// Create the statusbar control // Create the statusbar control
dwStyle = WS_VISIBLE | WS_CHILD | TBSTYLE_TOOLTIPS | CCS_NOPARENTALIGN; dwStyle = WS_VISIBLE | WS_CHILD | TBSTYLE_TOOLTIPS | CCS_NOPARENTALIGN;
hwndSB = CreateWindowEx( NULL, STATUSCLASSNAME, NULL, hwndSB = CreateWindowEx( 0, STATUSCLASSNAME, NULL,
WS_CHILD | WS_VISIBLE | TBS_VERT | TBS_BOTTOM | WS_CHILD | WS_VISIBLE | TBS_VERT | TBS_BOTTOM |
TBS_RIGHT |WS_CLIPSIBLINGS, TBS_RIGHT |WS_CLIPSIBLINGS,
0, 0, CW_USEDEFAULT, 50, hwnd, NULL, hInst, 0 ); 0, 0, CW_USEDEFAULT, 50, hwnd, NULL, hInst, 0 );
...@@ -416,7 +416,6 @@ LRESULT CALLBACK Interface::WndProc( HWND hwnd, UINT msg, WPARAM wp, ...@@ -416,7 +416,6 @@ LRESULT CALLBACK Interface::WndProc( HWND hwnd, UINT msg, WPARAM wp,
// call the base class first // call the base class first
LRESULT lResult = CBaseWindow::WndProc( hwnd, msg, wp, lp, pbProcessed ); LRESULT lResult = CBaseWindow::WndProc( hwnd, msg, wp, lp, pbProcessed );
BOOL bWasProcessed = *pbProcessed;
*pbProcessed = TRUE; *pbProcessed = TRUE;
switch( msg ) switch( msg )
...@@ -433,7 +432,7 @@ LRESULT CALLBACK Interface::WndProc( HWND hwnd, UINT msg, WPARAM wp, ...@@ -433,7 +432,7 @@ LRESULT CALLBACK Interface::WndProc( HWND hwnd, UINT msg, WPARAM wp,
if( !SHCreateMenuBar(&mbi) ) if( !SHCreateMenuBar(&mbi) )
{ {
MessageBox(hwnd, L"SHCreateMenuBar Failed", L"Error", MB_OK); MessageBox(hwnd, _T("SHCreateMenuBar Failed"), _T("Error"), MB_OK);
//return -1; //return -1;
} }
...@@ -674,7 +673,7 @@ void Interface::OnOpenFileSimple( void ) ...@@ -674,7 +673,7 @@ void Interface::OnOpenFileSimple( void )
ofn.nMaxFileTitle = 40; ofn.nMaxFileTitle = 40;
ofn.lpstrInitialDir = NULL; ofn.lpstrInitialDir = NULL;
ofn.lpstrTitle = _T("Quick Open File"); ofn.lpstrTitle = _T("Quick Open File");
ofn.Flags = NULL; ofn.Flags = 0;
ofn.nFileOffset = 0; ofn.nFileOffset = 0;
ofn.nFileExtension = 0; ofn.nFileExtension = 0;
ofn.lpstrDefExt = NULL; ofn.lpstrDefExt = NULL;
...@@ -795,7 +794,7 @@ void Interface::OnSliderUpdate( int wp ) ...@@ -795,7 +794,7 @@ void Interface::OnSliderUpdate( int wp )
vlc_mutex_lock( &pIntf->change_lock ); vlc_mutex_lock( &pIntf->change_lock );
input_thread_t *p_input = pIntf->p_sys->p_input; input_thread_t *p_input = pIntf->p_sys->p_input;
DWORD dwPos = SendMessage( hwndSlider, TBM_GETPOS, 0, 0 ); int dwPos = SendMessage( hwndSlider, TBM_GETPOS, 0, 0 );
if( (int)LOWORD(wp) == SB_THUMBPOSITION || if( (int)LOWORD(wp) == SB_THUMBPOSITION ||
(int)LOWORD(wp) == SB_ENDSCROLL ) (int)LOWORD(wp) == SB_ENDSCROLL )
......
...@@ -97,7 +97,7 @@ LRESULT ItemInfoDialog::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp, ...@@ -97,7 +97,7 @@ LRESULT ItemInfoDialog::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp,
if( !SHCreateMenuBar(&mbi) ) if( !SHCreateMenuBar(&mbi) )
{ {
MessageBox( hwnd, L"SHCreateMenuBar Failed", L"Error", MB_OK ); MessageBox( hwnd, _T("SHCreateMenuBar Failed"), _T("Error"), MB_OK );
//return -1; //return -1;
} }
...@@ -235,7 +235,7 @@ LRESULT ItemInfoDialog::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp, ...@@ -235,7 +235,7 @@ LRESULT ItemInfoDialog::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp,
string szAnsi = (string)p_info->psz_name; string szAnsi = (string)p_info->psz_name;
szAnsi += ": "; szAnsi += ": ";
szAnsi += p_info->psz_value; szAnsi += p_info->psz_value;
tvi.pszText = _FROMMB( szAnsi.c_str() ); tvi.pszText = (TCHAR *)_FROMMB( szAnsi.c_str() );
tvi.cchTextMax = _tcslen( tvi.pszText ); tvi.cchTextMax = _tcslen( tvi.pszText );
tvi.lParam = (LPARAM)3; // level 3 tvi.lParam = (LPARAM)3; // level 3
tvins.item = tvi; tvins.item = tvi;
...@@ -259,7 +259,7 @@ LRESULT ItemInfoDialog::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp, ...@@ -259,7 +259,7 @@ LRESULT ItemInfoDialog::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp,
*****************************************************************************/ *****************************************************************************/
void ItemInfoDialog::OnOk() void ItemInfoDialog::OnOk()
{ {
int b_state, i_item; int b_state = VLC_FALSE;
vlc_mutex_lock( &p_item->input.lock ); vlc_mutex_lock( &p_item->input.lock );
......
...@@ -78,8 +78,6 @@ LRESULT Messages::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp, ...@@ -78,8 +78,6 @@ LRESULT Messages::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp,
OPENFILENAME ofn; OPENFILENAME ofn;
int i_dummy; int i_dummy;
HANDLE fichier; HANDLE fichier;
int nList=0;
LRESULT lResult = CBaseWindow::WndProc( hwnd, msg, wp, lp, pbProcessed ); LRESULT lResult = CBaseWindow::WndProc( hwnd, msg, wp, lp, pbProcessed );
BOOL bWasProcessed = *pbProcessed; BOOL bWasProcessed = *pbProcessed;
...@@ -240,7 +238,7 @@ void Messages::UpdateLog() ...@@ -240,7 +238,7 @@ void Messages::UpdateLog()
lv.iItem = ListView_GetItemCount( hListView ); lv.iItem = ListView_GetItemCount( hListView );
ListView_InsertItem( hListView, &lv ); ListView_InsertItem( hListView, &lv );
ListView_SetItemText( hListView, lv.iItem, 0, ListView_SetItemText( hListView, lv.iItem, 0,
_FROMMB(debug.c_str()) ); (TCHAR *)_FROMMB(debug.c_str()) );
} }
vlc_mutex_lock( p_sub->p_lock ); vlc_mutex_lock( p_sub->p_lock );
......
...@@ -340,11 +340,11 @@ void OpenDialog::FilePanel( HWND hwnd ) ...@@ -340,11 +340,11 @@ void OpenDialog::FilePanel( HWND hwnd )
void OpenDialog::NetPanel( HWND hwnd ) void OpenDialog::NetPanel( HWND hwnd )
{ {
INITCOMMONCONTROLSEX ic; INITCOMMONCONTROLSEX ic;
LPWSTR wUnicode; TCHAR psz_text[256];
struct net_type struct net_type
{ {
LPWSTR szAnsi; TCHAR *psz_text;
int length; int length;
}; };
...@@ -360,30 +360,27 @@ void OpenDialog::NetPanel( HWND hwnd ) ...@@ -360,30 +360,27 @@ void OpenDialog::NetPanel( HWND hwnd )
GetWindowRect( notebook, &rc); GetWindowRect( notebook, &rc);
/* UDP/RTP row */ /* UDP/RTP row */
net_radios[0] = CreateWindow( _T("BUTTON"), net_type_array[0].szAnsi, net_radios[0] = CreateWindow( _T("BUTTON"), net_type_array[0].psz_text,
WS_CHILD | WS_VISIBLE | BS_AUTORADIOBUTTON, WS_CHILD | WS_VISIBLE | BS_AUTORADIOBUTTON,
rc.left + 5, rc.top + 10, 15, 15, rc.left + 5, rc.top + 10, 15, 15, hwnd, NULL, hInst, NULL );
hwnd, NULL, hInst, NULL);
net_label[0] = CreateWindow( _T("STATIC"), net_type_array[0].szAnsi, net_label[0] = CreateWindow( _T("STATIC"), net_type_array[0].psz_text,
WS_CHILD | WS_VISIBLE | SS_LEFT, WS_CHILD | WS_VISIBLE | SS_LEFT,
rc.left + 5 + 15 + 5, rc.top + 10, net_type_array[0].length, 15, rc.left + 5 + 15 + 5, rc.top + 10, net_type_array[0].length,
hwnd, NULL, hInst, NULL); 15, hwnd, NULL, hInst, NULL );
i_net_ports[0] = config_GetInt( p_intf, "server-port" ); i_net_ports[0] = config_GetInt( p_intf, "server-port" );
net_port_label[0] = CreateWindow( _T("STATIC"), _T("Port"), net_port_label[0] = CreateWindow( _T("STATIC"), _T("Port"),
WS_CHILD | WS_VISIBLE | SS_LEFT, WS_CHILD | WS_VISIBLE | SS_LEFT,
rc.left + 5 , rc.top + 10 + 2*(15 + 10), 30, 15, rc.left + 5 , rc.top + 10 + 2*(15 + 10), 30, 15,
hwnd, NULL, hInst, NULL); hwnd, NULL, hInst, NULL );
wUnicode = new WCHAR[80]; _stprintf( psz_text, _T("%d"), i_net_ports[0] );
swprintf( wUnicode, _T("%d"), i_net_ports[0] ); net_ports[0] = CreateWindow( _T("EDIT"), psz_text,
net_ports[0] = CreateWindow( _T("EDIT"), wUnicode,
WS_CHILD | WS_VISIBLE | WS_BORDER | SS_LEFT | ES_AUTOHSCROLL, WS_CHILD | WS_VISIBLE | WS_BORDER | SS_LEFT | ES_AUTOHSCROLL,
rc.left + 5 + 30 + 5, rc.top + 10 + 2*(15 + 10) - 3, rc.left + 5 + 30 + 5, rc.top + 10 + 2*(15 + 10) - 3,
rc.right - 5 - (rc.left + 5 + 30 + 5), 15 + 6, hwnd, NULL, hInst, NULL ); rc.right - 5 - (rc.left + 5 + 30 + 5), 15 + 6, hwnd, NULL, hInst, NULL );
free( wUnicode );
ic.dwSize = sizeof(INITCOMMONCONTROLSEX); ic.dwSize = sizeof(INITCOMMONCONTROLSEX);
ic.dwICC = ICC_UPDOWN_CLASS; ic.dwICC = ICC_UPDOWN_CLASS;
...@@ -392,16 +389,16 @@ void OpenDialog::NetPanel( HWND hwnd ) ...@@ -392,16 +389,16 @@ void OpenDialog::NetPanel( HWND hwnd )
hUpdown[0] = CreateUpDownControl( hUpdown[0] = CreateUpDownControl(
WS_CHILD | WS_VISIBLE | WS_BORDER | UDS_ALIGNRIGHT | WS_CHILD | WS_VISIBLE | WS_BORDER | UDS_ALIGNRIGHT |
UDS_SETBUDDYINT | UDS_NOTHOUSANDS, UDS_SETBUDDYINT | UDS_NOTHOUSANDS,
0, 0, 0, 0, hwnd, NULL, hInst, 0, 0, 0, 0, hwnd, 0, hInst,
net_ports[0], 16000, 0, i_net_ports[0]); net_ports[0], 16000, 0, i_net_ports[0]);
/* UDP/RTP Multicast row */ /* UDP/RTP Multicast row */
net_radios[1] = CreateWindow( _T("BUTTON"), net_type_array[1].szAnsi, net_radios[1] = CreateWindow( _T("BUTTON"), net_type_array[1].psz_text,
WS_CHILD | WS_VISIBLE | BS_AUTORADIOBUTTON, WS_CHILD | WS_VISIBLE | BS_AUTORADIOBUTTON,
rc.left + 5, rc.top + 10 + 15 + 10, 15, 15, rc.left + 5, rc.top + 10 + 15 + 10, 15, 15,
hwnd, NULL, hInst, NULL); hwnd, NULL, hInst, NULL);
net_label[1] = CreateWindow( _T("STATIC"), net_type_array[1].szAnsi, net_label[1] = CreateWindow( _T("STATIC"), net_type_array[1].psz_text,
WS_CHILD | WS_VISIBLE | SS_LEFT, WS_CHILD | WS_VISIBLE | SS_LEFT,
rc.left + 5 + 15 + 5, rc.top + 10 + 15 + 10, rc.left + 5 + 15 + 5, rc.top + 10 + 15 + 10,
net_type_array[1].length, 15, hwnd, NULL, hInst, NULL ); net_type_array[1].length, 15, hwnd, NULL, hInst, NULL );
...@@ -424,14 +421,12 @@ void OpenDialog::NetPanel( HWND hwnd ) ...@@ -424,14 +421,12 @@ void OpenDialog::NetPanel( HWND hwnd )
i_net_ports[1] = i_net_ports[0]; i_net_ports[1] = i_net_ports[0];
wUnicode = new WCHAR[80]; _stprintf( psz_text, _T("%d"), i_net_ports[1] );
swprintf( wUnicode, _T("%d"), i_net_ports[1] ); net_ports[1] = CreateWindow( _T("EDIT"), psz_text,
net_ports[1] = CreateWindow( _T("EDIT"), wUnicode,
WS_CHILD | WS_VISIBLE | WS_BORDER | SS_LEFT | ES_AUTOHSCROLL, WS_CHILD | WS_VISIBLE | WS_BORDER | SS_LEFT | ES_AUTOHSCROLL,
rc.left + 5 + 30 + 5, rc.top + 10 + 3*(15 + 10) - 3, rc.left + 5 + 30 + 5, rc.top + 10 + 3*(15 + 10) - 3,
rc.right - 5 -(rc.left + 5 + 30 + 5), 15 + 6, rc.right - 5 -(rc.left + 5 + 30 + 5), 15 + 6,
hwnd, NULL, hInst, NULL ); hwnd, NULL, hInst, NULL );
free( wUnicode );
ic.dwSize = sizeof(INITCOMMONCONTROLSEX); ic.dwSize = sizeof(INITCOMMONCONTROLSEX);
ic.dwICC = ICC_UPDOWN_CLASS; ic.dwICC = ICC_UPDOWN_CLASS;
...@@ -439,16 +434,16 @@ void OpenDialog::NetPanel( HWND hwnd ) ...@@ -439,16 +434,16 @@ void OpenDialog::NetPanel( HWND hwnd )
hUpdown[1] = CreateUpDownControl( WS_CHILD | WS_VISIBLE | WS_BORDER | hUpdown[1] = CreateUpDownControl( WS_CHILD | WS_VISIBLE | WS_BORDER |
UDS_ALIGNRIGHT | UDS_SETBUDDYINT | UDS_NOTHOUSANDS, UDS_ALIGNRIGHT | UDS_SETBUDDYINT | UDS_NOTHOUSANDS,
0, 0, 0, 0, hwnd, NULL, hInst, 0, 0, 0, 0, hwnd, 0, hInst,
net_ports[1], 16000, 0, i_net_ports[1] ); net_ports[1], 16000, 0, i_net_ports[1] );
/* HTTP and RTSP rows */ /* HTTP and RTSP rows */
net_radios[2] = CreateWindow( _T("BUTTON"), net_type_array[2].szAnsi, net_radios[2] = CreateWindow( _T("BUTTON"), net_type_array[2].psz_text,
WS_CHILD | WS_VISIBLE | BS_AUTORADIOBUTTON, WS_CHILD | WS_VISIBLE | BS_AUTORADIOBUTTON,
rc.left + 5 + 15 + 5 + net_type_array[0].length + 5, rc.left + 5 + 15 + 5 + net_type_array[0].length + 5,
rc.top + 10, 15, 15, hwnd, NULL, hInst, NULL ); rc.top + 10, 15, 15, hwnd, NULL, hInst, NULL );
net_label[2] = CreateWindow( _T("STATIC"), net_type_array[2].szAnsi, net_label[2] = CreateWindow( _T("STATIC"), net_type_array[2].psz_text,
WS_CHILD | WS_VISIBLE | SS_LEFT, WS_CHILD | WS_VISIBLE | SS_LEFT,
rc.left + 5 + 15 + 5 + net_type_array[0].length + 5 + 15 + 5, rc.left + 5 + 15 + 5 + net_type_array[0].length + 5 + 15 + 5,
rc.top + 10, net_type_array[2].length, 15, rc.top + 10, net_type_array[2].length, 15,
...@@ -465,12 +460,12 @@ void OpenDialog::NetPanel( HWND hwnd ) ...@@ -465,12 +460,12 @@ void OpenDialog::NetPanel( HWND hwnd )
rc.right - 5 - (rc.left + 5 + 30 + 5), 15 + 6, rc.right - 5 - (rc.left + 5 + 30 + 5), 15 + 6,
hwnd, NULL, hInst, NULL); hwnd, NULL, hInst, NULL);
net_radios[3] = CreateWindow( _T("BUTTON"), net_type_array[3].szAnsi, net_radios[3] = CreateWindow( _T("BUTTON"), net_type_array[3].psz_text,
WS_CHILD | WS_VISIBLE | BS_AUTORADIOBUTTON, WS_CHILD | WS_VISIBLE | BS_AUTORADIOBUTTON,
rc.left + 5 + 15 + 5 + net_type_array[1].length + 5, rc.left + 5 + 15 + 5 + net_type_array[1].length + 5,
rc.top + 10 + 15 + 10, 15, 15, hwnd, NULL, hInst, NULL ); rc.top + 10 + 15 + 10, 15, 15, hwnd, NULL, hInst, NULL );
net_label[3] = CreateWindow( _T("STATIC"), net_type_array[3].szAnsi, net_label[3] = CreateWindow( _T("STATIC"), net_type_array[3].psz_text,
WS_CHILD | WS_VISIBLE | SS_LEFT, WS_CHILD | WS_VISIBLE | SS_LEFT,
rc.left + 5 + 15 + 5 + net_type_array[1].length + 5 + 15 + 5, rc.left + 5 + 15 + 5 + net_type_array[1].length + 5 + 15 + 5,
rc.top + 10 + 15 + 10, net_type_array[3].length, 15, rc.top + 10 + 15 + 10, net_type_array[3].length, 15,
...@@ -498,22 +493,16 @@ void OpenDialog::UpdateMRL() ...@@ -498,22 +493,16 @@ void OpenDialog::UpdateMRL()
void OpenDialog::UpdateMRL( int i_access_method ) void OpenDialog::UpdateMRL( int i_access_method )
{ {
string demux, mrltemp; string demux, mrltemp;
TCHAR psz_text[2048];
int size; char psz_tmp[256];
BOOL bTemp;
LPSTR szAnsi;
LPWSTR wUnicode;
i_current_access_method = i_access_method; i_current_access_method = i_access_method;
switch( i_access_method ) switch( i_access_method )
{ {
case FILE_ACCESS: case FILE_ACCESS:
//mrltemp = wxT("file") + demux + wxT(":") + file_combo->GetValue(); GetWindowText( file_combo, psz_text, 2048 );
size = GetWindowTextLength( file_combo ) + 1; mrltemp = _TOMB(psz_text);
wUnicode = new WCHAR[ size ];
GetWindowText( file_combo, wUnicode, size );
mrltemp = _TOMB(wUnicode);
break; break;
case NET_ACCESS: case NET_ACCESS:
switch( i_net_type ) switch( i_net_type )
...@@ -523,61 +512,40 @@ void OpenDialog::UpdateMRL( int i_access_method ) ...@@ -523,61 +512,40 @@ void OpenDialog::UpdateMRL( int i_access_method )
if( i_net_ports[0] != if( i_net_ports[0] !=
config_GetInt( p_intf, "server-port" ) ) config_GetInt( p_intf, "server-port" ) )
{ {
szAnsi = new char[50]; sprintf( psz_tmp, "@:%d", i_net_ports[0] );
sprintf( szAnsi, "@:%d", i_net_ports[0] ); mrltemp += psz_tmp;
mrltemp += szAnsi;
delete [] szAnsi;
} }
break; break;
case 1: case 1:
mrltemp = "udp" + demux + "://@"; mrltemp = "udp" + demux + "://@";
size = Edit_GetTextLength( net_addrs[1] ); Edit_GetText( net_addrs[1], psz_text, 2048 );
wUnicode = new WCHAR[size + 1]; //Add 1 for the NULL mrltemp += _TOMB(psz_text);
Edit_GetText( net_addrs[1], wUnicode, size + 1);
mrltemp += _TOMB(wUnicode);
delete [] wUnicode;
if( i_net_ports[1] != config_GetInt( p_intf, "server-port" ) ) if( i_net_ports[1] != config_GetInt( p_intf, "server-port" ) )
{ {
szAnsi = new char[50]; sprintf( psz_tmp, ":%d", i_net_ports[1] );
sprintf( szAnsi, ":%d", i_net_ports[1] ); mrltemp += psz_tmp;
mrltemp += szAnsi;
delete [] szAnsi;
} }
break; break;
case 2: case 2:
/* http access */ /* http access */
size = Edit_GetTextLength( net_addrs[2] ); Edit_GetText( net_addrs[2], psz_text, 2048 );
wUnicode = new WCHAR[size + 1]; //Add 1 for the NULL if( !strstr( _TOMB(psz_text), "http://" ) )
Edit_GetText( net_addrs[2], wUnicode, size + 1);
size = WideCharToMultiByte( CP_ACP, 0, wUnicode, -1, NULL, 0, NULL, &bTemp );
szAnsi = new char[size];
WideCharToMultiByte( CP_ACP, 0, wUnicode, -1, szAnsi, size, NULL, &bTemp );
free( wUnicode );
if( !strstr( szAnsi, "http://" ) )
{ {
mrltemp = "http" + demux + "://"; mrltemp = "http" + demux + "://";
} }
mrltemp += szAnsi; mrltemp += _TOMB(psz_text);
free( szAnsi );
break; break;
case 3: case 3:
/* RTSP access */ /* RTSP access */
size = Edit_GetTextLength( net_addrs[3] ); Edit_GetText( net_addrs[3], psz_text, 2048 );
wUnicode = new WCHAR[size + 1]; //Add 1 for the NULL if( !strstr( _TOMB(psz_text), "rtsp://" ) )
Edit_GetText( net_addrs[3], wUnicode, size + 1);
size = WideCharToMultiByte( CP_ACP, 0, wUnicode, -1, NULL, 0, NULL, &bTemp );
szAnsi = new char[size];
WideCharToMultiByte( CP_ACP, 0, wUnicode, -1, szAnsi, size, NULL, &bTemp );
free( wUnicode );
if( !strstr( szAnsi, "rtsp://" ) )
{ {
mrltemp = "rtsp" + demux + "://"; mrltemp = "rtsp" + demux + "://";
} }
mrltemp += szAnsi; mrltemp += _TOMB(psz_text);
free( szAnsi );
break; break;
} }
break; break;
...@@ -652,18 +620,14 @@ void OpenDialog::OnPageChange() ...@@ -652,18 +620,14 @@ void OpenDialog::OnPageChange()
void OpenDialog::OnOk() void OpenDialog::OnOk()
{ {
int size; TCHAR psz_text[2048];
LPWSTR wUnicode;
GetWindowText( mrl_combo, psz_text, 2048 ); // replace by ComboBox_GetText( mrl_combo, wUnicode, size )
size = GetWindowTextLength( mrl_combo ) + 1; mrl = SeparateEntries( psz_text );
wUnicode = new WCHAR[ size ]; ComboBox_AddString( mrl_combo, psz_text );
GetWindowText( mrl_combo, wUnicode, size ); // a remplacer par ComboBox_GetText( mrl_combo, wUnicode, size )
mrl = SeparateEntries( wUnicode );
ComboBox_AddString( mrl_combo, wUnicode );
if( ComboBox_GetCount( mrl_combo ) > 10 ) if( ComboBox_GetCount( mrl_combo ) > 10 )
ComboBox_DeleteString( mrl_combo, 0 ); ComboBox_DeleteString( mrl_combo, 0 );
ComboBox_SetCurSel( mrl_combo, ComboBox_GetCount( mrl_combo ) - 1 ); ComboBox_SetCurSel( mrl_combo, ComboBox_GetCount( mrl_combo ) - 1 );
delete [] wUnicode;
/* Update the playlist */ /* Update the playlist */
playlist_t *p_playlist = playlist_t *p_playlist =
...@@ -696,7 +660,7 @@ void OpenDialog::OnOk() ...@@ -696,7 +660,7 @@ void OpenDialog::OnOk()
} }
} }
int i_id = playlist_AddItem( p_playlist, p_item, playlist_AddItem( p_playlist, p_item,
PLAYLIST_APPEND, PLAYLIST_END ); PLAYLIST_APPEND, PLAYLIST_END );
if( b_start ) if( b_start )
...@@ -721,12 +685,9 @@ void OpenDialog::OnFilePanelChange() ...@@ -721,12 +685,9 @@ void OpenDialog::OnFilePanelChange()
void OpenDialog::OnFileBrowse() void OpenDialog::OnFileBrowse()
{ {
OPENFILENAME ofn; OPENFILENAME ofn;
TCHAR DateiName[80+1] = _T("\0");
static TCHAR szFilter[] = _T("All (*.*)\0*.*\0"); static TCHAR szFilter[] = _T("All (*.*)\0*.*\0");
LPSTR psz_filename; TCHAR psz_file[PATH_MAX] = _T("\0");
BOOL bTemp; TCHAR psz_tmp[PATH_MAX+2] = _T("\0");
string path;
int size;
memset(&ofn, 0, sizeof(OPENFILENAME)); memset(&ofn, 0, sizeof(OPENFILENAME));
ofn.lStructSize = sizeof (OPENFILENAME); ofn.lStructSize = sizeof (OPENFILENAME);
...@@ -736,13 +697,13 @@ void OpenDialog::OnFileBrowse() ...@@ -736,13 +697,13 @@ void OpenDialog::OnFileBrowse()
ofn.lpstrCustomFilter = NULL; ofn.lpstrCustomFilter = NULL;
ofn.nMaxCustFilter = 0; ofn.nMaxCustFilter = 0;
ofn.nFilterIndex = 1; ofn.nFilterIndex = 1;
ofn.lpstrFile = (LPTSTR) DateiName; ofn.lpstrFile = psz_file;
ofn.nMaxFile = 80; ofn.nMaxFile = PATH_MAX;
ofn.lpstrFileTitle = NULL; ofn.lpstrFileTitle = NULL;
ofn.nMaxFileTitle = 40; ofn.nMaxFileTitle = 40;
ofn.lpstrInitialDir = NULL; ofn.lpstrInitialDir = NULL;
ofn.lpstrTitle = _T("Open File"); ofn.lpstrTitle = _T("Open File");
ofn.Flags = NULL; ofn.Flags = 0;
ofn.nFileOffset = 0; ofn.nFileOffset = 0;
ofn.nFileExtension = 0; ofn.nFileExtension = 0;
ofn.lpstrDefExt = NULL; ofn.lpstrDefExt = NULL;
...@@ -751,23 +712,16 @@ void OpenDialog::OnFileBrowse() ...@@ -751,23 +712,16 @@ void OpenDialog::OnFileBrowse()
ofn.lpTemplateName = NULL; ofn.lpTemplateName = NULL;
if( GetOpenFileName((LPOPENFILENAME) &ofn) ) if( GetOpenFileName((LPOPENFILENAME) &ofn) )
{ {
size = WideCharToMultiByte( CP_ACP, 0, ofn.lpstrFile, -1, NULL, if( _tcschr( ofn.lpstrFile, _T(' ') ) )
0, NULL, &bTemp );
psz_filename = ( char * )malloc( size );
WideCharToMultiByte( CP_ACP, 0, ofn.lpstrFile, -1, psz_filename,
size, NULL, &bTemp );
if( strchr( psz_filename, ' ' ) )
{ {
path = "\""; _tcscat( psz_tmp, _T("\"") );
path += psz_filename; _tcscat( psz_tmp, ofn.lpstrFile );
path += "\""; _tcscat( psz_tmp, _T("\"") );
} }
else else _tcscat( psz_tmp, ofn.lpstrFile );
path = psz_filename;
SetWindowText( file_combo, _FROMMB(path.c_str()) ); SetWindowText( file_combo, psz_tmp );
ComboBox_AddString( file_combo, _FROMMB(path.c_str()) ); ComboBox_AddString( file_combo, psz_tmp );
if( ComboBox_GetCount( file_combo ) > 10 ) if( ComboBox_GetCount( file_combo ) > 10 )
ComboBox_DeleteString( file_combo, 0 ); ComboBox_DeleteString( file_combo, 0 );
...@@ -780,18 +734,14 @@ void OpenDialog::OnFileBrowse() ...@@ -780,18 +734,14 @@ void OpenDialog::OnFileBrowse()
*****************************************************************************/ *****************************************************************************/
void OpenDialog::OnNetPanelChange( int event ) void OpenDialog::OnNetPanelChange( int event )
{ {
TCHAR psz_text[2048];
int port; int port;
int size;
LPWSTR wUnicode;
if( event >= NetPort1_Event && event <= NetPort2_Event ) if( event >= NetPort1_Event && event <= NetPort2_Event )
{ {
size = Edit_GetTextLength( net_ports[event - NetPort1_Event] ); Edit_GetText( net_ports[event - NetPort1_Event], psz_text, 2048 );
wUnicode = new WCHAR[size + 1]; //Add 1 for the NULL _stscanf( psz_text, _T("%d"), &port );
Edit_GetText( net_ports[event - NetPort1_Event], wUnicode, size + 1);
swscanf( wUnicode, _T("%d"), &port );
i_net_ports[event - NetPort1_Event] = port; i_net_ports[event - NetPort1_Event] = port;
delete[] wUnicode;
} }
UpdateMRL( NET_ACCESS ); UpdateMRL( NET_ACCESS );
...@@ -847,12 +797,16 @@ void OpenDialog::DisableNETCtrl() ...@@ -847,12 +797,16 @@ void OpenDialog::DisableNETCtrl()
{ {
for( int i=0; i<4; i++ ) for( int i=0; i<4; i++ )
{ {
SetWindowPos( net_port_label[i], HWND_BOTTOM, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE ); SetWindowPos( net_port_label[i], HWND_BOTTOM, 0, 0, 0, 0,
SetWindowPos( net_ports[i], HWND_BOTTOM, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE ); SWP_NOMOVE | SWP_NOSIZE );
SetWindowPos( hUpdown[i], HWND_BOTTOM, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE ); SetWindowPos( net_ports[i], HWND_BOTTOM, 0, 0, 0, 0,
SWP_NOMOVE | SWP_NOSIZE );
SetWindowPos( net_addrs_label[i], HWND_BOTTOM, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE ); SetWindowPos( hUpdown[i], HWND_BOTTOM, 0, 0, 0, 0,
SetWindowPos( net_addrs[i], HWND_BOTTOM, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE ); SWP_NOMOVE | SWP_NOSIZE );
SetWindowPos( net_addrs_label[i], HWND_BOTTOM, 0, 0, 0, 0,
SWP_NOMOVE | SWP_NOSIZE );
SetWindowPos( net_addrs[i], HWND_BOTTOM, 0, 0, 0, 0,
SWP_NOMOVE | SWP_NOSIZE );
} }
UpdateMRL( FILE_ACCESS ); UpdateMRL( FILE_ACCESS );
...@@ -878,7 +832,7 @@ void OpenDialog::OnSubsFileSettings( HWND hwnd ) ...@@ -878,7 +832,7 @@ void OpenDialog::OnSubsFileSettings( HWND hwnd )
subsfile_mrl.clear(); subsfile_mrl.clear();
for( int i = 0; i < subsfile_dialog->subsfile_mrl.size(); i++ ) for( int i = 0; i < (int)subsfile_dialog->subsfile_mrl.size(); i++ )
subsfile_mrl.push_back( subsfile_dialog->subsfile_mrl[i] ); subsfile_mrl.push_back( subsfile_dialog->subsfile_mrl[i] );
delete subsfile_dialog; delete subsfile_dialog;
...@@ -887,66 +841,65 @@ void OpenDialog::OnSubsFileSettings( HWND hwnd ) ...@@ -887,66 +841,65 @@ void OpenDialog::OnSubsFileSettings( HWND hwnd )
/***************************************************************************** /*****************************************************************************
* Utility functions. * Utility functions.
*****************************************************************************/ *****************************************************************************/
vector<string> SeparateEntries( LPWSTR entries ) vector<string> SeparateEntries( TCHAR *entries )
{ {
int length;
vlc_bool_t b_quotes_mode = VLC_FALSE; vlc_bool_t b_quotes_mode = VLC_FALSE;
vector<string> entries_array; vector<string> entries_array;
LPWSTR entry = new TCHAR[ wcslen(entries) + 1 ]; TCHAR *entry = new TCHAR[ _tcslen(entries) + 1 ];
TCHAR *strToken = entries;
LPWSTR strToken = entries; int length = _tcscspn( strToken, _T(" \t\r\n\"") );
length = wcscspn( strToken, _T(" \t\r\n\"") ); *entry = 0;
swprintf( entry, _T("") );
while( strToken - entries < wcslen(entries) ) while( strToken - entries < _tcslen(entries) )
{ {
wcsncat( entry, strToken, length ); _tcsncat( entry, strToken, length );
wcsncat( entry, strToken + length, 1 ); _tcsncat( entry, strToken + length, 1 );
if( !b_quotes_mode && strToken[length] == _T('\"') ) if( !b_quotes_mode && strToken[length] == _T('\"') )
{ {
/* Enters quotes mode */ /* Enters quotes mode */
entry[ wcslen(entry) - 1 ] = NULL; entry[ _tcslen(entry) - 1 ] = 0;
b_quotes_mode = VLC_TRUE; b_quotes_mode = VLC_TRUE;
} }
else if( b_quotes_mode && strToken[length] == _T('\"') ) else if( b_quotes_mode && strToken[length] == _T('\"') )
{ {
/* Finished the quotes mode */ /* Finished the quotes mode */
entry[ wcslen(entry) - 1 ] = NULL; entry[ _tcslen(entry) - 1 ] = 0;
if( wcscmp( entry, _T("") ) != 0 ) if( _tcscmp( entry, _T("") ) != 0 )
{ {
entries_array.push_back( _TOMB(entry) ); entries_array.push_back( _TOMB(entry) );
} }
swprintf( entry, _T("") ); *entry = 0;
b_quotes_mode = VLC_FALSE; b_quotes_mode = VLC_FALSE;
} }
else if( !b_quotes_mode && strToken[length] != _T('\"') ) else if( !b_quotes_mode && strToken[length] != _T('\"') )
{ {
/* we found a non-quoted standalone string */ /* we found a non-quoted standalone string */
if( strToken + length - entries < wcslen(entries) ||/*token.HasMoreTokens() ||*/ //FIX ME IF YOU CAN if( strToken + length - entries < _tcslen(entries) ||/*token.HasMoreTokens() ||*/ //FIX ME IF YOU CAN
strToken[length] == _T(' ') || strToken[length] == _T(' ') ||
strToken[length] == _T('\t') || strToken[length] == _T('\t') ||
strToken[length] == _T('\r') || strToken[length] == _T('\r') ||
strToken[length] == _T('\n') ) strToken[length] == _T('\n') )
entry[ wcslen(entry) - 1 ]/*strToken[length]*/ = NULL; entry[ _tcslen(entry) - 1 ]/*strToken[length]*/ = 0;
if( wcscmp( entry, _T("") ) != 0 ) if( _tcscmp( entry, _T("") ) != 0 )
{ {
entries_array.push_back( _TOMB(entry) ); entries_array.push_back( _TOMB(entry) );
} }
swprintf( entry, _T("") ); *entry = 0;
} }
else else
{;} {;}
strToken += length + 1; strToken += length + 1;
length = wcscspn( strToken, _T(" \t\r\n\"") ); length = _tcscspn( strToken, _T(" \t\r\n\"") );
} }
if( wcscmp( entry, _T("") ) != 0 ) if( _tcscmp( entry, _T("") ) != 0 )
{ {
entries_array.push_back( _TOMB(entry) ); entries_array.push_back( _TOMB(entry) );
} }
delete [] entry;
return entries_array; return entries_array;
} }
...@@ -84,21 +84,21 @@ enum ...@@ -84,21 +84,21 @@ enum
// The TBBUTTON structure contains information the toolbar buttons. // The TBBUTTON structure contains information the toolbar buttons.
static TBBUTTON tbButton2[] = static TBBUTTON tbButton2[] =
{ {
{0, ID_MANAGE_OPENPL, TBSTATE_ENABLED, TBSTYLE_BUTTON, 0, -1}, {0, ID_MANAGE_OPENPL, TBSTATE_ENABLED, TBSTYLE_BUTTON},
{1, ID_MANAGE_SAVEPL, TBSTATE_ENABLED, TBSTYLE_BUTTON, 0, -1}, {1, ID_MANAGE_SAVEPL, TBSTATE_ENABLED, TBSTYLE_BUTTON},
{0, 0, TBSTATE_ENABLED, TBSTYLE_SEP, 0, -1}, {0, 0, TBSTATE_ENABLED, TBSTYLE_SEP},
{2, ID_MANAGE_SIMPLEADD, TBSTATE_ENABLED, TBSTYLE_BUTTON, 0, -1}, {2, ID_MANAGE_SIMPLEADD, TBSTATE_ENABLED, TBSTYLE_BUTTON},
{3, ID_MANAGE_ADDMRL, TBSTATE_ENABLED, TBSTYLE_BUTTON, 0, -1}, {3, ID_MANAGE_ADDMRL, TBSTATE_ENABLED, TBSTYLE_BUTTON},
{4, ID_SEL_DELETE, TBSTATE_ENABLED, TBSTYLE_BUTTON, 0, -1}, {4, ID_SEL_DELETE, TBSTATE_ENABLED, TBSTYLE_BUTTON},
{0, 0, TBSTATE_ENABLED, TBSTYLE_SEP, 0, -1}, {0, 0, TBSTATE_ENABLED, TBSTYLE_SEP},
{5, Infos_Event, TBSTATE_ENABLED, TBSTYLE_BUTTON, 0, -1}, {5, Infos_Event, TBSTATE_ENABLED, TBSTYLE_BUTTON},
{0, 0, TBSTATE_ENABLED, TBSTYLE_SEP, 0, -1}, {0, 0, TBSTATE_ENABLED, TBSTYLE_SEP},
{6, Up_Event, TBSTATE_ENABLED, TBSTYLE_BUTTON, 0, -1}, {6, Up_Event, TBSTATE_ENABLED, TBSTYLE_BUTTON},
{7, Down_Event, TBSTATE_ENABLED, TBSTYLE_BUTTON, 0, -1}, {7, Down_Event, TBSTATE_ENABLED, TBSTYLE_BUTTON},
{0, 0, TBSTATE_ENABLED, TBSTYLE_SEP, 0, -1}, {0, 0, TBSTATE_ENABLED, TBSTYLE_SEP},
{8, Random_Event, TBSTATE_ENABLED, TBSTYLE_CHECK, 0, -1}, {8, Random_Event, TBSTATE_ENABLED, TBSTYLE_CHECK},
{9, Loop_Event, TBSTATE_ENABLED, TBSTYLE_CHECK, 0, -1}, {9, Loop_Event, TBSTATE_ENABLED, TBSTYLE_CHECK},
{10, Repeat_Event, TBSTATE_ENABLED, TBSTYLE_CHECK, 0, -1} {10, Repeat_Event, TBSTATE_ENABLED, TBSTYLE_CHECK}
}; };
// Toolbar ToolTips // Toolbar ToolTips
...@@ -185,7 +185,7 @@ LRESULT Playlist::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp, ...@@ -185,7 +185,7 @@ LRESULT Playlist::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp,
if( !SHCreateMenuBar(&mbi) ) if( !SHCreateMenuBar(&mbi) )
{ {
MessageBox(hwnd, L"SHCreateMenuBar Failed", L"Error", MB_OK); MessageBox(hwnd, _T("SHCreateMenuBar Failed"), _T("Error"), MB_OK);
//return -1; //return -1;
} }
...@@ -201,7 +201,7 @@ LRESULT Playlist::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp, ...@@ -201,7 +201,7 @@ LRESULT Playlist::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp,
dwStyle = WS_VISIBLE | WS_CHILD | TBSTYLE_TOOLTIPS | dwStyle = WS_VISIBLE | WS_CHILD | TBSTYLE_TOOLTIPS |
WS_EX_OVERLAPPEDWINDOW | CCS_NOPARENTALIGN; WS_EX_OVERLAPPEDWINDOW | CCS_NOPARENTALIGN;
hwndTB = CreateToolbarEx( hwnd, dwStyle, NULL, NUMIMAGES, hwndTB = CreateToolbarEx( hwnd, dwStyle, 0, NUMIMAGES,
hInst, IDB_BITMAP3, tbButton2, hInst, IDB_BITMAP3, tbButton2,
sizeof (tbButton2) / sizeof (TBBUTTON), sizeof (tbButton2) / sizeof (TBBUTTON),
BUTTONWIDTH, BUTTONHEIGHT, BUTTONWIDTH, BUTTONHEIGHT,
...@@ -684,44 +684,41 @@ void Playlist::OnSave() ...@@ -684,44 +684,41 @@ void Playlist::OnSave()
{ {
TCHAR szFile[NMAXFILE] = _T("\0"); TCHAR szFile[NMAXFILE] = _T("\0");
OPENFILENAME ofn; OPENFILENAME ofn;
TCHAR psz_filters[1000];
LPWSTR wUnicode; struct
int len; {
char *psz_desc;
struct { char *psz_filter;
TCHAR *psz_desc;
TCHAR *psz_filter;
char *psz_module; char *psz_module;
} formats[] = {{ _T("M3U file"), _T("*.m3u"), "export-m3u" },
{ _T("PLS file"), _T("*.pls"), "export-pls" }};
wUnicode = new TCHAR[100];
wcscpy( wUnicode, _T("") );
len = 0;
for( unsigned int i = 0; i < sizeof(formats)/sizeof(formats[0]); i++) } formats[] =
{ { "M3U file", "*.m3u", "export-m3u" },
{ "PLS file", "*.pls", "export-pls" }
};
for( int i_len = 0, i = 0; i < sizeof(formats)/sizeof(formats[0]); i++ )
{ {
wcscpy( &wUnicode[len], formats[i].psz_desc ); _tcscpy( psz_filters + i_len, _FROMMB(formats[i].psz_desc) );
len = len + wcslen( formats[i].psz_desc ); i_len = i_len + _tcslen( psz_filters + i_len );
wUnicode[len] = '\0'; psz_filters[i_len++] = '\0';
len++; _tcscpy( psz_filters + i_len, _FROMMB(formats[i].psz_filter) );
wcscpy( &wUnicode[len], formats[i].psz_filter ); i_len = i_len + _tcslen( psz_filters + i_len );
len = len + wcslen( formats[i].psz_filter ); psz_filters[i_len++] = '\0';
wUnicode[len] = '\0'; if( i == sizeof(formats)/sizeof(formats[0]) -1 )
len++; psz_filters[i_len] = '\0';
} }
wUnicode[len] = '\0';
memset( &(ofn), 0, sizeof(ofn)); memset( &(ofn), 0, sizeof(ofn));
ofn.lStructSize = sizeof(ofn); ofn.lStructSize = sizeof(ofn);
ofn.hwndOwner = NULL; ofn.hwndOwner = NULL;
ofn.lpstrFile = szFile; ofn.lpstrFile = szFile;
ofn.nMaxFile = NMAXFILE; ofn.nMaxFile = NMAXFILE;
ofn.lpstrFilter = wUnicode; ofn.lpstrFilter = psz_filters;
ofn.lpstrTitle = _T("Save playlist"); ofn.lpstrTitle = _T("Save playlist");
ofn.Flags = OFN_HIDEREADONLY; ofn.Flags = OFN_HIDEREADONLY;
free( wUnicode );
if( GetSaveFileName((LPOPENFILENAME) &ofn) ) if( GetSaveFileName( (LPOPENFILENAME)&ofn ) )
{ {
playlist_t * p_playlist = (playlist_t *) playlist_t * p_playlist = (playlist_t *)
vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST, FIND_ANYWHERE ); vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST, FIND_ANYWHERE );
...@@ -762,7 +759,7 @@ void Playlist::OnAddFile() ...@@ -762,7 +759,7 @@ void Playlist::OnAddFile()
ofn.nMaxFileTitle = 40; ofn.nMaxFileTitle = 40;
ofn.lpstrInitialDir = NULL; ofn.lpstrInitialDir = NULL;
ofn.lpstrTitle = _T("Quick Open File"); ofn.lpstrTitle = _T("Quick Open File");
ofn.Flags = NULL; ofn.Flags = 0;
ofn.nFileOffset = 0; ofn.nFileOffset = 0;
ofn.nFileExtension = 0; ofn.nFileExtension = 0;
ofn.lpstrDefExt = NULL; ofn.lpstrDefExt = NULL;
......
...@@ -69,7 +69,8 @@ class PrefsTreeCtrl ...@@ -69,7 +69,8 @@ class PrefsTreeCtrl
public: public:
PrefsTreeCtrl() { } PrefsTreeCtrl() { }
PrefsTreeCtrl( intf_thread_t *_p_intf, PrefsDialog *p_prefs_dialog, HWND hwnd, HINSTANCE _hInst ); PrefsTreeCtrl( intf_thread_t *_p_intf, PrefsDialog *p_prefs_dialog,
HWND hwnd, HINSTANCE _hInst );
virtual ~PrefsTreeCtrl(); virtual ~PrefsTreeCtrl();
void ApplyChanges(); void ApplyChanges();
...@@ -190,7 +191,7 @@ LRESULT PrefsDialog::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp, ...@@ -190,7 +191,7 @@ LRESULT PrefsDialog::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp,
if( !SHCreateMenuBar(&mbi) ) if( !SHCreateMenuBar(&mbi) )
{ {
MessageBox(hwnd, L"SHCreateMenuBar Failed", L"Error", MB_OK); MessageBox(hwnd, _T("SHCreateMenuBar Failed"), _T("Error"), MB_OK);
//return -1; //return -1;
} }
...@@ -330,11 +331,6 @@ PrefsTreeCtrl::PrefsTreeCtrl( intf_thread_t *_p_intf, ...@@ -330,11 +331,6 @@ PrefsTreeCtrl::PrefsTreeCtrl( intf_thread_t *_p_intf,
INITCOMMONCONTROLSEX iccex; INITCOMMONCONTROLSEX iccex;
RECT rcClient; RECT rcClient;
int size;
char *szAnsi;
LPWSTR wUnicode;
BOOL bTemp;
TVITEM tvi = {0}; TVITEM tvi = {0};
TVINSERTSTRUCT tvins = {0}; TVINSERTSTRUCT tvins = {0};
HTREEITEM hPrev; HTREEITEM hPrev;
...@@ -504,27 +500,19 @@ PrefsTreeCtrl::PrefsTreeCtrl( intf_thread_t *_p_intf, ...@@ -504,27 +500,19 @@ PrefsTreeCtrl::PrefsTreeCtrl( intf_thread_t *_p_intf,
while( capability_item != 0 ) while( capability_item != 0 )
{ {
TVITEM capability_tvi = {0}; TVITEM capability_tvi = {0};
TCHAR psz_text[256];
i_child_index++; i_child_index++;
capability_tvi.mask = TVIF_TEXT; capability_tvi.mask = TVIF_TEXT;
capability_tvi.pszText = new WCHAR[200]; capability_tvi.pszText = psz_text;
capability_tvi.cchTextMax = 200; capability_tvi.cchTextMax = 256;
capability_tvi.hItem = capability_item; capability_tvi.hItem = capability_item;
TreeView_GetItem( hwndTV, &capability_tvi ); TreeView_GetItem( hwndTV, &capability_tvi );
size = WideCharToMultiByte( CP_ACP, 0, capability_tvi.pszText, -1, NULL, 0, NULL, &bTemp ); if( !strcmp( _TOMB(capability_tvi.pszText),
szAnsi = new char[size]; p_module->psz_capability ) ) break;
WideCharToMultiByte( CP_ACP, 0, capability_tvi.pszText, -1, szAnsi, size, NULL, &bTemp );
if( !strcmp( szAnsi, p_module->psz_capability ) )
{
free( szAnsi );
free( capability_tvi.pszText );
break;
}
free( szAnsi );
free( capability_tvi.pszText );
capability_item = TreeView_GetNextSibling( hwndTV, capability_item ); capability_item =
TreeView_GetNextSibling( hwndTV, capability_item );
} }
if( i_child_index == i_capability_count && if( i_child_index == i_capability_count &&
...@@ -565,7 +553,7 @@ PrefsTreeCtrl::PrefsTreeCtrl( intf_thread_t *_p_intf, ...@@ -565,7 +553,7 @@ PrefsTreeCtrl::PrefsTreeCtrl( intf_thread_t *_p_intf,
tvins.hParent = capability_item;// level 4 tvins.hParent = capability_item;// level 4
// Add the item to the tree-view control. // Add the item to the tree-view control.
TreeView_InsertItem( hwndTV, &tvins); TreeView_InsertItem( hwndTV, &tvins );
} }
/* Sort all this mess */ /* Sort all this mess */
......
...@@ -112,9 +112,8 @@ ConfigControl *CreateConfigControl( vlc_object_t *p_this, ...@@ -112,9 +112,8 @@ ConfigControl *CreateConfigControl( vlc_object_t *p_this,
ConfigControl::ConfigControl( vlc_object_t *_p_this, ConfigControl::ConfigControl( vlc_object_t *_p_this,
module_config_t *p_item, module_config_t *p_item,
HWND parent, HINSTANCE hInst ) HWND parent, HINSTANCE hInst )
: parent( parent ), p_this( _p_this ), : p_this( _p_this ), pf_update_callback( NULL ), p_update_data( NULL ),
pf_update_callback( NULL ), p_update_data( NULL ), parent( parent ), name( p_item->psz_name ), i_type( p_item->i_type ),
name( p_item->psz_name ), i_type( p_item->i_type ),
b_advanced( p_item->b_advanced ) b_advanced( p_item->b_advanced )
{ {
......
...@@ -26,8 +26,7 @@ class ConfigControl ...@@ -26,8 +26,7 @@ class ConfigControl
{ {
public: public:
ConfigControl( vlc_object_t *, module_config_t *, HWND, HINSTANCE ); ConfigControl( vlc_object_t *, module_config_t *, HWND, HINSTANCE );
~ConfigControl(); virtual ~ConfigControl();
/*wxSizer *Sizer();*/
virtual int GetIntValue() {return 0;} virtual int GetIntValue() {return 0;}
virtual float GetFloatValue() {return 0;} virtual float GetFloatValue() {return 0;}
......
...@@ -70,14 +70,12 @@ LRESULT SubsFileDialog::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp, ...@@ -70,14 +70,12 @@ LRESULT SubsFileDialog::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp,
INITCOMMONCONTROLSEX ic; INITCOMMONCONTROLSEX ic;
RECT rcClient; RECT rcClient;
int size;
LPWSTR wUnicode;
char *psz_subsfile; char *psz_subsfile;
module_config_t *p_item;
float f_fps; float f_fps;
int i_delay; int i_delay;
module_config_t *p_item;
TCHAR psz_text[256];
LRESULT lResult = CBaseWindow::WndProc( hwnd, msg, wp, lp, pbProcessed ); LRESULT lResult = CBaseWindow::WndProc( hwnd, msg, wp, lp, pbProcessed );
BOOL bWasProcessed = *pbProcessed; BOOL bWasProcessed = *pbProcessed;
...@@ -102,7 +100,7 @@ LRESULT SubsFileDialog::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp, ...@@ -102,7 +100,7 @@ LRESULT SubsFileDialog::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp,
if (!SHCreateMenuBar(&mbi)) if (!SHCreateMenuBar(&mbi))
{ {
MessageBox(hwnd, L"SHCreateMenuBar Failed", L"Error", MB_OK); MessageBox(hwnd, _T("SHCreateMenuBar Failed"), _T("Error"), MB_OK);
//return -1; //return -1;
} }
...@@ -119,16 +117,12 @@ LRESULT SubsFileDialog::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp, ...@@ -119,16 +117,12 @@ LRESULT SubsFileDialog::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp,
psz_subsfile = config_GetPsz( p_intf, "sub-file" ); psz_subsfile = config_GetPsz( p_intf, "sub-file" );
if( !psz_subsfile ) psz_subsfile = strdup(""); if( !psz_subsfile ) psz_subsfile = strdup("");
size = MultiByteToWideChar( CP_ACP, 0, psz_subsfile, -1, NULL, 0 );
wUnicode = new WCHAR[size];
MultiByteToWideChar( CP_ACP, 0, psz_subsfile, -1, wUnicode, size );
file_combo = CreateWindow( _T("COMBOBOX"), wUnicode, file_combo = CreateWindow( _T("COMBOBOX"), _FROMMB(psz_subsfile),
WS_CHILD | WS_VISIBLE | CBS_AUTOHSCROLL | CBS_SORT | WS_VSCROLL, WS_CHILD | WS_VISIBLE | CBS_AUTOHSCROLL | CBS_SORT | WS_VSCROLL,
10, 10 + 15 + 10 - 3, rcClient.right - 2*10, 5*15 + 6, 10, 10 + 15 + 10 - 3, rcClient.right - 2*10, 5*15 + 6,
hwnd, NULL, hInst, NULL ); hwnd, NULL, hInst, NULL );
free( wUnicode );
if( psz_subsfile ) free( psz_subsfile ); if( psz_subsfile ) free( psz_subsfile );
browse_button = CreateWindow( _T("BUTTON"), _T("Browse..."), browse_button = CreateWindow( _T("BUTTON"), _T("Browse..."),
...@@ -138,8 +132,7 @@ LRESULT SubsFileDialog::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp, ...@@ -138,8 +132,7 @@ LRESULT SubsFileDialog::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp,
/* Subtitles encoding */ /* Subtitles encoding */
encoding_combo = NULL; encoding_combo = NULL;
p_item = p_item = config_FindConfig( VLC_OBJECT(p_intf), "subsdec-encoding" );
config_FindConfig( VLC_OBJECT(p_intf), "subsdec-encoding" );
if( p_item ) if( p_item )
{ {
enc_box = CreateWindow( _T("STATIC"), _T("Subtitles encoding"), enc_box = CreateWindow( _T("STATIC"), _T("Subtitles encoding"),
...@@ -147,54 +140,35 @@ LRESULT SubsFileDialog::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp, ...@@ -147,54 +140,35 @@ LRESULT SubsFileDialog::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp,
5, 10 + 3*(15 + 10), rcClient.right - 2*5, 15, 5, 10 + 3*(15 + 10), rcClient.right - 2*5, 15,
hwnd, NULL, hInst, NULL ); hwnd, NULL, hInst, NULL );
size = MultiByteToWideChar( CP_ACP, 0, p_item->psz_text, -1, NULL, 0 ); enc_label = CreateWindow( _T("STATIC"), _FROMMB(p_item->psz_text),
wUnicode = new WCHAR[size];
MultiByteToWideChar( CP_ACP, 0, p_item->psz_text, -1, wUnicode, size );
enc_label = CreateWindow( _T("STATIC"), wUnicode,
WS_CHILD | WS_VISIBLE | SS_LEFT, WS_CHILD | WS_VISIBLE | SS_LEFT,
10, 10 + 4*(15 + 10), rcClient.right - 2*10, 15, 10, 10 + 4*(15 + 10), rcClient.right - 2*10, 15,
hwnd, NULL, hInst, NULL ); hwnd, NULL, hInst, NULL );
free( wUnicode ); encoding_combo = CreateWindow( _T("COMBOBOX"),
_FROMMB(p_item->psz_value),
size = MultiByteToWideChar( CP_ACP, 0, p_item->psz_value, -1, NULL, 0 ); WS_CHILD | WS_VISIBLE | CBS_AUTOHSCROLL | CBS_DROPDOWNLIST |
wUnicode = new WCHAR[size]; LBS_SORT | WS_VSCROLL,
MultiByteToWideChar( CP_ACP, 0, p_item->psz_value, -1, wUnicode, size );
encoding_combo = CreateWindow( _T("COMBOBOX"), wUnicode,
WS_CHILD | WS_VISIBLE | CBS_AUTOHSCROLL | CBS_DROPDOWNLIST | LBS_SORT | WS_VSCROLL,
rcClient.right - 150 - 10, 10 + 5*(15 + 10) - 3, 150, 5*15 + 6, rcClient.right - 150 - 10, 10 + 5*(15 + 10) - 3, 150, 5*15 + 6,
hwnd, NULL, hInst, NULL ); hwnd, NULL, hInst, NULL );
free( wUnicode );
/* build a list of available options */ /* build a list of available options */
for( int i_index = 0; p_item->ppsz_list && for( int i_index = 0; p_item->ppsz_list &&
p_item->ppsz_list[i_index]; i_index++ ) p_item->ppsz_list[i_index]; i_index++ )
{ {
size = MultiByteToWideChar( CP_ACP, 0, p_item->ppsz_list[i_index], -1, NULL, 0 ); ComboBox_AddString( encoding_combo,
wUnicode = new WCHAR[size]; _FROMMB(p_item->ppsz_list[i_index]) );
MultiByteToWideChar( CP_ACP, 0, p_item->ppsz_list[i_index], -1, wUnicode, size );
ComboBox_AddString( encoding_combo, wUnicode ); if( p_item->psz_value &&
!strcmp( p_item->psz_value, p_item->ppsz_list[i_index] ) )
free( wUnicode );
if( p_item->psz_value && !strcmp( p_item->psz_value,
p_item->ppsz_list[i_index] ) )
ComboBox_SetCurSel( encoding_combo, i_index ); ComboBox_SetCurSel( encoding_combo, i_index );
} }
if( p_item->psz_value ) if( p_item->psz_value )
{ {
size = MultiByteToWideChar( CP_ACP, 0, p_item->psz_value, -1, NULL, 0 ); ComboBox_SelectString( encoding_combo, 0,
wUnicode = new WCHAR[size]; _FROMMB(p_item->psz_value) );
MultiByteToWideChar( CP_ACP, 0, p_item->psz_value, -1, wUnicode, size );
ComboBox_SelectString( encoding_combo, 0, wUnicode );
free( wUnicode );
} }
} }
...@@ -204,29 +178,28 @@ LRESULT SubsFileDialog::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp, ...@@ -204,29 +178,28 @@ LRESULT SubsFileDialog::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp,
5, 10 + 6*(15 + 10), rcClient.right - 2*5, 15, 5, 10 + 6*(15 + 10), rcClient.right - 2*5, 15,
hwnd, NULL, hInst, NULL ); hwnd, NULL, hInst, NULL );
delay_label = CreateWindow( _T("STATIC"), _T("Delay subtitles (in 1/10s)"), delay_label = CreateWindow( _T("STATIC"),
_T("Delay subtitles (in 1/10s)"),
WS_CHILD | WS_VISIBLE | SS_LEFT, WS_CHILD | WS_VISIBLE | SS_LEFT,
10, 10 + 7*(15 + 10), rcClient.right - 70 - 2*10, 15, 10, 10 + 7*(15 + 10), rcClient.right - 70 - 2*10, 15,
hwnd, NULL, hInst, NULL ); hwnd, NULL, hInst, NULL );
i_delay = config_GetInt( p_intf, "sub-delay" ); i_delay = config_GetInt( p_intf, "sub-delay" );
wUnicode = new WCHAR[80]; _stprintf( psz_text, _T("%d"), i_delay );
swprintf( wUnicode, _T("%d"), i_delay );
delay_edit = CreateWindow( _T("EDIT"), wUnicode, delay_edit = CreateWindow( _T("EDIT"), psz_text,
WS_CHILD | WS_VISIBLE | WS_BORDER | SS_LEFT | ES_AUTOHSCROLL, WS_CHILD | WS_VISIBLE | WS_BORDER | SS_LEFT | ES_AUTOHSCROLL,
rcClient.right - 70 - 10, 10 + 7*(15 + 10) - 3, 70, 15 + 6, rcClient.right - 70 - 10, 10 + 7*(15 + 10) - 3, 70, 15 + 6,
hwnd, NULL, hInst, NULL); hwnd, NULL, hInst, NULL );
free( wUnicode );
ic.dwSize = sizeof(INITCOMMONCONTROLSEX); ic.dwSize = sizeof(INITCOMMONCONTROLSEX);
ic.dwICC = ICC_UPDOWN_CLASS; ic.dwICC = ICC_UPDOWN_CLASS;
InitCommonControlsEx(&ic); InitCommonControlsEx(&ic);
delay_spinctrl = CreateUpDownControl( delay_spinctrl =
WS_CHILD | WS_VISIBLE | WS_BORDER | UDS_ALIGNRIGHT | UDS_SETBUDDYINT | UDS_NOTHOUSANDS, CreateUpDownControl( WS_CHILD | WS_VISIBLE | WS_BORDER |
0, 0, 0, 0, hwnd, NULL, hInst, UDS_ALIGNRIGHT | UDS_SETBUDDYINT | UDS_NOTHOUSANDS,
0, 0, 0, 0, hwnd, 0, hInst,
delay_edit, 650000, -650000, i_delay ); delay_edit, 650000, -650000, i_delay );
fps_label = CreateWindow( _T("STATIC"), _T("Frames per second"), fps_label = CreateWindow( _T("STATIC"), _T("Frames per second"),
...@@ -235,82 +208,50 @@ LRESULT SubsFileDialog::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp, ...@@ -235,82 +208,50 @@ LRESULT SubsFileDialog::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp,
hwnd, NULL, hInst, NULL ); hwnd, NULL, hInst, NULL );
f_fps = config_GetFloat( p_intf, "sub-fps" ); f_fps = config_GetFloat( p_intf, "sub-fps" );
wUnicode = new WCHAR[80]; _stprintf( psz_text, _T("%f"), f_fps );
swprintf( wUnicode, _T("%d"), (int)f_fps );
fps_edit = CreateWindow( _T("EDIT"), wUnicode, fps_edit = CreateWindow( _T("EDIT"), psz_text,
WS_CHILD | WS_VISIBLE | WS_BORDER | SS_LEFT | ES_AUTOHSCROLL, WS_CHILD | WS_VISIBLE | WS_BORDER | SS_LEFT | ES_AUTOHSCROLL,
rcClient.right - 70 - 10, 10 + 8*(15 + 10) - 3, 70, 15 + 6, rcClient.right - 70 - 10, 10 + 8*(15 + 10) - 3, 70, 15 + 6,
hwnd, NULL, hInst, NULL); hwnd, NULL, hInst, NULL);
free( wUnicode );
ic.dwSize = sizeof(INITCOMMONCONTROLSEX); ic.dwSize = sizeof(INITCOMMONCONTROLSEX);
ic.dwICC = ICC_UPDOWN_CLASS; ic.dwICC = ICC_UPDOWN_CLASS;
InitCommonControlsEx(&ic); InitCommonControlsEx(&ic);
fps_spinctrl = CreateUpDownControl( fps_spinctrl = CreateUpDownControl(
WS_CHILD | WS_VISIBLE | WS_BORDER | UDS_ALIGNRIGHT | UDS_SETBUDDYINT | UDS_NOTHOUSANDS, WS_CHILD | WS_VISIBLE | WS_BORDER | UDS_ALIGNRIGHT |
0, 0, 0, 0, hwnd, NULL, hInst, UDS_SETBUDDYINT | UDS_NOTHOUSANDS,
fps_edit, 16000, 0, (int)f_fps ); 0, 0, 0, 0, hwnd, 0, hInst, fps_edit, 16000, 0, (int)f_fps );
return lResult; return lResult;
case WM_COMMAND: case WM_COMMAND:
if ( LOWORD(wp) == IDOK ) if ( LOWORD(wp) == IDOK )
{ {
int size;
BOOL bTemp;
LPSTR szAnsi;
LPWSTR wUnicode;
subsfile_mrl.clear(); subsfile_mrl.clear();
string szFileCombo = "sub-file="; string szFileCombo = "sub-file=";
size = GetWindowTextLength( file_combo ) + 1; GetWindowText( file_combo, psz_text, 256 );
wUnicode = new WCHAR[ size ]; szFileCombo += _TOMB(psz_text);
GetWindowText( file_combo, wUnicode, size );
size = WideCharToMultiByte( CP_ACP, 0, wUnicode, -1, NULL, 0, NULL, &bTemp );
szAnsi = new char[size];
WideCharToMultiByte( CP_ACP, 0, wUnicode, -1, szAnsi, size, NULL, &bTemp );
szFileCombo += szAnsi;
free( wUnicode ); free( szAnsi );
subsfile_mrl.push_back( szFileCombo ); subsfile_mrl.push_back( szFileCombo );
if( GetWindowTextLength( encoding_combo ) != 0 ) if( GetWindowTextLength( encoding_combo ) != 0 )
{ {
string szEncoding = "subsdec-encoding="; string szEncoding = "subsdec-encoding=";
size = GetWindowTextLength( encoding_combo ) + 1; GetWindowText( encoding_combo, psz_text, 256 );
wUnicode = new WCHAR[ size ]; szEncoding += _TOMB(psz_text);
GetWindowText( encoding_combo, wUnicode, size );
size = WideCharToMultiByte( CP_ACP, 0, wUnicode, -1, NULL, 0, NULL, &bTemp );
szAnsi = new char[size];
WideCharToMultiByte( CP_ACP, 0, wUnicode, -1, szAnsi, size, NULL, &bTemp );
szEncoding += szAnsi;
free( wUnicode ); free( szAnsi );
subsfile_mrl.push_back( szEncoding ); subsfile_mrl.push_back( szEncoding );
} }
string szDelay = "sub-delay="; string szDelay = "sub-delay=";
size = Edit_GetTextLength( delay_edit ); Edit_GetText( delay_edit, psz_text, 256 );
wUnicode = new WCHAR[size + 1]; //Add 1 for the NULL szDelay += _TOMB(psz_text);
Edit_GetText( delay_edit, wUnicode, size + 1);
size = WideCharToMultiByte( CP_ACP, 0, wUnicode, -1, NULL, 0, NULL, &bTemp );
szAnsi = new char[size];
WideCharToMultiByte( CP_ACP, 0, wUnicode, -1, szAnsi, size, NULL, &bTemp );
szDelay += szAnsi;
free( wUnicode ); free( szAnsi );
subsfile_mrl.push_back( szDelay ); subsfile_mrl.push_back( szDelay );
string szFps = "sub-fps="; string szFps = "sub-fps=";
size = Edit_GetTextLength( fps_edit ); Edit_GetText( fps_edit, psz_text, 256 );
wUnicode = new WCHAR[size + 1]; //Add 1 for the NULL szFps += _TOMB(psz_text);
Edit_GetText( fps_edit, wUnicode, size + 1);
size = WideCharToMultiByte( CP_ACP, 0, wUnicode, -1, NULL, 0, NULL, &bTemp );
szAnsi = new char[size];
WideCharToMultiByte( CP_ACP, 0, wUnicode, -1, szAnsi, size, NULL, &bTemp );
szFps += szAnsi;
free( wUnicode ); free( szAnsi );
subsfile_mrl.push_back( szFps ); subsfile_mrl.push_back( szFps );
EndDialog( hwnd, LOWORD( wp ) ); EndDialog( hwnd, LOWORD( wp ) );
...@@ -368,7 +309,7 @@ void SubsFileDialog::OnFileBrowse() ...@@ -368,7 +309,7 @@ void SubsFileDialog::OnFileBrowse()
ofn.nMaxFileTitle = 40; ofn.nMaxFileTitle = 40;
ofn.lpstrInitialDir = NULL; ofn.lpstrInitialDir = NULL;
ofn.lpstrTitle = _T("Open File"); ofn.lpstrTitle = _T("Open File");
ofn.Flags = NULL; ofn.Flags = 0;
ofn.nFileOffset = 0; ofn.nFileOffset = 0;
ofn.nFileExtension = 0; ofn.nFileExtension = 0;
ofn.lpstrDefExt = NULL; ofn.lpstrDefExt = NULL;
......
...@@ -88,10 +88,8 @@ Timer::~Timer() ...@@ -88,10 +88,8 @@ Timer::~Timer()
*****************************************************************************/ *****************************************************************************/
void Timer::Notify( void ) void Timer::Notify( void )
{ {
int size;
vlc_value_t val; vlc_value_t val;
char *shortname; char *shortname;
LPWSTR wUnicode;
vlc_mutex_lock( &p_intf->change_lock ); vlc_mutex_lock( &p_intf->change_lock );
...@@ -105,25 +103,18 @@ void Timer::Notify( void ) ...@@ -105,25 +103,18 @@ void Timer::Notify( void )
/* Show slider */ /* Show slider */
if( p_intf->p_sys->p_input ) if( p_intf->p_sys->p_input )
{ {
ShowWindow( p_main_interface->hwndSlider, SW_SHOW); ShowWindow( p_main_interface->hwndSlider, SW_SHOW );
ShowWindow( p_main_interface->hwndLabel, SW_SHOW); ShowWindow( p_main_interface->hwndLabel, SW_SHOW );
ShowWindow( p_main_interface->hwndVol, SW_SHOW); ShowWindow( p_main_interface->hwndVol, SW_SHOW );
// only for local file, check if works well with net url // only for local file, check if works well with net url
shortname = strrchr( p_intf->p_sys->p_input->input.p_item->psz_name, '\\' ); shortname = strrchr( p_intf->p_sys->p_input->input.p_item->psz_name, '\\' );
if (! shortname) if (! shortname)
shortname = p_intf->p_sys->p_input->input.p_item->psz_name; shortname = p_intf->p_sys->p_input->input.p_item->psz_name;
else else shortname++;
shortname++;
size = MultiByteToWideChar (CP_ACP, 0, shortname, -1, NULL, 0);
wUnicode = new WCHAR[size+1];
MultiByteToWideChar (CP_ACP, 0, shortname, -1, wUnicode + 1, size) ;
wUnicode[0] = L'\t';
SendMessage( p_main_interface->hwndSB, SB_SETTEXT, SendMessage( p_main_interface->hwndSB, SB_SETTEXT,
(WPARAM) 0, (LPARAM)(LPCTSTR) wUnicode); (WPARAM) 0, (LPARAM)_FROMMB(shortname) );
free( wUnicode );
p_main_interface->TogglePlayButton( PLAYING_S ); p_main_interface->TogglePlayButton( PLAYING_S );
i_old_playing_status = PLAYING_S; i_old_playing_status = PLAYING_S;
...@@ -179,20 +170,15 @@ void Timer::Notify( void ) ...@@ -179,20 +170,15 @@ void Timer::Notify( void )
p_intf->p_sys->i_slider_pos = p_intf->p_sys->i_slider_pos =
(int)(SLIDER_MAX_POS * pos.f_float); (int)(SLIDER_MAX_POS * pos.f_float);
SendMessage( p_main_interface->hwndSlider,TBM_SETPOS, SendMessage( p_main_interface->hwndSlider, TBM_SETPOS,
1, p_intf->p_sys->i_slider_pos ); 1, p_intf->p_sys->i_slider_pos );
var_Get( p_intf->p_sys->p_input, "time", &time ); var_Get( p_intf->p_sys->p_input, "time", &time );
i_seconds = time.i_time / 1000000; i_seconds = time.i_time / 1000000;
secstotimestr ( psz_time, i_seconds ); secstotimestr ( psz_time, i_seconds );
size = MultiByteToWideChar (CP_ACP, 0, psz_time, -1, NULL, 0);
wUnicode = new WCHAR[size];
MultiByteToWideChar (CP_ACP, 0, psz_time, -1, wUnicode, size) ;
SendMessage( p_main_interface->hwndLabel, WM_SETTEXT, SendMessage( p_main_interface->hwndLabel, WM_SETTEXT,
(WPARAM) 1, (LPARAM)(LPCTSTR) wUnicode ); (WPARAM)1, (LPARAM)_FROMMB(psz_time) );
free( wUnicode );
} }
} }
} }
...@@ -216,15 +202,12 @@ void Timer::Notify( void ) ...@@ -216,15 +202,12 @@ void Timer::Notify( void )
var_Get( p_input, "rate", &val ); var_Get( p_input, "rate", &val );
if( i_old_rate != val.i_int ) if( i_old_rate != val.i_int )
{ {
wUnicode = new WCHAR[10]; TCHAR psz_text[15];
swprintf( wUnicode + 2, TEXT("x%.2f"), 1000.0 / val.i_int ); _stprintf( psz_text + 2, _T("x%.2f"), 1000.0 / val.i_int );
wUnicode[0] = L'\t'; psz_text[0] = psz_text[1] = _T('\t');
wUnicode[1] = L'\t';
SendMessage( p_main_interface->hwndSB, SB_SETTEXT, SendMessage( p_main_interface->hwndSB, SB_SETTEXT,
(WPARAM) 1, (LPARAM)(LPCTSTR) wUnicode); (WPARAM) 1, (LPARAM)(LPCTSTR) psz_text );
free(wUnicode);
i_old_rate = val.i_int; i_old_rate = val.i_int;
} }
......
...@@ -229,32 +229,9 @@ int VideoWindow::ControlWindow( void *p_window, int i_query, va_list args ) ...@@ -229,32 +229,9 @@ int VideoWindow::ControlWindow( void *p_window, int i_query, va_list args )
switch( i_query ) switch( i_query )
{ {
case VOUT_SET_ZOOM: case VOUT_SET_ZOOM:
{
double f_arg = va_arg( args, double );
#if 0
/* Update dimensions */
wxSizeEvent event( wxSize((int)(p_vout->i_window_width * f_arg),
(int)(p_vout->i_window_height * f_arg)),
UpdateSize_Event );
AddPendingEvent( event );
#endif
i_ret = VLC_SUCCESS;
}
break; break;
case VOUT_SET_STAY_ON_TOP: case VOUT_SET_STAY_ON_TOP:
{
int i_arg = va_arg( args, int );
#if 0
wxCommandEvent event( wxEVT_VLC_VIDEO, SetStayOnTop_Event );
event.SetInt( i_arg );
AddPendingEvent( event );
#endif
i_ret = VLC_SUCCESS;
}
break; break;
default: default:
......
...@@ -36,7 +36,6 @@ ...@@ -36,7 +36,6 @@
#if defined( UNDER_CE ) && defined(__MINGW32__) #if defined( UNDER_CE ) && defined(__MINGW32__)
/* This is a gross hack for the wince gcc cross-compiler */ /* This is a gross hack for the wince gcc cross-compiler */
char *strerror( int );
# define _off_t long # define _off_t long
#endif #endif
...@@ -47,7 +46,7 @@ ...@@ -47,7 +46,7 @@
#include <vector> #include <vector>
using namespace std; using namespace std;
vector<string> SeparateEntries( LPWSTR entries ); vector<string> SeparateEntries( TCHAR *entries );
class MenuItemExt; class MenuItemExt;
class VideoWindow; class VideoWindow;
...@@ -544,8 +543,8 @@ protected: ...@@ -544,8 +543,8 @@ protected:
return psz_wtomb; return psz_wtomb;
} }
#else #else
# define _FROMMB(a) # define _FROMMB(a) a
# define _TOMB(a) # define _TOMB(a) a
#endif #endif
#if defined( ENABLE_NLS ) && defined( ENABLE_UTF8 ) #if defined( ENABLE_NLS ) && defined( ENABLE_UTF8 )
...@@ -606,6 +605,12 @@ extern "C" { ...@@ -606,6 +605,12 @@ extern "C" {
} NMRGINFO, *PNMRGINFO; } NMRGINFO, *PNMRGINFO;
} }
#if defined( WIN32 ) && !defined( UNDER_CE )
# define SHFullScreen(a,b)
# define SHInitDialog(a)
# define SHCreateMenuBar(a) 1
#endif
#endif //WINCE_RESOURCE #endif //WINCE_RESOURCE
#define IDD_ABOUT 101 #define IDD_ABOUT 101
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment