Commit 909088e8 authored by Gildas Bazin's avatar Gildas Bazin

* modules/gui/wince: some more code cleanup + fixes.

parent 67099af7
...@@ -191,15 +191,10 @@ PURPOSE: ...@@ -191,15 +191,10 @@ PURPOSE:
Processes messages sent to the main window. Processes messages sent to the main window.
***********************************************************************/ ***********************************************************************/
LRESULT FileInfo::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp, LRESULT FileInfo::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp )
PBOOL pbProcessed )
{ {
SHINITDLGINFO shidi; SHINITDLGINFO shidi;
LRESULT lResult = CBaseWindow::WndProc( hwnd, msg, wp, lp, pbProcessed );
BOOL bWasProcessed = *pbProcessed;
*pbProcessed = TRUE;
switch( msg ) switch( msg )
{ {
case WM_INITDIALOG: case WM_INITDIALOG:
...@@ -211,25 +206,22 @@ LRESULT FileInfo::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp, ...@@ -211,25 +206,22 @@ LRESULT FileInfo::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp,
CreateTreeView( hwnd ); CreateTreeView( hwnd );
UpdateWindow( hwnd ); UpdateWindow( hwnd );
SHFullScreen( GetForegroundWindow(), SHFS_HIDESIPBUTTON ); SHFullScreen( GetForegroundWindow(), SHFS_HIDESIPBUTTON );
return lResult; break;
case WM_CLOSE:
EndDialog( hwnd, LOWORD( wp ) );
break;
case WM_COMMAND: case WM_COMMAND:
if ( LOWORD(wp) == IDOK ) if ( LOWORD(wp) == IDOK )
{ {
EndDialog( hwnd, LOWORD( wp ) ); EndDialog( hwnd, LOWORD( wp ) );
return TRUE;
} }
*pbProcessed = bWasProcessed; break;
lResult = FALSE;
return lResult;
default: default:
// the message was not processed break;
// indicate if the base class handled it
*pbProcessed = bWasProcessed;
lResult = FALSE;
return lResult;
} }
return lResult; return FALSE;
} }
...@@ -37,7 +37,7 @@ ...@@ -37,7 +37,7 @@
#include <windows.h> #include <windows.h>
#include <windowsx.h> #include <windowsx.h>
#include <commctrl.h> #include <commctrl.h>
#include <commdlg.h> // common dialogs -> fileopen.lib ? #include <commdlg.h>
#define NUMIMAGES 9 // Number of buttons in the toolbar #define NUMIMAGES 9 // Number of buttons in the toolbar
#define IMAGEWIDTH 17 // Width of the buttons in the toolbar #define IMAGEWIDTH 17 // Width of the buttons in the toolbar
...@@ -45,7 +45,6 @@ ...@@ -45,7 +45,6 @@
#define BUTTONWIDTH 0 // Width of the button images in the toolbar #define BUTTONWIDTH 0 // Width of the button images in the toolbar
#define BUTTONHEIGHT 0 // Height of the button images in the toolbar #define BUTTONHEIGHT 0 // Height of the button images in the toolbar
#define ID_TOOLBAR 2000 // Identifier of the main tool bar #define ID_TOOLBAR 2000 // Identifier of the main tool bar
#define dwTBFontStyle TBSTYLE_BUTTON | TBSTYLE_CHECK | TBSTYLE_GROUP // style for toolbar buttons
// Help strings // Help strings
#define HELP_SIMPLE _T("Quick file open") #define HELP_SIMPLE _T("Quick file open")
...@@ -129,9 +128,14 @@ BOOL Interface::InitInstance( HINSTANCE hInstance, intf_thread_t *_p_intf ) ...@@ -129,9 +128,14 @@ BOOL Interface::InitInstance( HINSTANCE hInstance, intf_thread_t *_p_intf )
wc.lpszClassName = _T("VLC WinCE"); wc.lpszClassName = _T("VLC WinCE");
if( !RegisterClass( &wc ) ) return FALSE; if( !RegisterClass( &wc ) ) return FALSE;
#ifndef WS_OVERLAPPEDWINDOW
# define WS_OVERLAPPEDWINDOW 0xcf0000
#endif
// Create main window // Create main window
hwndMain = hwndMain =
CreateWindow( _T("VLC WinCE"), _T("VLC media player"), WS_VISIBLE, CreateWindow( _T("VLC WinCE"), _T("VLC media player"),
WS_OVERLAPPEDWINDOW|WS_SIZEBOX|WS_VISIBLE,
0, MENU_HEIGHT, CW_USEDEFAULT, CW_USEDEFAULT, 0, MENU_HEIGHT, CW_USEDEFAULT, CW_USEDEFAULT,
NULL, NULL, hInstance, (void *)this ); NULL, NULL, hInstance, (void *)this );
...@@ -437,79 +441,79 @@ HWND CreateStatusBar( HWND hwnd, HINSTANCE hInst ) ...@@ -437,79 +441,79 @@ HWND CreateStatusBar( HWND hwnd, HINSTANCE hInst )
} }
/*********************************************************************** /***********************************************************************
FUNCTION:
CreateDialogBox
PURPOSE:
Creates a Dialog Box.
***********************************************************************/
int CBaseWindow::CreateDialogBox( HWND hwnd, CBaseWindow *p_obj )
{
uint8_t p_buffer[sizeof(DLGTEMPLATE) + sizeof(WORD) * 4];
DLGTEMPLATE *p_dlg_template = (DLGTEMPLATE *)p_buffer;
memset( p_dlg_template, 0, sizeof(DLGTEMPLATE) + sizeof(WORD) * 4 );
// these values are arbitrary, they won't be used normally anyhow
p_dlg_template->x = 34; p_dlg_template->y = 22;
p_dlg_template->cx = 144; p_dlg_template->cy = 75;
p_dlg_template->style =
DS_MODALFRAME|WS_POPUP|WS_CAPTION|WS_SYSMENU|WS_SIZEBOX;
return DialogBoxIndirectParam( GetModuleHandle(0), p_dlg_template, hwnd,
(DLGPROC)p_obj->BaseWndProc, (LPARAM)p_obj );
}
/***********************************************************************
FUNCTION: FUNCTION:
BaseWndProc BaseWndProc
PURPOSE: PURPOSE:
Processes messages sent to the main window. Processes messages sent to the main window.
***********************************************************************/ ***********************************************************************/
LRESULT CALLBACK CBaseWindow::BaseWndProc( HWND hwnd, UINT msg, WPARAM wParam, LRESULT CALLBACK CBaseWindow::BaseWndProc( HWND hwnd, UINT msg, WPARAM wParam,
LPARAM lParam ) LPARAM lParam )
{ {
CBaseWindow *p_obj;
// check to see if a copy of the 'this' pointer needs to be saved // check to see if a copy of the 'this' pointer needs to be saved
if( msg == WM_CREATE ) if( msg == WM_CREATE )
{ {
CBaseWindow *pObj = reinterpret_cast<CBaseWindow *> p_obj = (CBaseWindow *)(((LPCREATESTRUCT)lParam)->lpCreateParams);
((long)((LPCREATESTRUCT)lParam)->lpCreateParams); SetWindowLong( hwnd, GWL_USERDATA,
::SetWindowLong( hwnd, GWL_USERDATA,
(LONG)((LPCREATESTRUCT)lParam)->lpCreateParams ); (LONG)((LPCREATESTRUCT)lParam)->lpCreateParams );
pObj->DlgFlag = FALSE; p_obj->hWnd = hwnd;
pObj->hWnd = hwnd; // videowindow
} }
if( msg == WM_INITDIALOG ) if( msg == WM_INITDIALOG )
{ {
CBaseWindow *pObj = reinterpret_cast<CBaseWindow *>(lParam); p_obj = (CBaseWindow *)lParam;
::SetWindowLong( hwnd, GWL_USERDATA, lParam ); SetWindowLong( hwnd, GWL_USERDATA, lParam );
pObj->DlgFlag = TRUE; p_obj->hWnd = hwnd;
pObj->hWnd = hwnd; //streamout
} }
BOOL bProcessed = FALSE;
LRESULT lResult;
// Retrieve the pointer // Retrieve the pointer
CBaseWindow *pObj = p_obj = (CBaseWindow *)GetWindowLong( hwnd, GWL_USERDATA );
reinterpret_cast<CBaseWindow *>(::GetWindowLong( hwnd, GWL_USERDATA ));
if( !pObj ) return DefWindowProc( hwnd, msg, wParam, lParam ); if( !p_obj ) return DefWindowProc( hwnd, msg, wParam, lParam );
// Filter message through child classes // Filter message through child classes
if( pObj ) return p_obj->WndProc( hwnd, msg, wParam, lParam );
lResult = pObj->WndProc( hwnd, msg, wParam, lParam, &bProcessed );
if( pObj->DlgFlag )
return bProcessed; // processing a dialog message return TRUE if processed
else if( !bProcessed )
// If message was unprocessed and not a dialog, send it back to Windows
lResult = DefWindowProc( hwnd, msg, wParam, lParam );
return lResult; // processing a window message return FALSE if processed
} }
/*********************************************************************** /***********************************************************************
FUNCTION: FUNCTION:
WndProc WndProc
PURPOSE: PURPOSE:
Processes messages sent to the main window. Processes messages sent to the main window.
***********************************************************************/ ***********************************************************************/
LRESULT CALLBACK Interface::WndProc( HWND hwnd, UINT msg, WPARAM wp, LRESULT CALLBACK Interface::WndProc( HWND hwnd, UINT msg, WPARAM wp,
LPARAM lp, PBOOL pbProcessed ) LPARAM lp )
{ {
// call the base class first
LRESULT lResult = CBaseWindow::WndProc( hwnd, msg, wp, lp, pbProcessed );
*pbProcessed = TRUE;
switch( msg ) switch( msg )
{ {
case WM_CREATE: case WM_CREATE:
{
hwndCB = CreateMenuBar( hwnd, hInst ); hwndCB = CreateMenuBar( hwnd, hInst );
hwndTB = CreateToolBar( hwnd, hInst ); hwndTB = CreateToolBar( hwnd, hInst );
hwndSlider = CreateSliderBar( hwnd, hInst ); hwndSlider = CreateSliderBar( hwnd, hInst );
...@@ -521,62 +525,59 @@ LRESULT CALLBACK Interface::WndProc( HWND hwnd, UINT msg, WPARAM wp, ...@@ -521,62 +525,59 @@ LRESULT CALLBACK Interface::WndProc( HWND hwnd, UINT msg, WPARAM wp,
/* Video window */ /* Video window */
if( config_GetInt( pIntf, "wince-embed" ) ) if( config_GetInt( pIntf, "wince-embed" ) )
video = CreateVideoWindow( pIntf, hInst, hwnd ); video = CreateVideoWindow( pIntf, hwnd );
ti = new Timer(pIntf, hwnd, this); ti = new Timer(pIntf, hwnd, this);
// Hide the SIP button (WINCE only) // Hide the SIP button (WINCE only)
SetForegroundWindow( hwnd ); SetForegroundWindow( hwnd );
SHFullScreen( GetForegroundWindow(), SHFS_HIDESIPBUTTON ); SHFullScreen( GetForegroundWindow(), SHFS_HIDESIPBUTTON );
} break;
return lResult;
case WM_COMMAND: case WM_COMMAND:
switch( GET_WM_COMMAND_ID(wp,lp) ) switch( GET_WM_COMMAND_ID(wp,lp) )
{ {
case ID_FILE_QUICKOPEN: case ID_FILE_QUICKOPEN:
OnOpenFileSimple(); OnOpenFileSimple();
return lResult; break;
case ID_FILE_OPENFILE: case ID_FILE_OPENFILE:
open = new OpenDialog( pIntf, hInst, FILE_ACCESS, open = new OpenDialog( pIntf, hInst, FILE_ACCESS,
ID_FILE_OPENFILE, OPEN_NORMAL ); ID_FILE_OPENFILE, OPEN_NORMAL );
DialogBoxParam( hInst, (LPCTSTR)IDD_DUMMY, hwnd, CreateDialogBox( hwnd, open );
(DLGPROC)open->BaseWndProc, (long)open );
delete open; delete open;
return lResult; break;
case ID_FILE_OPENNET: case ID_FILE_OPENNET:
open = new OpenDialog( pIntf, hInst, NET_ACCESS, ID_FILE_OPENNET, open = new OpenDialog( pIntf, hInst, NET_ACCESS, ID_FILE_OPENNET,
OPEN_NORMAL ); OPEN_NORMAL );
DialogBoxParam( hInst, (LPCTSTR)IDD_DUMMY, hwnd, CreateDialogBox( hwnd, open );
(DLGPROC)open->BaseWndProc, (long)open );
delete open; delete open;
return lResult; break;
case PlayStream_Event: case PlayStream_Event:
OnPlayStream(); OnPlayStream();
return lResult; break;
case StopStream_Event: case StopStream_Event:
OnStopStream(); OnStopStream();
return lResult; break;
case PrevStream_Event: case PrevStream_Event:
OnPrevStream(); OnPrevStream();
return lResult; break;
case NextStream_Event: case NextStream_Event:
OnNextStream(); OnNextStream();
return lResult; break;
case SlowStream_Event: case SlowStream_Event:
OnSlowStream(); OnSlowStream();
return lResult; break;
case FastStream_Event: case FastStream_Event:
OnFastStream(); OnFastStream();
return lResult; break;
case ID_FILE_ABOUT: case ID_FILE_ABOUT:
{ {
...@@ -588,40 +589,36 @@ LRESULT CALLBACK Interface::WndProc( HWND hwnd, UINT msg, WPARAM wp, ...@@ -588,40 +589,36 @@ LRESULT CALLBACK Interface::WndProc( HWND hwnd, UINT msg, WPARAM wp,
MessageBox( hwnd, _FROMMB(about.c_str()), MessageBox( hwnd, _FROMMB(about.c_str()),
_T("About VLC media player"), MB_OK ); _T("About VLC media player"), MB_OK );
return lResult; break;
} }
case ID_FILE_EXIT: case ID_FILE_EXIT:
SendMessage( hwnd, WM_CLOSE, 0, 0 ); SendMessage( hwnd, WM_CLOSE, 0, 0 );
return lResult; break;
case ID_VIEW_STREAMINFO: case ID_VIEW_STREAMINFO:
fi = new FileInfo( pIntf, hInst ); fi = new FileInfo( pIntf, hInst );
DialogBoxParam( hInst, (LPCTSTR)IDD_DUMMY, hwnd, CreateDialogBox( hwnd, fi );
(DLGPROC)fi->BaseWndProc, (long)fi );
delete fi; delete fi;
return lResult; break;
case ID_VIEW_MESSAGES: case ID_VIEW_MESSAGES:
hmsg = new Messages( pIntf, hInst ); hmsg = new Messages( pIntf, hInst );
DialogBoxParam( hInst, (LPCTSTR)IDD_MESSAGES, hwnd, CreateDialogBox( hwnd, hmsg );
(DLGPROC)hmsg->BaseWndProc, (long)hmsg );
delete hmsg; delete hmsg;
return lResult; break;
case ID_VIEW_PLAYLIST: case ID_VIEW_PLAYLIST:
pl = new Playlist( pIntf, hInst ); pl = new Playlist( pIntf, hInst );
DialogBoxParam( hInst, (LPCTSTR)IDD_DUMMY, hwnd, CreateDialogBox( hwnd, pl );
(DLGPROC)pl->BaseWndProc, (long)pl );
delete pl; delete pl;
return lResult; break;
case ID_SETTINGS_PREF: case ID_SETTINGS_PREF:
pref = new PrefsDialog( pIntf, hInst ); pref = new PrefsDialog( pIntf, hInst );
DialogBoxParam( hInst, (LPCTSTR)IDD_DUMMY, hwnd, CreateDialogBox( hwnd, pref );
(DLGPROC)pref->BaseWndProc, (long)pref );
delete pref; delete pref;
return lResult; break;
default: default:
OnMenuEvent( pIntf, GET_WM_COMMAND_ID(wp,lp) ); OnMenuEvent( pIntf, GET_WM_COMMAND_ID(wp,lp) );
...@@ -631,7 +628,7 @@ LRESULT CALLBACK Interface::WndProc( HWND hwnd, UINT msg, WPARAM wp, ...@@ -631,7 +628,7 @@ LRESULT CALLBACK Interface::WndProc( HWND hwnd, UINT msg, WPARAM wp,
case WM_TIMER: case WM_TIMER:
ti->Notify(); ti->Notify();
return lResult; break;
case WM_CTLCOLORSTATIC: case WM_CTLCOLORSTATIC:
if( ( (HWND)lp == hwndSlider ) || ( (HWND)lp == hwndVol ) ) if( ( (HWND)lp == hwndSlider ) || ( (HWND)lp == hwndVol ) )
...@@ -646,19 +643,11 @@ LRESULT CALLBACK Interface::WndProc( HWND hwnd, UINT msg, WPARAM wp, ...@@ -646,19 +643,11 @@ LRESULT CALLBACK Interface::WndProc( HWND hwnd, UINT msg, WPARAM wp,
break; break;
case WM_HSCROLL: case WM_HSCROLL:
if( (HWND)lp == hwndSlider ) if( (HWND)lp == hwndSlider ) OnSliderUpdate( wp );
{
OnSliderUpdate( wp );
return lResult;
}
break; break;
case WM_VSCROLL: case WM_VSCROLL:
if( (HWND)lp == hwndVol ) if( (HWND)lp == hwndVol ) OnChange( wp );
{
OnChange( wp );
return lResult;
}
break; break;
case WM_INITMENUPOPUP: case WM_INITMENUPOPUP:
...@@ -697,19 +686,20 @@ LRESULT CALLBACK Interface::WndProc( HWND hwnd, UINT msg, WPARAM wp, ...@@ -697,19 +686,20 @@ LRESULT CALLBACK Interface::WndProc( HWND hwnd, UINT msg, WPARAM wp,
WM_NOTIFY, wp, lp ); WM_NOTIFY, wp, lp );
return lResult; return lResult;
#endif #endif
break;
case WM_HELP: case WM_HELP:
MessageBox (hwnd, _T("Help"), _T("Help"), MB_OK); MessageBox (hwnd, _T("Help"), _T("Help"), MB_OK);
return lResult; break;
case WM_CLOSE: case WM_CLOSE:
DestroyWindow( hwndCB ); DestroyWindow( hwndCB );
DestroyWindow( hwnd ); DestroyWindow( hwnd );
return lResult; break;
case WM_DESTROY: case WM_DESTROY:
PostQuitMessage( 0 ); PostQuitMessage( 0 );
return lResult; break;
} }
return DefWindowProc( hwnd, msg, wp, lp ); return DefWindowProc( hwnd, msg, wp, lp );
......
...@@ -65,18 +65,13 @@ PURPOSE: ...@@ -65,18 +65,13 @@ PURPOSE:
Processes messages sent to the main window. Processes messages sent to the main window.
***********************************************************************/ ***********************************************************************/
LRESULT ItemInfoDialog::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp, LRESULT ItemInfoDialog::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp )
PBOOL pbProcessed )
{ {
SHINITDLGINFO shidi; SHINITDLGINFO shidi;
SHMENUBARINFO mbi; SHMENUBARINFO mbi;
INITCOMMONCONTROLSEX iccex; INITCOMMONCONTROLSEX iccex;
RECT rcClient; RECT rcClient;
LRESULT lResult = CBaseWindow::WndProc( hwnd, msg, wp, lp, pbProcessed );
BOOL bWasProcessed = *pbProcessed;
*pbProcessed = TRUE;
switch( msg ) switch( msg )
{ {
case WM_INITDIALOG: case WM_INITDIALOG:
...@@ -155,28 +150,25 @@ LRESULT ItemInfoDialog::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp, ...@@ -155,28 +150,25 @@ LRESULT ItemInfoDialog::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp,
hwnd, NULL, hInst, NULL ); hwnd, NULL, hInst, NULL );
UpdateInfo(); UpdateInfo();
return lResult; break;
case WM_CLOSE:
EndDialog( hwnd, LOWORD( wp ) );
break;
case WM_COMMAND: case WM_COMMAND:
if( LOWORD(wp) == IDOK ) if( LOWORD(wp) == IDOK )
{ {
OnOk(); OnOk();
EndDialog( hwnd, LOWORD( wp ) ); EndDialog( hwnd, LOWORD( wp ) );
return TRUE;
} }
*pbProcessed = bWasProcessed; break;
lResult = FALSE;
return lResult;
default: default:
// the message was not processed break;
// indicate if the base class handled it
*pbProcessed = bWasProcessed;
lResult = FALSE;
return lResult;
} }
return lResult; return FALSE;
} }
/***************************************************************************** /*****************************************************************************
......
...@@ -69,8 +69,7 @@ PURPOSE: ...@@ -69,8 +69,7 @@ PURPOSE:
Processes messages sent to the main window. Processes messages sent to the main window.
***********************************************************************/ ***********************************************************************/
LRESULT Messages::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp, LRESULT Messages::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp )
PBOOL pbProcessed )
{ {
SHINITDLGINFO shidi; SHINITDLGINFO shidi;
...@@ -79,11 +78,7 @@ LRESULT Messages::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp, ...@@ -79,11 +78,7 @@ LRESULT Messages::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp,
int i_dummy; int i_dummy;
HANDLE fichier; HANDLE fichier;
LRESULT lResult = CBaseWindow::WndProc( hwnd, msg, wp, lp, pbProcessed ); switch( msg )
BOOL bWasProcessed = *pbProcessed;
*pbProcessed = TRUE;
switch (msg)
{ {
case WM_INITDIALOG: case WM_INITDIALOG:
shidi.dwMask = SHIDIM_FLAGS; shidi.dwMask = SHIDIM_FLAGS;
...@@ -116,22 +111,26 @@ LRESULT Messages::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp, ...@@ -116,22 +111,26 @@ LRESULT Messages::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp,
SetTimer( hwnd, 1, 500 /*milliseconds*/, NULL ); SetTimer( hwnd, 1, 500 /*milliseconds*/, NULL );
SHFullScreen( GetForegroundWindow(), SHFS_HIDESIPBUTTON ); SHFullScreen( GetForegroundWindow(), SHFS_HIDESIPBUTTON );
return lResult; break;
case WM_TIMER: case WM_TIMER:
UpdateLog(); UpdateLog();
return lResult; break;
case WM_CLOSE:
EndDialog( hwnd, LOWORD( wp ) );
break;
case WM_COMMAND: case WM_COMMAND:
switch( LOWORD(wp) ) switch( LOWORD(wp) )
{ {
case IDOK: case IDOK:
EndDialog( hwnd, LOWORD( wp ) ); EndDialog( hwnd, LOWORD( wp ) );
return TRUE; break;
case IDCLEAR: case IDCLEAR:
ListView_DeleteAllItems( hListView ); ListView_DeleteAllItems( hListView );
return TRUE; break;
case IDSAVEAS: case IDSAVEAS:
memset( &(ofn), 0, sizeof(ofn) ); memset( &(ofn), 0, sizeof(ofn) );
...@@ -170,23 +169,17 @@ LRESULT Messages::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp, ...@@ -170,23 +169,17 @@ LRESULT Messages::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp,
} }
SHFullScreen( GetForegroundWindow(), SHFS_HIDESIPBUTTON ); SHFullScreen( GetForegroundWindow(), SHFS_HIDESIPBUTTON );
return TRUE; break;
default: default:
*pbProcessed = bWasProcessed; break;
lResult = FALSE;
return lResult;
} }
default: default:
// the message was not processed break;
// indicate if the base class handled it
*pbProcessed = bWasProcessed;
lResult = FALSE;
return lResult;
} }
return lResult; return FALSE;
} }
void Messages::UpdateLog() void Messages::UpdateLog()
......
...@@ -93,8 +93,7 @@ PURPOSE: ...@@ -93,8 +93,7 @@ PURPOSE:
Processes messages sent to the main window. Processes messages sent to the main window.
***********************************************************************/ ***********************************************************************/
LRESULT OpenDialog::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp, LRESULT OpenDialog::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp )
PBOOL pbProcessed )
{ {
SHINITDLGINFO shidi; SHINITDLGINFO shidi;
SHMENUBARINFO mbi; SHMENUBARINFO mbi;
...@@ -102,10 +101,6 @@ LRESULT OpenDialog::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp, ...@@ -102,10 +101,6 @@ LRESULT OpenDialog::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp,
RECT rcClient; RECT rcClient;
TC_ITEM tcItem; TC_ITEM tcItem;
LRESULT lResult = CBaseWindow::WndProc( hwnd, msg, wp, lp, pbProcessed );
BOOL bWasProcessed = *pbProcessed;
*pbProcessed = TRUE;
switch( msg ) switch( msg )
{ {
case WM_INITDIALOG: case WM_INITDIALOG:
...@@ -153,7 +148,6 @@ LRESULT OpenDialog::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp, ...@@ -153,7 +148,6 @@ LRESULT OpenDialog::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp,
0, hInst, 0 ); 0, hInst, 0 );
// No tooltips for ComboBox // No tooltips for ComboBox
label = CreateWindow( _T("STATIC"), label = CreateWindow( _T("STATIC"),
_FROMMB(_("Alternatively, you can build an MRL " _FROMMB(_("Alternatively, you can build an MRL "
"using one of the following predefined " "using one of the following predefined "
...@@ -193,48 +187,45 @@ LRESULT OpenDialog::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp, ...@@ -193,48 +187,45 @@ LRESULT OpenDialog::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp,
NetPanel( hwnd ); NetPanel( hwnd );
OnPageChange(); OnPageChange();
break;
return lResult; case WM_CLOSE:
EndDialog( hwnd, LOWORD( wp ) );
break;
case WM_COMMAND: case WM_COMMAND:
if( LOWORD(wp) == IDOK ) if( LOWORD(wp) == IDOK )
{ {
OnOk(); OnOk();
EndDialog( hwnd, LOWORD( wp ) ); EndDialog( hwnd, LOWORD( wp ) );
return TRUE; break;
} }
if( HIWORD(wp) == BN_CLICKED ) if( HIWORD(wp) == BN_CLICKED )
{ {
if( (HWND)lp == net_radios[0] ) if( (HWND)lp == net_radios[0] )
{ {
OnNetTypeChange( NetRadio1_Event ); OnNetTypeChange( NetRadio1_Event );
return TRUE;
} else if( (HWND)lp == net_radios[1] ) } else if( (HWND)lp == net_radios[1] )
{ {
OnNetTypeChange( NetRadio2_Event ); OnNetTypeChange( NetRadio2_Event );
return TRUE;
} else if( (HWND)lp == net_radios[2] ) } else if( (HWND)lp == net_radios[2] )
{ {
OnNetTypeChange( NetRadio3_Event ); OnNetTypeChange( NetRadio3_Event );
return TRUE;
} else if( (HWND)lp == net_radios[3] ) } else if( (HWND)lp == net_radios[3] )
{ {
OnNetTypeChange( NetRadio4_Event ); OnNetTypeChange( NetRadio4_Event );
return TRUE;
} else if( (HWND)lp == subsfile_checkbox ) } else if( (HWND)lp == subsfile_checkbox )
{ {
OnSubsFileEnable(); OnSubsFileEnable();
return TRUE;
} else if( (HWND)lp == subsfile_button ) } else if( (HWND)lp == subsfile_button )
{ {
OnSubsFileSettings( hwnd ); OnSubsFileSettings( hwnd );
return TRUE;
} else if( (HWND)lp == browse_button ) } else if( (HWND)lp == browse_button )
{ {
SHFullScreen( GetForegroundWindow(), SHFS_HIDESIPBUTTON ); SHFullScreen( GetForegroundWindow(), SHFS_HIDESIPBUTTON );
OnFileBrowse(); OnFileBrowse();
return TRUE;
} }
break;
} }
if( HIWORD(wp) == EN_CHANGE ) if( HIWORD(wp) == EN_CHANGE )
{ {
...@@ -262,31 +253,17 @@ LRESULT OpenDialog::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp, ...@@ -262,31 +253,17 @@ LRESULT OpenDialog::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp,
OnFilePanelChange(); OnFilePanelChange();
} }
} }
break;
*pbProcessed = bWasProcessed;
lResult = FALSE;
return lResult;
case WM_NOTIFY: case WM_NOTIFY:
if( (((NMHDR *)lp)->code) == TCN_SELCHANGE ) if( (((NMHDR *)lp)->code) == TCN_SELCHANGE ) OnPageChange();
{ break;
OnPageChange();
return TRUE;
}
*pbProcessed = bWasProcessed;
lResult = FALSE;
return lResult;
default: default:
// the message was not processed break;
// indicate if the base class handled it
*pbProcessed = bWasProcessed;
lResult = FALSE;
return lResult;
} }
return lResult; return FALSE;
} }
/***************************************************************************** /*****************************************************************************
...@@ -826,9 +803,7 @@ void OpenDialog::OnSubsFileSettings( HWND hwnd ) ...@@ -826,9 +803,7 @@ void OpenDialog::OnSubsFileSettings( HWND hwnd )
/* Show/hide the open dialog */ /* Show/hide the open dialog */
SubsFileDialog *subsfile_dialog = new SubsFileDialog( p_intf, hInst ); SubsFileDialog *subsfile_dialog = new SubsFileDialog( p_intf, hInst );
DialogBoxParam( hInst, (LPCTSTR)IDD_DUMMY, hwnd, CreateDialogBox( hwnd, subsfile_dialog );
(DLGPROC)subsfile_dialog->BaseWndProc,
(long)subsfile_dialog );
subsfile_mrl.clear(); subsfile_mrl.clear();
......
...@@ -138,32 +138,23 @@ Playlist::Playlist( intf_thread_t *_p_intf, HINSTANCE _hInst ) ...@@ -138,32 +138,23 @@ Playlist::Playlist( intf_thread_t *_p_intf, HINSTANCE _hInst )
} }
/*********************************************************************** /***********************************************************************
FUNCTION: FUNCTION:
WndProc WndProc
PURPOSE: PURPOSE:
Processes messages sent to the main window. Processes messages sent to the main window.
***********************************************************************/ ***********************************************************************/
LRESULT Playlist::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp, LRESULT Playlist::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp )
PBOOL pbProcessed )
{ {
SHINITDLGINFO shidi; SHINITDLGINFO shidi;
SHMENUBARINFO mbi; SHMENUBARINFO mbi;
INITCOMMONCONTROLSEX iccex;
RECT rect, rectTB;
DWORD dwStyle;
int bState; int bState;
playlist_t *p_playlist; playlist_t *p_playlist;
DWORD dwStyle;
RECT rect, rectTB;
INITCOMMONCONTROLSEX iccex;
LRESULT lResult = CBaseWindow::WndProc( hwnd, msg, wp, lp, pbProcessed );
BOOL bWasProcessed = *pbProcessed;
*pbProcessed = TRUE;
switch( msg ) switch( msg )
{ {
case WM_INITDIALOG: case WM_INITDIALOG:
...@@ -206,12 +197,7 @@ LRESULT Playlist::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp, ...@@ -206,12 +197,7 @@ LRESULT Playlist::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp,
sizeof (tbButton2) / sizeof (TBBUTTON), sizeof (tbButton2) / sizeof (TBBUTTON),
BUTTONWIDTH, BUTTONHEIGHT, BUTTONWIDTH, BUTTONHEIGHT,
IMAGEWIDTH, IMAGEHEIGHT, sizeof(TBBUTTON) ); IMAGEWIDTH, IMAGEHEIGHT, sizeof(TBBUTTON) );
if( !hwndTB ) if( !hwndTB ) break;
{
*pbProcessed = bWasProcessed;
lResult = FALSE;
return lResult;
}
// Add ToolTips to the toolbar. // Add ToolTips to the toolbar.
SendMessage( hwndTB, TB_SETTOOLTIPS, (WPARAM) NUMIMAGES, SendMessage( hwndTB, TB_SETTOOLTIPS, (WPARAM) NUMIMAGES,
...@@ -227,12 +213,8 @@ LRESULT Playlist::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp, ...@@ -227,12 +213,8 @@ LRESULT Playlist::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp,
vlc_value_t val; vlc_value_t val;
p_playlist = (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 );
if( p_playlist == NULL ) if( !p_playlist ) break;
{
*pbProcessed = bWasProcessed;
lResult = FALSE;
return lResult;
}
var_Get( p_playlist , "random", &val ); var_Get( p_playlist , "random", &val );
bState = val.b_bool ? TBSTATE_CHECKED : 0; bState = val.b_bool ? TBSTATE_CHECKED : 0;
SendMessage( hwndTB, TB_SETSTATE, Random_Event, SendMessage( hwndTB, TB_SETSTATE, Random_Event,
...@@ -275,140 +257,141 @@ LRESULT Playlist::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp, ...@@ -275,140 +257,141 @@ LRESULT Playlist::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp,
SetTimer( hwnd, 1, 500 /*milliseconds*/, NULL ); SetTimer( hwnd, 1, 500 /*milliseconds*/, NULL );
SHFullScreen( GetForegroundWindow(), SHFS_HIDESIPBUTTON ); SHFullScreen( GetForegroundWindow(), SHFS_HIDESIPBUTTON );
break;
return lResult;
case WM_TIMER: case WM_TIMER:
UpdatePlaylist(); UpdatePlaylist();
return lResult; break;
case WM_CLOSE:
EndDialog( hwnd, LOWORD( wp ) );
break;
case WM_COMMAND: case WM_COMMAND:
switch( LOWORD(wp) ) switch( LOWORD(wp) )
{ {
case IDOK: case IDOK:
EndDialog( hwnd, LOWORD( wp ) ); EndDialog( hwnd, LOWORD( wp ) );
return TRUE; break;
case ID_MANAGE_OPENPL: case ID_MANAGE_OPENPL:
OnOpen(); OnOpen();
b_need_update = VLC_TRUE; b_need_update = VLC_TRUE;
return TRUE; break;
case ID_MANAGE_SAVEPL: case ID_MANAGE_SAVEPL:
SHFullScreen( GetForegroundWindow(), SHFS_SHOWSIPBUTTON ); SHFullScreen( GetForegroundWindow(), SHFS_SHOWSIPBUTTON );
OnSave(); OnSave();
SHFullScreen( GetForegroundWindow(), SHFS_HIDESIPBUTTON ); SHFullScreen( GetForegroundWindow(), SHFS_HIDESIPBUTTON );
return TRUE; break;
case ID_MANAGE_SIMPLEADD: case ID_MANAGE_SIMPLEADD:
SHFullScreen( GetForegroundWindow(), SHFS_SHOWSIPBUTTON ); SHFullScreen( GetForegroundWindow(), SHFS_SHOWSIPBUTTON );
OnAddFile(); OnAddFile();
SHFullScreen( GetForegroundWindow(), SHFS_HIDESIPBUTTON ); SHFullScreen( GetForegroundWindow(), SHFS_HIDESIPBUTTON );
b_need_update = VLC_TRUE; b_need_update = VLC_TRUE;
return TRUE; break;
case ID_MANAGE_ADDMRL: case ID_MANAGE_ADDMRL:
SHFullScreen( GetForegroundWindow(), SHFS_SHOWSIPBUTTON ); SHFullScreen( GetForegroundWindow(), SHFS_SHOWSIPBUTTON );
OnAddMRL(); OnAddMRL();
SHFullScreen( GetForegroundWindow(), SHFS_HIDESIPBUTTON ); SHFullScreen( GetForegroundWindow(), SHFS_HIDESIPBUTTON );
b_need_update = VLC_TRUE; b_need_update = VLC_TRUE;
return TRUE; break;
case ID_SEL_DELETE: case ID_SEL_DELETE:
OnDeleteSelection(); OnDeleteSelection();
b_need_update = VLC_TRUE; b_need_update = VLC_TRUE;
return TRUE; break;
case Infos_Event: case Infos_Event:
SHFullScreen( GetForegroundWindow(), SHFS_SHOWSIPBUTTON ); SHFullScreen( GetForegroundWindow(), SHFS_SHOWSIPBUTTON );
OnPopupInfo( hwnd ); OnPopupInfo( hwnd );
SHFullScreen( GetForegroundWindow(), SHFS_HIDESIPBUTTON ); SHFullScreen( GetForegroundWindow(), SHFS_HIDESIPBUTTON );
b_need_update = VLC_TRUE; b_need_update = VLC_TRUE;
return TRUE; break;
case Up_Event: case Up_Event:
OnUp(); OnUp();
b_need_update = VLC_TRUE; b_need_update = VLC_TRUE;
return TRUE; break;
case Down_Event: case Down_Event:
OnDown(); OnDown();
b_need_update = VLC_TRUE; b_need_update = VLC_TRUE;
return TRUE; break;
case Random_Event: case Random_Event:
OnRandom(); OnRandom();
return TRUE; break;
case Loop_Event: case Loop_Event:
OnLoop(); OnLoop();
return TRUE; break;
case Repeat_Event: case Repeat_Event:
OnRepeat(); OnRepeat();
return TRUE; break;
case ID_SORT_TITLE: case ID_SORT_TITLE:
OnSort( ID_SORT_TITLE ); OnSort( ID_SORT_TITLE );
return TRUE; break;
case ID_SORT_RTITLE: case ID_SORT_RTITLE:
OnSort( ID_SORT_RTITLE ); OnSort( ID_SORT_RTITLE );
return TRUE; break;
case ID_SORT_AUTHOR: case ID_SORT_AUTHOR:
OnSort( ID_SORT_AUTHOR ); OnSort( ID_SORT_AUTHOR );
return TRUE; break;
case ID_SORT_RAUTHOR: case ID_SORT_RAUTHOR:
OnSort( ID_SORT_RAUTHOR ); OnSort( ID_SORT_RAUTHOR );
return TRUE; break;
case ID_SORT_SHUFFLE: case ID_SORT_SHUFFLE:
OnSort( ID_SORT_SHUFFLE ); OnSort( ID_SORT_SHUFFLE );
return TRUE; break;
case ID_SEL_ENABLE: case ID_SEL_ENABLE:
OnEnableSelection(); OnEnableSelection();
return TRUE; break;
case ID_SEL_DISABLE: case ID_SEL_DISABLE:
OnDisableSelection(); OnDisableSelection();
return TRUE; break;
case ID_SEL_INVERT: case ID_SEL_INVERT:
OnInvertSelection(); OnInvertSelection();
return TRUE; break;
case ID_SEL_SELECTALL: case ID_SEL_SELECTALL:
OnSelectAll(); OnSelectAll();
return TRUE; break;
case PopupPlay_Event: case PopupPlay_Event:
OnPopupPlay(); OnPopupPlay();
b_need_update = VLC_TRUE; b_need_update = VLC_TRUE;
return TRUE; break;
case PopupDel_Event: case PopupDel_Event:
OnPopupDel(); OnPopupDel();
b_need_update = VLC_TRUE; b_need_update = VLC_TRUE;
return TRUE; break;
case PopupEna_Event: case PopupEna_Event:
OnPopupEna(); OnPopupEna();
b_need_update = VLC_TRUE; b_need_update = VLC_TRUE;
return TRUE; break;
case PopupInfo_Event: case PopupInfo_Event:
OnPopupInfo( hwnd ); OnPopupInfo( hwnd );
SHFullScreen( GetForegroundWindow(), SHFS_HIDESIPBUTTON ); SHFullScreen( GetForegroundWindow(), SHFS_HIDESIPBUTTON );
b_need_update = VLC_TRUE; b_need_update = VLC_TRUE;
return TRUE; break;
default: default:
*pbProcessed = bWasProcessed; break;
lResult = FALSE;
return lResult;
} }
case WM_NOTIFY: case WM_NOTIFY:
...@@ -417,40 +400,31 @@ LRESULT Playlist::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp, ...@@ -417,40 +400,31 @@ LRESULT Playlist::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp,
{ {
SetWindowLong( hwnd, DWL_MSGRESULT, SetWindowLong( hwnd, DWL_MSGRESULT,
(LONG)ProcessCustomDraw(lp) ); (LONG)ProcessCustomDraw(lp) );
return TRUE;
} }
else if( ( ((LPNMHDR)lp)->hwndFrom == hListView ) && else if( ( ((LPNMHDR)lp)->hwndFrom == hListView ) &&
( ((LPNMHDR)lp)->code == GN_CONTEXTMENU ) ) ( ((LPNMHDR)lp)->code == GN_CONTEXTMENU ) )
{ {
HandlePopupMenu( hwnd, ((PNMRGINFO)lp)->ptAction ); HandlePopupMenu( hwnd, ((PNMRGINFO)lp)->ptAction );
return TRUE;
} }
else if( ( ((LPNMHDR)lp)->hwndFrom == hListView ) && else if( ( ((LPNMHDR)lp)->hwndFrom == hListView ) &&
( ((LPNMHDR)lp)->code == LVN_COLUMNCLICK ) ) ( ((LPNMHDR)lp)->code == LVN_COLUMNCLICK ) )
{ {
OnColSelect( ((LPNMLISTVIEW)lp)->iSubItem ); OnColSelect( ((LPNMLISTVIEW)lp)->iSubItem );
return TRUE;
} }
else if( ( ((LPNMHDR)lp)->hwndFrom == hListView ) && else if( ( ((LPNMHDR)lp)->hwndFrom == hListView ) &&
( ((LPNMHDR)lp)->code == LVN_ITEMACTIVATE ) ) ( ((LPNMHDR)lp)->code == LVN_ITEMACTIVATE ) )
{ {
OnActivateItem( ((LPNMLISTVIEW)lp)->iSubItem ); OnActivateItem( ((LPNMLISTVIEW)lp)->iSubItem );
return TRUE;
} }
break;
*pbProcessed = bWasProcessed;
lResult = FALSE;
return lResult;
default: default:
// the message was not processed // the message was not processed
// indicate if the base class handled it // indicate if the base class handled it
*pbProcessed = bWasProcessed; break;
lResult = FALSE;
return lResult;
} }
return lResult; return FALSE;
} }
LRESULT Playlist::ProcessCustomDraw( LPARAM lParam ) LRESULT Playlist::ProcessCustomDraw( LPARAM lParam )
...@@ -886,9 +860,7 @@ void Playlist::ShowInfos( HWND hwnd, int i_item ) ...@@ -886,9 +860,7 @@ void Playlist::ShowInfos( HWND hwnd, int i_item )
{ {
ItemInfoDialog *iteminfo_dialog = ItemInfoDialog *iteminfo_dialog =
new ItemInfoDialog( p_intf, hInst, p_item ); new ItemInfoDialog( p_intf, hInst, p_item );
DialogBoxParam( hInst, (LPCTSTR)IDD_DUMMY, hwnd, CreateDialogBox( hwnd, iteminfo_dialog );
(DLGPROC)iteminfo_dialog->BaseWndProc,
(long)iteminfo_dialog );
UpdateItem( i_item ); UpdateItem( i_item );
delete iteminfo_dialog; delete iteminfo_dialog;
} }
......
...@@ -160,17 +160,12 @@ PURPOSE: ...@@ -160,17 +160,12 @@ PURPOSE:
Processes messages sent to the main window. Processes messages sent to the main window.
***********************************************************************/ ***********************************************************************/
LRESULT PrefsDialog::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp, LRESULT PrefsDialog::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp )
PBOOL pbProcessed )
{ {
SHINITDLGINFO shidi; SHINITDLGINFO shidi;
SHMENUBARINFO mbi; SHMENUBARINFO mbi;
RECT rcClient; RECT rcClient;
LRESULT lResult = CBaseWindow::WndProc( hwnd, msg, wp, lp, pbProcessed );
BOOL bWasProcessed = *pbProcessed;
*pbProcessed = TRUE;
switch( msg ) switch( msg )
{ {
case WM_INITDIALOG: case WM_INITDIALOG:
...@@ -228,32 +223,30 @@ LRESULT PrefsDialog::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp, ...@@ -228,32 +223,30 @@ LRESULT PrefsDialog::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp,
prefs_tree = new PrefsTreeCtrl( p_intf, this, hwnd, hInst ); prefs_tree = new PrefsTreeCtrl( p_intf, this, hwnd, hInst );
UpdateWindow( hwnd ); UpdateWindow( hwnd );
return lResult; break;
case WM_CLOSE:
EndDialog( hwnd, LOWORD( wp ) );
break;
case WM_COMMAND: case WM_COMMAND:
if( LOWORD(wp) == IDOK ) if( LOWORD(wp) == IDOK )
{ {
OnOk(); OnOk();
EndDialog( hwnd, LOWORD( wp ) ); EndDialog( hwnd, LOWORD( wp ) );
return TRUE;
} }
*pbProcessed = bWasProcessed; break;
lResult = FALSE;
return lResult;
case WM_NOTIFY: case WM_NOTIFY:
if ( ( ((LPNMHDR)lp)->hwndFrom == prefs_tree->hwndTV ) && if( lp && prefs_tree &&
( ((LPNMHDR)lp)->code == TVN_SELCHANGED ) ) ((LPNMHDR)lp)->hwndFrom == prefs_tree->hwndTV &&
((LPNMHDR)lp)->code == TVN_SELCHANGED )
{ {
prefs_tree->OnSelectTreeItem( (NM_TREEVIEW FAR *)(LPNMHDR)lp, prefs_tree->OnSelectTreeItem( (NM_TREEVIEW FAR *)(LPNMHDR)lp,
hwnd, hInst ); hwnd, hInst );
return TRUE;
} }
break;
*pbProcessed = bWasProcessed;
lResult = FALSE;
return lResult;
case WM_VSCROLL: case WM_VSCROLL:
{ {
...@@ -261,7 +254,8 @@ LRESULT PrefsDialog::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp, ...@@ -261,7 +254,8 @@ LRESULT PrefsDialog::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp,
tvi.mask = TVIF_PARAM; tvi.mask = TVIF_PARAM;
tvi.hItem = TreeView_GetSelection( prefs_tree->hwndTV ); tvi.hItem = TreeView_GetSelection( prefs_tree->hwndTV );
TreeView_GetItem( prefs_tree->hwndTV, &tvi ); TreeView_GetItem( prefs_tree->hwndTV, &tvi );
ConfigTreeData *config_data = prefs_tree->FindModuleConfig( (ConfigTreeData *)tvi.lParam ); ConfigTreeData *config_data =
prefs_tree->FindModuleConfig( (ConfigTreeData *)tvi.lParam );
if ( hwnd == config_data->panel->config_window ) if ( hwnd == config_data->panel->config_window )
{ {
int dy; int dy;
...@@ -288,20 +282,14 @@ LRESULT PrefsDialog::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp, ...@@ -288,20 +282,14 @@ LRESULT PrefsDialog::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp,
config_data->panel->oldvalue = newvalue; config_data->panel->oldvalue = newvalue;
} }
break;
} }
*pbProcessed = bWasProcessed;
lResult = FALSE;
return lResult;
default: default:
// the message was not processed break;
// indicate if the base class handled it
*pbProcessed = bWasProcessed;
lResult = FALSE;
return lResult;
} }
return lResult; return FALSE;
} }
/***************************************************************************** /*****************************************************************************
......
...@@ -62,8 +62,7 @@ PURPOSE: ...@@ -62,8 +62,7 @@ PURPOSE:
Processes messages sent to the main window. Processes messages sent to the main window.
***********************************************************************/ ***********************************************************************/
LRESULT SubsFileDialog::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp, LRESULT SubsFileDialog::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp )
PBOOL pbProcessed )
{ {
SHINITDLGINFO shidi; SHINITDLGINFO shidi;
SHMENUBARINFO mbi; SHMENUBARINFO mbi;
...@@ -77,10 +76,6 @@ LRESULT SubsFileDialog::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp, ...@@ -77,10 +76,6 @@ LRESULT SubsFileDialog::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp,
TCHAR psz_text[256]; TCHAR psz_text[256];
LRESULT lResult = CBaseWindow::WndProc( hwnd, msg, wp, lp, pbProcessed );
BOOL bWasProcessed = *pbProcessed;
*pbProcessed = TRUE;
switch( msg ) switch( msg )
{ {
case WM_INITDIALOG: case WM_INITDIALOG:
...@@ -224,7 +219,11 @@ LRESULT SubsFileDialog::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp, ...@@ -224,7 +219,11 @@ LRESULT SubsFileDialog::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp,
UDS_SETBUDDYINT | UDS_NOTHOUSANDS, UDS_SETBUDDYINT | UDS_NOTHOUSANDS,
0, 0, 0, 0, hwnd, 0, hInst, fps_edit, 16000, 0, (int)f_fps ); 0, 0, 0, 0, hwnd, 0, hInst, fps_edit, 16000, 0, (int)f_fps );
return lResult; break;
case WM_CLOSE:
EndDialog( hwnd, LOWORD( wp ) );
break;
case WM_COMMAND: case WM_COMMAND:
if ( LOWORD(wp) == IDOK ) if ( LOWORD(wp) == IDOK )
...@@ -255,7 +254,7 @@ LRESULT SubsFileDialog::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp, ...@@ -255,7 +254,7 @@ LRESULT SubsFileDialog::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp,
subsfile_mrl.push_back( szFps ); subsfile_mrl.push_back( szFps );
EndDialog( hwnd, LOWORD( wp ) ); EndDialog( hwnd, LOWORD( wp ) );
return TRUE; break;
} }
if( HIWORD(wp) == BN_CLICKED ) if( HIWORD(wp) == BN_CLICKED )
{ {
...@@ -263,23 +262,15 @@ LRESULT SubsFileDialog::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp, ...@@ -263,23 +262,15 @@ LRESULT SubsFileDialog::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp,
{ {
SHFullScreen( GetForegroundWindow(), SHFS_HIDESIPBUTTON ); SHFullScreen( GetForegroundWindow(), SHFS_HIDESIPBUTTON );
OnFileBrowse(); OnFileBrowse();
return TRUE;
} }
} }
break;
*pbProcessed = bWasProcessed;
lResult = FALSE;
return lResult;
default: default:
// the message was not processed break;
// indicate if the base class handled it
*pbProcessed = bWasProcessed;
lResult = FALSE;
return lResult;
} }
return lResult; return FALSE;
} }
/***************************************************************************** /*****************************************************************************
......
...@@ -52,7 +52,7 @@ class VideoWindow : public CBaseWindow ...@@ -52,7 +52,7 @@ class VideoWindow : public CBaseWindow
{ {
public: public:
/* Constructor */ /* Constructor */
VideoWindow( intf_thread_t *_p_intf, HINSTANCE _hInst, HWND _p_parent ); VideoWindow( intf_thread_t *_p_intf, HWND _p_parent );
virtual ~VideoWindow(); virtual ~VideoWindow();
void *GetWindow( vout_thread_t *, int *, int *, unsigned int *, void *GetWindow( vout_thread_t *, int *, int *, unsigned int *,
...@@ -68,24 +68,21 @@ private: ...@@ -68,24 +68,21 @@ private:
HWND p_parent; HWND p_parent;
vlc_mutex_t lock; vlc_mutex_t lock;
virtual LRESULT WndProc( HWND hwnd, UINT msg, virtual LRESULT WndProc( HWND, UINT, WPARAM, LPARAM );
WPARAM wParam, LPARAM lParam, PBOOL pbProcessed );
}; };
/***************************************************************************** /*****************************************************************************
* Public methods. * Public methods.
*****************************************************************************/ *****************************************************************************/
CBaseWindow *CreateVideoWindow( intf_thread_t *p_intf, HINSTANCE hInst, CBaseWindow *CreateVideoWindow( intf_thread_t *p_intf, HWND p_parent )
HWND p_parent )
{ {
return new VideoWindow( p_intf, hInst, p_parent ); return new VideoWindow( p_intf, p_parent );
} }
/***************************************************************************** /*****************************************************************************
* Constructor. * Constructor.
*****************************************************************************/ *****************************************************************************/
VideoWindow::VideoWindow( intf_thread_t *_p_intf, HINSTANCE _hInst, VideoWindow::VideoWindow( intf_thread_t *_p_intf, HWND _p_parent )
HWND _p_parent )
{ {
RECT rect; RECT rect;
WNDCLASS wc; WNDCLASS wc;
...@@ -111,7 +108,7 @@ VideoWindow::VideoWindow( intf_thread_t *_p_intf, HINSTANCE _hInst, ...@@ -111,7 +108,7 @@ VideoWindow::VideoWindow( intf_thread_t *_p_intf, HINSTANCE _hInst,
wc.cbClsExtra = 0; wc.cbClsExtra = 0;
wc.cbWndExtra = 0; wc.cbWndExtra = 0;
wc.hIcon = NULL; wc.hIcon = NULL;
wc.hInstance = _hInst; wc.hInstance = GetModuleHandle(0);
wc.hCursor = NULL; wc.hCursor = NULL;
wc.hbrBackground = (HBRUSH)GetStockObject(BLACK_BRUSH); wc.hbrBackground = (HBRUSH)GetStockObject(BLACK_BRUSH);
wc.lpszMenuName = NULL; wc.lpszMenuName = NULL;
...@@ -122,7 +119,7 @@ VideoWindow::VideoWindow( intf_thread_t *_p_intf, HINSTANCE _hInst, ...@@ -122,7 +119,7 @@ VideoWindow::VideoWindow( intf_thread_t *_p_intf, HINSTANCE _hInst,
_T("VIDEOWINDOW"), _T(""), WS_CHILD | WS_VISIBLE | WS_BORDER, _T("VIDEOWINDOW"), _T(""), WS_CHILD | WS_VISIBLE | WS_BORDER,
0, 20, rect.right - rect.left, 0, 20, rect.right - rect.left,
rect.bottom - rect.top - 2*(MENU_HEIGHT-1) - SLIDER_HEIGHT - 20, rect.bottom - rect.top - 2*(MENU_HEIGHT-1) - SLIDER_HEIGHT - 20,
p_parent, NULL, _hInst, (void *)this ); p_parent, NULL, GetModuleHandle(0), (void *)this );
ShowWindow( p_child_window, SW_SHOW ); ShowWindow( p_child_window, SW_SHOW );
UpdateWindow( p_child_window ); UpdateWindow( p_child_window );
...@@ -193,24 +190,9 @@ PURPOSE: ...@@ -193,24 +190,9 @@ PURPOSE:
Processes messages sent to the main window. Processes messages sent to the main window.
***********************************************************************/ ***********************************************************************/
LRESULT VideoWindow::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp, LRESULT VideoWindow::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp )
PBOOL pbProcessed )
{ {
LRESULT lResult = CBaseWindow::WndProc( hwnd, msg, wp, lp, pbProcessed ); return DefWindowProc( hwnd, msg, wp, lp );
BOOL bWasProcessed = *pbProcessed;
*pbProcessed = TRUE;
switch( msg )
{
default:
// the message was not processed
// indicate if the base class handled it
*pbProcessed = bWasProcessed;
lResult = FALSE;
return lResult;
}
return lResult;
} }
static int ControlWindow( intf_thread_t *p_intf, void *p_window, static int ControlWindow( intf_thread_t *p_intf, void *p_window,
......
...@@ -147,10 +147,8 @@ static void Run( intf_thread_t *p_intf ) ...@@ -147,10 +147,8 @@ static void Run( intf_thread_t *p_intf )
if( !pInterface->InitInstance( hInstance, p_intf ) ) return; if( !pInterface->InitInstance( hInstance, p_intf ) ) return;
// Main message loop // Main message loop
int status; while( GetMessage( &msg, NULL, 0, 0 ) > 0 )
while( ( status = GetMessage( &msg, NULL, 0, 0 ) ) != 0 )
{ {
if( status == -1 ) return;
TranslateMessage( &msg ); TranslateMessage( &msg );
DispatchMessage( &msg ); DispatchMessage( &msg );
} }
......
...@@ -97,10 +97,9 @@ public: ...@@ -97,10 +97,9 @@ public:
virtual ~CBaseWindow() {}; virtual ~CBaseWindow() {};
HWND hWnd; // The main window handle HWND hWnd; // The main window handle
BOOL DlgFlag; // True if object is a dialog window
static LRESULT CALLBACK BaseWndProc( HWND hwnd, UINT msg, static LRESULT CALLBACK BaseWndProc( HWND, UINT, WPARAM, LPARAM );
WPARAM wParam, LPARAM lParam ); static int CreateDialogBox( HWND, CBaseWindow * );
protected: protected:
...@@ -108,9 +107,7 @@ protected: ...@@ -108,9 +107,7 @@ protected:
HWND hwndCB; // The command bar handle HWND hwndCB; // The command bar handle
HINSTANCE GetInstance () const { return hInst; } HINSTANCE GetInstance () const { return hInst; }
virtual LRESULT WndProc( HWND hwnd, UINT msg, virtual LRESULT WndProc( HWND, UINT, WPARAM, LPARAM ) = 0;
WPARAM wParam, LPARAM lParam,
PBOOL pbProcessed ){*pbProcessed = FALSE; return 0;}
}; };
class FileInfo; class FileInfo;
...@@ -120,7 +117,7 @@ class Timer; ...@@ -120,7 +117,7 @@ class Timer;
class OpenDialog; class OpenDialog;
class PrefsDialog; class PrefsDialog;
CBaseWindow *CreateVideoWindow( intf_thread_t *, HINSTANCE, HWND ); CBaseWindow *CreateVideoWindow( intf_thread_t *, HWND );
/* Main Interface */ /* Main Interface */
class Interface : public CBaseWindow class Interface : public CBaseWindow
...@@ -155,8 +152,7 @@ public: ...@@ -155,8 +152,7 @@ public:
protected: protected:
virtual LRESULT WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp, virtual LRESULT WndProc( HWND, UINT, WPARAM, LPARAM );
PBOOL pbProcessed );
void OnOpenFileSimple( void ); void OnOpenFileSimple( void );
void OnPlayStream( void ); void OnPlayStream( void );
...@@ -193,8 +189,7 @@ protected: ...@@ -193,8 +189,7 @@ protected:
TCHAR szFileInfoClassName[100]; // Main window class name TCHAR szFileInfoClassName[100]; // Main window class name
TCHAR szFileInfoTitle[100]; // Main window name TCHAR szFileInfoTitle[100]; // Main window name
virtual LRESULT WndProc( HWND hwnd, UINT msg, virtual LRESULT WndProc( HWND, UINT, WPARAM, LPARAM );
WPARAM wParam, LPARAM lParam, PBOOL pbProcessed );
void UpdateFileInfo( HWND ); void UpdateFileInfo( HWND );
BOOL CreateTreeView( HWND ); BOOL CreateTreeView( HWND );
}; };
...@@ -211,9 +206,7 @@ protected: ...@@ -211,9 +206,7 @@ protected:
intf_thread_t *p_intf; intf_thread_t *p_intf;
virtual LRESULT WndProc( HWND hwnd, UINT msg, virtual LRESULT WndProc( HWND, UINT, WPARAM, LPARAM );
WPARAM wParam, LPARAM lParam,
PBOOL pbProcessed );
HWND hListView; HWND hListView;
void UpdateLog(void); void UpdateLog(void);
...@@ -240,9 +233,7 @@ protected: ...@@ -240,9 +233,7 @@ protected:
void OnOk(); void OnOk();
void UpdateInfo(); void UpdateInfo();
virtual LRESULT WndProc( HWND hwnd, UINT msg, virtual LRESULT WndProc( HWND, UINT, WPARAM, LPARAM );
WPARAM wParam, LPARAM lParam,
PBOOL pbProcessed );
/* Controls for the iteminfo dialog box */ /* Controls for the iteminfo dialog box */
HWND uri_label; HWND uri_label;
...@@ -274,9 +265,7 @@ protected: ...@@ -274,9 +265,7 @@ protected:
intf_thread_t *p_intf; intf_thread_t *p_intf;
virtual LRESULT WndProc( HWND hwnd, UINT msg, virtual LRESULT WndProc( HWND, UINT, WPARAM, LPARAM );
WPARAM wParam, LPARAM lParam,
PBOOL pbProcessed );
HWND mrl_box; HWND mrl_box;
HWND mrl_label; HWND mrl_label;
...@@ -359,9 +348,7 @@ protected: ...@@ -359,9 +348,7 @@ protected:
HWND fps_edit; HWND fps_edit;
HWND fps_spinctrl; HWND fps_spinctrl;
virtual LRESULT WndProc( HWND hwnd, UINT msg, virtual LRESULT WndProc( HWND, UINT, WPARAM, LPARAM );
WPARAM wParam, LPARAM lParam,
PBOOL pbProcessed );
/* Event handlers (these functions should _not_ be virtual) */ /* Event handlers (these functions should _not_ be virtual) */
void OnFileBrowse(); void OnFileBrowse();
...@@ -424,9 +411,7 @@ protected: ...@@ -424,9 +411,7 @@ protected:
void OnPopupEna(); void OnPopupEna();
void OnPopupInfo( HWND hwnd ); void OnPopupInfo( HWND hwnd );
virtual LRESULT WndProc( HWND hwnd, UINT msg, virtual LRESULT WndProc( HWND, UINT, WPARAM, LPARAM );
WPARAM wParam, LPARAM lParam,
PBOOL pbProcessed );
}; };
/* Timer */ /* Timer */
...@@ -513,9 +498,7 @@ protected: ...@@ -513,9 +498,7 @@ protected:
PrefsTreeCtrl *prefs_tree; PrefsTreeCtrl *prefs_tree;
virtual LRESULT WndProc( HWND hwnd, UINT msg, virtual LRESULT WndProc( HWND, UINT, WPARAM, LPARAM );
WPARAM wParam, LPARAM lParam,
PBOOL pbProcessed );
}; };
/***************************************************************************** /*****************************************************************************
......
...@@ -187,27 +187,6 @@ LANGUAGE LANG_FRENCH, SUBLANG_FRENCH ...@@ -187,27 +187,6 @@ LANGUAGE LANG_FRENCH, SUBLANG_FRENCH
#pragma code_page(1252) #pragma code_page(1252)
#endif //_WIN32 #endif //_WIN32
/////////////////////////////////////////////////////////////////////////////
//
// Dialog
//
IDD_DUMMY DIALOG DISCARDABLE 0, 0, 186, 90
STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
CAPTION "Dummy"
FONT 8, "System"
BEGIN
END
IDD_MESSAGES DIALOG DISCARDABLE 0, 0, 138, 90
STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
CAPTION "Messages"
FONT 8, "System"
BEGIN
PUSHBUTTON "Save as...",IDSAVEAS,76,7,50,14
PUSHBUTTON "Clear",IDCLEAR,11,7,50,14
END
///////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////
// //
// Menubar // Menubar
......
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