Click here to Skip to main content
6,630,586 members and growing! (17,514 online)
Email Password   helpLost your password?
Desktop Development » Dialogs and Windows » General     Intermediate

CResizeCtrl

By Herbert Menke

A resize control to implement resizable dialogs with MFC.
VC6, Windows, MFC, Dev
Posted:1 Jul 2000
Views:131,922
Bookmarked:52 times
Announcements
Loading...
 
Search    
Advanced Search
Add to IE Search
printPrint   add Share
      Discuss Discuss   Broken Article?Report  
36 votes for this article.
Popularity: 7.11 Rating: 4.57 out of 5
1 vote, 6.7%
1

2

3
1 vote, 6.7%
4
13 votes, 86.7%
5
  • Download source files - 7 Kb
  • Download demo project - 30 Kb
  • Introduction

    The CResizeCtrl implements the ResizePercentage method of the WCL (the framework of Optima++ alias Power++, which was dropped by Sybase).

    For each control left, top, width and height is specified, to determine how the position and size of the control windows will change when the size of the parent window changes.

    left specifies the change in the position of the left edge of the object relative to the total change in the parent window’s width.
    For example: Suppose that left is 50 and the width of the window increases by 200 pixels, then the left edge of the object moves right by 100 pixels (50% of 200).

    top specifies the change in the top position of the object relative to the total change in the parent window’s height.
    For example: Suppose that top is 40 and the height of the window decreases by 20 pixels, then the top edge of the object moves up by 8 pixels (40% of 20).

    width specifies the change in the width of the object relative to the total change in the parent window’s width.
    For example: Suppose that width is zero. Then the width of the object does not change, regardless of how much the width of the parent window changes. Or suppose that width is 100 and the width of the window decreases by 50 pixels, then the width of the object also decreases by 50 pixels (100% of 50).

    height specifies the change in the height of the object relative to the total change in the parent window’s height.
    For example: Suppose that height is 20 and the height of the parent's window decreases by 50 pixels, then the height of the object also decreases by 10 pixels (20% of 50).

    The valid range for each parameter is 0 to maxPart, but also the sum of left + width and top + height must be less than or equal to maxPart

    In general, the following formula is used

    newValue = oldValue + (( deltaValueParent * partValue) / maxPart )

    where:

    newValue is the new left or top position or new width or height
    oldValue is the old left or top position or old width or height
    deltaValueParentis the changes in parent width or height
    partValueis the left, top, width or height value specified in the Add Method
    maxPartis the value specified by the maxPart parameter of the constructor or the Create method

    The default value for maxPart is 100, for a better degree of granularity another value can be specified in the Constructor or Create method

    Example :

    // Create the control
    
    m_resize.Create( this );
    // Add the controls to be resized
    
    //                         l    t    w    h
    
    m_resize.Add( IDC_EDIT1,   0,   0, 100,  50 );
    m_resize.Add( IDC_LIST1,   0,  50, 100,  50 );
    m_resize.Add( IDOK,       50, 100,   0,   0 );
    // Use the current width and height 
    
    // for minimum tracking size
    
    m_resize.SetMinimumTrackingSize();
    

    Sample Image

    When the width of the parent's window increases by 40 pixels and the height increases by 20 pixels:

    IDC_EDIT1: left +=  0 top +=  0 width += 40 height += 10
    IDC_LIST1: left +=  0 top += 10 width += 40 height += 10
    IDOK     : left += 20 top += 20 width +=  0 height +=  0
    

    Usage :

    Add the file 'ResizeCtrl.cpp' and 'ResizeCtrl.h" to your project
    Because CResizeCtrl can change the style of the dialogbox, it is not necessary to add a resizable border to the dialog template.

    Include "ResizeCtrl.h' in the associated header file and add the CResizeCtrl to the instance data of your dialog class

    #include "ResizeCtrl.h"
    
    
    class CDemoDialog : public CDialog
    {
      // other stuff
    
      CResizeCtrl m_resize;
      //....
    
    

    In OnInitDialog add the controls, that should be resized to the CResizeCtrl object

    BOOL CDemoDialog::OnInitDialog()
    {
      CDialog::OnInitDialog();
        
      // TODO: Add extra initialization here
    
      // Create the control
    
      m_resize.Create( this );
      // Add the controls to be resized
    
      //                         l    t    w    h
    
      m_resize.Add( IDC_EDIT1,   0,   0, 100,  50 );
      m_resize.Add( IDC_LIST1,   0,  50, 100,  50 );
      m_resize.Add( IDOK,       50, 100,   0,   0 );
      // Use the current width and height 
    
      // for minimum tracking size
    
      m_resize.SetMinimumTrackingSize();
    

    or

    BOOL CDemoDialog::OnInitDialog()
    {
      CDialog::OnInitDialog();
        
      // TODO: Add extra initialization here
    
      // Create the control
    
      m_resize.Create( this );
      // Add the controls to be resized
    
      CResizeInfo rInfo[] =
      {
        //  id         l    t    w    h
    
        { IDC_EDIT1,   0,   0, 100,  50 },
        { IDC_LIST1,   0,  50, 100,  50 },
        { IDOK,       50, 100,   0,   0 },
        { 0 },
      };
      m_resize.Add( rInfo );
      // Use the current width and height 
    
      // for minimum tracking size
    
      m_resize.SetMinimumTrackingSize();
    

    Because CResizeCtrl is not a derived class from CDialog, it can be used without changing the dialog template.
    It can even be used with the common controls. The demo project includes an example, how to use it with GetOpenFileName.

    License

    This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

    A list of licenses authors might use can be found here

    About the Author

    Herbert Menke


    Member

    Location: Germany Germany

    Other popular Dialogs and Windows articles:

    Article Top
    You must Sign In to use this message board.
    FAQ FAQ 
     
    Noise Tolerance  Layout  Per page   
     Msgs 1 to 25 of 35 (Total in Forum: 35) (Refresh)FirstPrevNext
    NewsCResizeCtrl used in HexEdit PinmemberAndrew Phillips13:58 7 Mar '07  
    GeneralRe: CResizeCtrl used in HexEdit [modified] PinmemberAndrew Phillips3:54 27 Mar '08  
    GeneralA simple solution for CalcValue bug PinmemberYoSilver8:18 6 Sep '04  
    GeneralNice class PinmemberDalroi13:16 17 Aug '04  
    GeneralTransparent grip PinmemberTomas Rapkauskas22:48 8 Jul '04  
    GeneralRe: Transparent grip (GDI object leak) Pinmemberbabonara0:05 24 May '06  
    GeneralWM_SIZING Pinmembercungdaus23:00 7 Jun '04  
    GeneralSticky window Pinmemberone_eddie12:56 24 Feb '04  
    GeneralCan this be use with SDI MFC form?? Pinmembergoel_aparna@rediffmail.com0:54 2 Feb '04  
    GeneralRe: Can this be use with SDI MFC form?? Pinmemberronald_philip0:35 8 Mar '04  
    GeneralWindows API PinmemberAshC4:48 18 Dec '03  
    GeneralCannot be used in child dialog Pinmemberjmarcos2:34 13 Oct '03  
    GeneralHow to retrieve all the controls in a dialog? Pinmembermelwyn2:00 6 May '03  
    GeneralRe: How to retrieve all the controls in a dialog? PinmemberRavi Bhavnani3:53 3 Jun '03  
    GeneralRe: How to retrieve all the controls in a dialog? Pinmembermelwyn4:00 3 Jun '03  
    GeneralUpdated CResizeControl version PinmemberMoak0:28 25 Dec '02  
    GeneralRe: Updated CResizeControl version PinmemberAnders Rundegren18:04 12 Mar '03  
    GeneralRe: Updated CResizeControl version PinmemberMoak19:02 12 Mar '03  
    GeneralRe: Updated CResizeControl version PinmemberAnders Rundegren14:48 13 Mar '03  
    GeneralRe: Updated CResizeControl version PinmemberMoak16:49 14 Mar '03  
    GeneralRe: Updated CResizeControl version PinmemberYoSilver8:21 6 Sep '04  
    GeneralRe: Updated CResizeControl version PinsussMoakNotLoggedin4:24 8 Sep '04  
    GeneralUpdates PinsussJLB Stevens11:58 4 Nov '02  
    GeneralRe: Updates PinsussAnonymous15:02 5 Nov '02  
    GeneralNice Class but it doesn't work in OCX PinmemberOsrald2:40 14 May '02  

    General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

    PermaLink | Privacy | Terms of Use
    Last Updated: 1 Jul 2000
    Editor: Chris Maunder
    Copyright 2000 by Herbert Menke
    Everything else Copyright © CodeProject, 1999-2009
    Web22 | Advertise on the Code Project