Click here to Skip to main content
Click here to Skip to main content

CResizeCtrl

By , 1 Jul 2000
 
  • 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
    Germany Germany
    Member
    No Biography provided

    Sign Up to vote   Poor Excellent
    Add a reason or comment to your vote: x
    Votes of 3 or less require a comment

    Comments and Discussions

     
    Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
    You must Sign In to use this message board.
    Search this forum  
        Spacing  Noise  Layout  Per page   
    NewsCResizeCtrl used in HexEditmemberAndrew Phillips7 Mar '07 - 12:58 
    GeneralRe: CResizeCtrl used in HexEdit [modified]memberAndrew Phillips27 Mar '08 - 2:54 
    GeneralA simple solution for CalcValue bugmemberYoSilver6 Sep '04 - 7:18 
    GeneralNice classmemberDalroi17 Aug '04 - 12:16 
    GeneralTransparent gripmemberTomas Rapkauskas8 Jul '04 - 21:48 
    GeneralRe: Transparent grip (GDI object leak)memberbabonara23 May '06 - 23:05 
    GeneralWM_SIZINGmembercungdaus7 Jun '04 - 22:00 
    GeneralSticky windowmemberone_eddie24 Feb '04 - 11:56 
    QuestionCan this be use with SDI MFC form??membergoel_aparna@rediffmail.com1 Feb '04 - 23:54 
    AnswerRe: Can this be use with SDI MFC form??memberronald_philip7 Mar '04 - 23:35 
    GeneralWindows APImemberAshC18 Dec '03 - 3:48 
    GeneralCannot be used in child dialogmemberjmarcos13 Oct '03 - 1:34 
    QuestionHow to retrieve all the controls in a dialog?membermelwyn6 May '03 - 1:00 
    AnswerRe: How to retrieve all the controls in a dialog?memberRavi Bhavnani3 Jun '03 - 2:53 
    GeneralRe: How to retrieve all the controls in a dialog?membermelwyn3 Jun '03 - 3:00 
    GeneralUpdated CResizeControl versionmemberMoak24 Dec '02 - 23:28 
    GeneralRe: Updated CResizeControl versionmemberAnders Rundegren12 Mar '03 - 17:04 
    GeneralRe: Updated CResizeControl versionmemberMoak12 Mar '03 - 18:02 
    GeneralRe: Updated CResizeControl versionmemberAnders Rundegren13 Mar '03 - 13:48 
    GeneralRe: Updated CResizeControl versionmemberMoak14 Mar '03 - 15:49 
    GeneralRe: Updated CResizeControl versionmemberYoSilver6 Sep '04 - 7:21 
    GeneralRe: Updated CResizeControl versionsussMoakNotLoggedin8 Sep '04 - 3:24 
    GeneralUpdatessussJLB Stevens4 Nov '02 - 10:58 
    GeneralRe: UpdatessussAnonymous5 Nov '02 - 14:02 
    GeneralNice Class but it doesn't work in OCXmemberOsrald14 May '02 - 1:40 

    General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

    Permalink | Advertise | Privacy | Mobile
    Web04 | 2.6.130516.1 | Last Updated 2 Jul 2000
    Article Copyright 2000 by Herbert Menke
    Everything else Copyright © CodeProject, 1999-2013
    Terms of Use
    Layout: fixed | fluid