Resizing Controls at Runtime
Posted
by Amit Nabarro
on October 24th, 2000
With a couple of lines of code, you can give your end-users the ability to resize any control.
Suppose you wanted to give the user the ability to modify the size and position on a certain control? This example shows how to implement resizing controls on a dialog box as it is done when drawing controls on a dialog template or visual basic at design time. In order to accomplish this we can use the class CRectTracker to manage all the drawing and resizing of a rectangular frame which also has (optional) 6 resize handlers (as shown in the image above). The first thing, you'll need to do is to invoke a CRectTracker and specify given coordinates:
LPRECT rect = new RECT;
CWnd* wnd = (CWnd*)(GetDlgItem(IDC_EDIT1));
wnd->GetWindowRect(rect) ;
ScreenToClient(rect) ;
m_tracker = new CRectTracker(rect, CRectTracker::dottedLine |
CRectTracker::resizeOutside |
CRectTracker::hatchedBorder);
m_tracker->Draw(pDC) ;
There are only two events that are needed to be handled:
- SetCursor
if (pWnd == this && m_tracker->SetCursor(this, nHitTest)) return TRUE;This is done in order to draw the correct mouse cursors when floating the mouse pointer over the rectangle.
m_tracker->Track(this, point, TRUE); Invalidate(FALSE); CDC* pDC = GetDC(); m_tracker->Draw(pDC);This will take care of the drawing of the rectangle with resizing it.
Once you finished all you have to do is draw the control with the new rectangle coordinates:
LPRECT rect = new RECT; CWnd* wnd = (CWnd*)(GetDlgItem(IDC_EDIT1)); rect = LPRECT(m_tracker->m_rect); wnd->MoveWindow(rect,TRUE) ;

Comments
memleaks
Posted by Kerberos on 12/20/2012 02:33amYou created memleaks by allocating RECT struct - dynamic allocation not needed at all...
ReplyHow to use CRectracker in CSrollView
Posted by Legacy on 11/15/2003 12:00amOriginally posted by: khurramMir
ReplyGood one.
Posted by Legacy on 08/01/2002 12:00amOriginally posted by: Guru
This one helped me..
ReplyThanks
Can this Possible?.........
Posted by Legacy on 01/15/2002 12:00amOriginally posted by: Nagesh
Hi
ReplyI want to reieze my dialog depend upon the resolution used by the moniter in runtime. And even is it possible to resize dialog depend upon length and resolution of moniter.(i.e 14" Moniter with 1024*... resoliton /..etc)..
waiting for reply
Regds
Nagesh
Scroll within a view
Posted by Legacy on 08/08/2001 12:00amOriginally posted by: Jerome
I have tried to use CRectTracker within a view to do something similar.
ReplyWhat I would kie to achieve is that the tracker automatically scrolls the view when the mouse gets out of the boundaries.
How could I achieve this ?
Thanks,
Jerome
No RC
Posted by Legacy on 07/20/2001 12:00amOriginally posted by: Steve
Unfortunately, you did not include the resouce files in the zip.
Reply