search for: editwndproc_common

Displaying 3 results from an estimated 3 matches for "editwndproc_common".

2011 Jun 19
2
Debugging textedit (gathering its content)
Hi guys, I'm new in wine debugging, but i need to get content of textbox to console. I tried Code: WINEDEBUG=+edit ./app.exe 2>&1 It gets content of lineedit, but not textedit. Do you have some idea how read content of textbox from win app in wine? Thanks
2010 Jun 20
2
DIBEngine and gdi32/user32 controls drawing loop performance
...user32/winproc.c file, where the Code: LRESULT WINAPI EditWndProcA( HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam ) { return wow_handlers.edit_proc( hwnd, msg, wParam, lParam, FALSE ); } function is defined is the file where I should do some changes; this function calls Code: LRESULT EditWndProc_common( HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam, BOOL unicode ) that is implemented in the dlls/user32/edit.c file, but the fact is that in the EditWndProc_common function there are many cases like this one that manages the various edit messages and window messages sent Code: switch (msg...
2002 Feb 21
1
Help tracing WINE funcion..
...d a trace. Mostly win, but sometimes win wouldn't take even with DECLARE_DEBUG_CHANNEL(win); (IIRC, everything under /dlls/ was that way) So now if I run notepad I get: wine --debugmsg +win,+shell,+edit,+header,+accel notepad.exe trace:win:WINPOS_WindowFromPoint found child 10022 trace:edit:EditWndProc_common 32 bit W : WM_MOUSEACTIVATE: hwnd=00010022, wParam=00010021, lParam=02010001 trace:edit:EditWndProc_common 32 bit W : WM_LBUTTONDOWN: hwnd=00010022, wParam=00000001, lParam=002f0041 trace:edit:EDIT_WM_LButtonDown About to SetCapture - edit.c trace:win:SetCapture Calling Event_Capture trace:win:EVEN...