The MASM Forum

General => The Workshop => Topic started by: cozofdeath on June 29, 2012, 02:13:32 AM

Title: Subclassing textbox
Post by: cozofdeath on June 29, 2012, 02:13:32 AM
Does anyone know why subclassing a textbox leaves it uneditable? The textbox can be updated with an api like SetWindowText or SetDlgItemText but it won't allow you to click or manually edit text. Below is my code.

Main  window proc:
DlgProc proc hWin:DWORD, uMsg:DWORD, wParam:DWORD, lParam:DWORD

.if uMsg == WM_INITDIALOG
invoke LoadIcon, hInstance, ICO_MAIN
invoke SendMessage, hWin, WM_SETICON, NULL, eax
invoke GetDlgItem, hWin, TB_OPEN
mov hOpenTextbox, eax
invoke GetDlgItem, hWin, TB_DEST
mov hDestTextbox, eax
invoke SetFocus, hOpenTextbox
invoke SetWindowLong, hOpenTextbox, GWL_WNDPROC, DragDropProc
mov pOrigDlgProc, eax

.elseif uMsg == WM_COMMAND
.if wParam == BTN_OPEN
invoke GetFileDialog
invoke DisplayFilePaths, hWin

.elseif wParam == BTN_GEN
invoke GetDlgItem, hWin, LB_OUTPUT
mov hListBox, eax

        .elseif wParam == BTN_ABOUT
invoke EndDialog,hWin,0
.endif

.elseif uMsg == WM_DESTROY
invoke SetWindowLong, hOpenTextbox, GWL_WNDPROC, pOrigDlgProc
invoke PostQuitMessage, 0

.elseif uMsg == WM_CLOSE
invoke EndDialog,hWin,0
.else
invoke DefWindowProc, hWin, uMsg, wParam, lParam
.endif

xor eax,eax
ret
DlgProc endp


Textbox window proc:
DragDropProc proc hWin:DWORD, uMsg:DWORD, wParam:DWORD, lParam:DWORD

.if uMsg == WM_DROPFILES

invoke DragQueryFile, wParam, -1, addr szFullPath, SIZEOF szFullPath
...
invoke DragFinish, wParam
xor eax,eax
            ret
.endif

invoke CallWindowProc, pOrigDlgProc, hWin, uMsg, wParam, lParam

xor eax, eax
ret


Thanks for any constructive help :biggrin:
Title: Re: Subclassing textbox
Post by: qWord on June 29, 2012, 02:27:34 AM
hi,

Remove the XOR EAX,EAX after CallWindowProc().

EDIT: also add a RET after DefWindowProc()
Title: Re: Subclassing textbox
Post by: cozofdeath on June 29, 2012, 04:01:12 AM
hi qWord,

The "xor eax, eax" did it! Thank you :biggrin: All this time spent trying different things. Man do I feel dumb. Masm often makes me feel this way. :dazzled: So I'm guessing eax has to retain its value after calling CallWindowProc because its the return value from what gets executed in the original window procedure? And this is needed by windows itself?
Title: Re: Subclassing textbox
Post by: qWord on June 29, 2012, 04:45:21 AM
Quote from: cozofdeath on June 29, 2012, 04:01:12 AMSo I'm guessing eax has to retain its value after calling CallWindowProc because its the return value from what gets executed in the original window procedure?
Exact.
The same applies to DefWindowProc.
Title: Re: Subclassing textbox
Post by: MichaelW on June 29, 2012, 09:53:18 AM
coz,

If you look at the Microsoft examples for DefWindowProc and CallWindowProc, you will see that when these functions are called the enclosing window or subclass procedure returns whatever these functions return. The documentation implies this but does not clearly state it. For example, the documentation for WindowProc and DefWindowProc both state "The return value is the result of the message processing and depends on the message."
Title: Re: Subclassing textbox
Post by: hutch-- on June 29, 2012, 10:16:38 AM
Its worth keeping in mind that if and when you need to exit a WndProc style procedure for a normal CreateWindowEx() style window that you check the return value of the message that is being processed.

Some messages require that you return zero and this you do simply by the code sequence,


    xor eax, eax    ; set EAX to zero
    ret


This bypasses the DefWindowProc. Apart from this you actually need to call DefWindowProc so that the default message processing occurs.

Just to make life confusing, when you have a dialog message handler, it MUST set EAX to zero then return. You exit a dialog with the API call, not the value in EAX or the trailing RET.
Title: Re: Subclassing textbox
Post by: cozofdeath on June 30, 2012, 04:11:47 AM
I really appreciate the constructive replies. I'll take any information I can get. I'm my own defense I did look at pretty much everything MSDN provides on this subject as well as closely related subjects and I just couldn't understand I guess. I even tried various Google links with no luck. To actually post was my last option and you guys came through again.  Without this site I don't know what I'd do.


QuoteJust to make life confusing, when you have a dialog message handler, it MUST set EAX to zero then return. You exit a dialog with the API call, not the value in EAX or the trailing RET.

By dialog message handler, do you mean DefDlgProc? I am working with only a dialog box invoked with DialogBoxParam so should I be using DefDlgProc instead or does it not matter?
Title: Re: Subclassing textbox
Post by: dedndave on June 30, 2012, 05:41:07 AM
it does matter   :P
but, no - you should not use DefDlgProc with a dialog created with DialogBoxParam
just return 0 in EAX

DefDlgProc is used for dialog boxes that have a private window class
Title: Re: Subclassing textbox
Post by: cozofdeath on June 30, 2012, 06:57:54 AM
Quote from: dedndave on June 30, 2012, 05:41:07 AM
it does matter   :P
but, no - you should not use DefDlgProc with a dialog created with DialogBoxParam
just return 0 in EAX

DefDlgProc is used for dialog boxes that have a private window class

Thanks for the info :biggrin: I can now drag and drop successfully.  :eusa_dance: