Searched defs:wParam (Results 1 - 2 of 2) sorted by relevance

/inkscape/cxxtest/cxxtest/
H A DWin32Gui.h239 void progressBarMessage( UINT message, WPARAM wParam = 0, LPARAM lParam = 0 )
241 SendMessage( _progressBar, message, wParam, lParam );
323 static LRESULT CALLBACK windowProcedure( HWND window, UINT message, WPARAM wParam, LPARAM lParam ) argument
329 return that->handle( window, message, wParam, lParam );
337 LRESULT handle( HWND window, UINT message, WPARAM wParam, LPARAM lParam ) argument
350 default: return DefWindowProc( window, message, wParam, lParam );
380 void statusBarMessage( UINT message, WPARAM wParam = 0, const void *lParam = 0 )
382 SendMessage( _statusBar, message, wParam, (LPARAM)lParam );
/inkscape/src/ui/dialog/
H A Dfiledialogimpl-win32.cpp680 LRESULT CALLBACK FileOpenDialogImplWin32::file_dialog_subclass_proc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam) argument
685 LRESULT lResult = CallWindowProc(pImpl->_base_window_proc, hwnd, uMsg, wParam, lParam);
690 if(wParam != 0)
699 if(wParam == IDC_SHOW_PREVIEW)
711 LRESULT CALLBACK FileOpenDialogImplWin32::preview_wnd_proc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam) argument
840 lResult = DefWindowProc(hwnd, uMsg, wParam, lParam);

Completed in 15 milliseconds