The MASM Forum

General => The Campus => Topic started by: ragdog on February 12, 2013, 07:34:50 PM

Title: Flat dialog sizing
Post by: ragdog on February 12, 2013, 07:34:50 PM
Hi

I have a Flat dialog with a Bitmap now search i a function to sizing the dialog with WM_LBUTTONDOWN
Have your an idea how i can make it?

I think this is a right way Or?
ok the rect calc is not right but this is not the question

.elseif uMsg == WM_LBUTTONDOWN
            invoke SetCapture,hWnd
invoke GetCursorPos,addr OldPos
.elseif uMsg==WM_MOUSEMOVE
            invoke GetWindowRect,hWnd,addr Rect
invoke GetCursorPos,addr NewPos
mov eax,NewPos.x
mov ecx,eax
add eax,OldPos.x
mov OldPos.x,ecx
add eax,Rect.left
mov ebx,NewPos.y
mov ecx,ebx
add ebx,OldPos.y
mov OldPos.y,ecx
add ebx,Rect.top
mov ecx,Rect.right
sub ecx,Rect.left
mov edx,Rect.bottom
sub edx,Rect.top
invoke MoveWindow,hWnd,eax,ebx,0,0,TRUE
invoke ReleaseCapture


Regards..
Title: Re: Flat dialog sizing
Post by: hfheatherfox07 on February 12, 2013, 08:00:08 PM
Hello ragdog,
I got help with this here:
http://www.masmforum.com/board/index.php?topic=17332.15
Is this what you want ?
It resizes flat window

Title: Re: Flat dialog sizing
Post by: dedndave on February 12, 2013, 08:45:03 PM
i think he is doing something a little different
he wants to drag-size the window - i don't remember us doing that on the old thread

you shouldn't have to call GetCursorPos, as WM_LBUTTONDOWN, WM_LBUTTONUP, and WM_MOUSEMOVE
all give you the cursor coordinates in lParam (client coordinates)

in the case of WM_NCLBUTTONDOWN,  WM_NCLBUTTONUP, and  WM_NCMOUSEMOVE,
they all pass a pointer to a POINT structure that has screen coordinates

i think those are the messages you actually want to handle because you are outside the client area
(NC = non-client)

i would SetCapture for WM_NCLBUTTONDOWN if the coordinates lie on the border and set a flag
and, if the flag is set, ReleaseCapture for WM_NCLBUTTONUP and clear the flag
you can then use WM_CAPTURECHANGED to do any clean-up after ReleaseCapture

also, i prefer SetWindowPos over MoveWindow as it is more powerful
but, that may not be necessary
Title: Re: Flat dialog sizing
Post by: ragdog on February 12, 2013, 09:28:56 PM
Hey dave

Thanks for your idea i have found a other solution  :t

.elseif uMsg == WM_LBUTTONDOWN
    invoke SendMessage,hWnd,WM_NCLBUTTONDOWN,HTBOTTOM,0
Title: Re: Flat dialog sizing
Post by: ragdog on February 12, 2013, 10:24:57 PM
Hehe is a bad idea to use
invoke SendMessage,hWnd,WM_NCLBUTTONDOWN,HTBOTTOM,0
Title: Re: Flat dialog sizing
Post by: dedndave on February 12, 2013, 10:30:06 PM
yah - that didn't make any sense
especially without setting lParam to the screen coordinates

i guess i have to ask....
why not set the style bits so it is a sizable window ?   :P
Title: Re: Flat dialog sizing
Post by: ragdog on February 12, 2013, 11:06:32 PM
Quotei guess i have to ask....
why not set the style bits so it is a sizable window ?   :P

Hehe i need this without the size border frame

I think  it is enought if i get the mouse pos + calc the window rect for sizing the window or?

.ELSEIF uMsg==WM_LBUTTONDOWN
      mov eax,lParam
      mov edx,eax
      and eax,0ffffh ; eax=x
      shr edx,16      ; edx=y

I try to make this panel from  http://www.un4seen.com/xmplay.html
Title: Re: Flat dialog sizing
Post by: ragdog on February 13, 2013, 12:24:44 AM
Know any to works this?

I know only this have 3 Window forms
And left or right panel dock on Main dialog

My docking have i finish but with this size panel on Mouse move have i problems

But i have try to find a example in c++ or any but i cannot find any
Title: Re: Flat dialog sizing
Post by: dedndave on February 13, 2013, 02:59:21 AM
WM_LBUTTONDOWN, WM_LBUTTONUP, and WM_MOUSEMOVE
messages are sent to a window when the mouse is in the client area

the border of a window is in the non-client area
so, i would think WM_NCLBUTTONDOWN,  WM_NCLBUTTONUP, and
WM_NCMOUSEMOVE are the messages you want to handle
Title: Re: Flat dialog sizing
Post by: hfheatherfox07 on February 13, 2013, 04:27:47 AM
@ragdog,
Look here:
Resizing borderless form

http://masm32.com/board/index.php?topic=1340.0

Although zunex.zip  crashes for me even with the fixes
Does it work for you?
Title: Re: Flat dialog sizing
Post by: qWord on February 13, 2013, 04:39:37 AM
The example in the attachment shows a concept how it could be done. Remarks that there are some details that has not been worked out.
Title: Re: Flat dialog sizing
Post by: hfheatherfox07 on February 13, 2013, 05:22:56 AM
Hey qWord
It fails here on XP
It seems to go between a dialog type window and flat...
Unstable
Title: Re: Flat dialog sizing
Post by: dedndave on February 13, 2013, 05:56:54 AM
are you using WS_POPUP or WS_DLGFRAME style flags ?

i was playing a little bit - it appears that WS_DLGFRAME gives me a 1-pixel border

if i use (WS_POPUP or WS_VISIBLE or WS_CLIPCHILDREN), i get a window with no frame
Title: Re: Flat dialog sizing
Post by: hfheatherfox07 on February 13, 2013, 06:08:31 AM
Quote from: dedndave on February 13, 2013, 05:56:54 AM
are you using WS_POPUP or WS_DLGFRAME style flags ?

i was playing a little bit - it appears that WS_DLGFRAME gives me a 1-pixel border

if i use (WS_POPUP or WS_VISIBLE or WS_CLIPCHILDREN), i get a window with no frame

Which one are you referring to ? qWord's example or  http://masm32.com/board/index.php?topic=1340.0
Title: Re: Flat dialog sizing
Post by: dedndave on February 13, 2013, 06:15:57 AM
neither - lol

i was asking ragdog   :P
Title: Re: Flat dialog sizing
Post by: ragdog on February 13, 2013, 08:35:09 AM
Thanks for your reply here  8)

Hey dave

I use as main dialog WS_POPUP and WS_EX_TOPMOST
the Panel have i xstyle 94000000 and xExStyle 0

Ok i look in Qwords example in think this is it
Title: Re: Flat dialog sizing
Post by: dedndave on February 13, 2013, 09:45:10 AM
then - you have no non-client area   :P
Title: Re: Flat dialog sizing
Post by: ragdog on February 13, 2013, 07:33:47 PM
Why non-client area?

This xmPlayer

Use as Main window in forground and the panel in background
and the panel docking on the Main window by minimize it decrement the X coordinate from panel

And the panel is now in the background from Main Window
Title: Re: Flat dialog sizing
Post by: dedndave on February 14, 2013, 12:25:21 AM
well - if you use the WS_POPUP style and not WS_DLGFRAME, WS_THICKFRAME, WS_BORDER, WS_CAPTION styles...
then you have no border - so the outer-most pixels of the window lie in the client area

this means that WM_LBUTTONDOWN, WM_LBUTTONUP, and WM_MOUSEMOVE should work