Click here to Skip to main content
15,867,308 members
Articles / Programming Languages / C++

EasySize - Dialog Resizing in No Time!

Rate me:
Please Sign up or sign in to vote.
4.95/5 (213 votes)
23 Mar 20074 min read 1.1M   27.9K   289   185
An easy way to position controls in resizable dialogs or property pages using just a few macros
In this article, you will learn to design your dialog the way you want it to look in the resource editor, and then define how the controls will behave when the dialog is resized using one single macro for each control.

Image 1

Image 2

Image 3

Introduction

Have you ever thought of how annoying it actually was to spend a lot of time doing a basic GUI for your simple applications instead of focusing on the actual 'content'? Take, for example, a resizing dialog or property page. You need to write code for each control that will tell it where to go when the thing is resized, and this can take up a lot of time. Now I know that I'm not the first one to give a solution to this (CResizableDialog), but this article is on my approach.

Description

Basically, all you need to do is design your dialog the way you want it to look in the resource editor (don't forget to make it resizable), and then define how the controls will behave when the dialog is resized using one single macro for each control.

Usage

Note that all this works exactly the same way with both CDialog and CPropertyPage:

  1. #include EasySize.h to your stdafx.h (or put it in your include directory and #include <EasySize.h> , which I recommend).
  2. Add DECLARE_EASYSIZE anywhere in your class declaration:
    C++
    class CEasySizeDemoDlg : public CDialog
    {
    DECLARE_EASYSIZE
    ...
  3. Create an OnInitDialog handler if it doesn't already exist, and put this in the end of it: "INIT_EASYSIZE;":
    C++
    BOOL CEasySizeDemoDlg::OnInitDialog()
    {
        CDialog::OnInitDialog();
    ...    
        INIT_EASYSIZE;
        return TRUE; // return TRUE  unless you set the focus to a control
    } 
  4. Create an OnSize handler and add the UPDATE_EASYSIZE; macro to it:
    C++
    void CEasySizeDemoDlg::OnSize(UINT nType, int cx, int cy) 
    {
        CDialog::OnSize(nType, cx, cy);
        UPDATE_EASYSIZE;
    } 
  5. Optional - If you want your dialog to have a minimum size, then create an OnSizing handler and add the EASYSIZE_MINSIZE macro as below:
    C++
    void CEasySizeDemoDlg::OnSizing(UINT fwSide, LPRECT pRect) 
    {
        CDialog::OnSizing(fwSide, pRect);
        EASYSIZE_MINSIZE(280,250,fwSide,pRect);
    }
    //(in this example, 280 is the minimum width and 250 the 
    //minimum height we want our dialog to have)
  6. Now you have to create the "EasySize Map" (or whatever you want to call it) in which you will specify the behavior of each dialog item. It can be placed anywhere inside your class implementation. The map looks like this:
    C++
    BEGIN_EASYSIZE_MAP(class_name)
        ...
        EASYSIZE(control,left,top,right,bottom,options)
        ...
    END_EASYSIZE_MAP

    The map from the demo application looks like this:

    C++
    ...
        //}}AFX_MSG_MAP
    END_MESSAGE_MAP()
    
    BEGIN_EASYSIZE_MAP(CEasySizeDemoDlg)
        EASYSIZE(IDC_TITLE,ES_BORDER,ES_BORDER,
            ES_BORDER,ES_KEEPSIZE,ES_HCENTER)
        EASYSIZE(IDC_RADIO1,ES_BORDER,ES_BORDER,
            ES_KEEPSIZE,ES_KEEPSIZE,0)
        EASYSIZE(IDC_RADIO2,ES_BORDER,ES_BORDER,
            ES_KEEPSIZE,ES_KEEPSIZE,0)
        EASYSIZE(IDC_CONTENT,ES_BORDER,ES_BORDER,
            ES_BORDER,ES_BORDER,0)
        EASYSIZE(IDC_STATUSFRAME,ES_BORDER,ES_KEEPSIZE,
            ES_BORDER,ES_BORDER,0)
        EASYSIZE(IDC_STATUS,ES_BORDER,ES_KEEPSIZE,
            ES_BORDER,ES_BORDER,0)
        EASYSIZE(IDOK,ES_KEEPSIZE,ES_KEEPSIZE,
            ES_BORDER,ES_BORDER,0)
        EASYSIZE(IDCANCEL,ES_KEEPSIZE,ES_KEEPSIZE,
            ES_BORDER,ES_BORDER,0)
        EASYSIZE(IDC_MYICON1,ES_BORDER,IDC_RADIO2,IDC_CONTENT,
            IDC_STATUSFRAME,ES_HCENTER|ES_VCENTER)
        EASYSIZE(IDC_MYICON2,ES_BORDER,ES_BORDER,IDC_TITLE,
            ES_KEEPSIZE,ES_HCENTER)
    END_EASYSIZE_MAP
    
    ///////////////////////////////////////////////////////////////
    // CEasySizeDemoDlg message handlers
    ...

Looks confusing? It's not once you get the point (and I know I'm not good at explaining it). Read on.

EASYSIZE Macro

The EASYSIZE macro is used in the EasySize Map to specify what behavior your controls will have on dialog resize. It looks like this:

C++
EASYSIZE(control,left,top,right,bottom,options)

control is the ID of the dialog item you want re-positioned (which will be referred to as the 'current control' further on).

left, top, right and bottom can be either the ID of another control in the dialog (not the current control), or one of the special values, ES_BORDER and ES_KEEPSIZE.

Basically, if you specify an ID, the distance from the current control and the item designated by the ID will remain the same when the dialog is resized: The current control will 'stick' to the other item. ES_BORDER works the same way as if you had specified a control ID, except that it's the distance between the current control and the dialog border that will be kept constant. Specifying ES_KEEPSIZE in, let's say left, will keep the width of the current control the same, and will make the current control right-aligned to whatever you specified in right. The width (or height, if you specified ES_KEEPSIZE in top or bottom) of the current control will always remain what it is in the dialog resource. (I know this explanation sucks, but look at the demo application if you are confused or post your question in the board below). Obviously, ES_KEEPSIZE cannot be specified in both "left and right" or "top and bottom".

options can be a combination of ES_HCENTER, ES_VCENTER and 0 (use 0 if you don't want any of the other). ES_HCENTER horizontally centers the control between the two items specified in left and right (both of those cannot be ES_KEEPSIZE!). The width of the current control will always remain the same as in the dialog resource. ES_VCENTER works the same way, but for vertical centering (using top and bottom, and where the height will remain constant).

Conclusion

Well, I hope you figured out how this works, because it really can make your life easier. Note that using these macros will probably make your compiled code slightly bigger and slower than if you had coded the resizing routines manually, but in most cases, the change is so small that you will not even notice it.

History

  • 11th December, 2001: Initial version

Last update - Just corrected a few typos

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.


Written By
Engineer Nokia
Denmark Denmark
My programming experience started a long time ago in
QBasic (on a 25MHz 486).
I'm now mainly using Java, C++, C, MFC, Perl and PHP, but have used quite a number of other languages as well for various projects.

Comments and Discussions

 
GeneralOops, it doesn't work with dynamic dialogs Pin
MSchuler6-Jan-06 5:45
MSchuler6-Jan-06 5:45 
GeneralRe: Oops, it doesn't work with dynamic dialogs Pin
gratajik1-Feb-06 14:07
gratajik1-Feb-06 14:07 
GeneralRe: Oops, it doesn't work with dynamic dialogs Pin
Alejandro Xalabarder14-May-06 1:10
Alejandro Xalabarder14-May-06 1:10 
GeneralRe: Oops, it doesn't work with dynamic dialogs Pin
wiss7510-May-07 2:05
wiss7510-May-07 2:05 
GeneralLooks great but... Pin
brdavid22-Dec-05 23:35
brdavid22-Dec-05 23:35 
GeneralRe: Looks great but... Pin
brdavid23-Dec-05 0:26
brdavid23-Dec-05 0:26 
GeneralRe: Looks great but... Pin
Romiks21-Aug-07 1:00
Romiks21-Aug-07 1:00 
GeneralFlickering on Resize Pin
Manish Mishra30-Nov-05 18:32
Manish Mishra30-Nov-05 18:32 
Hey,

Make my life easy. But I found that if you resize the dialog window, it flickes and flicking is enough to visulise it.

Can you tell how to make it flicker free or have less flicking

Thanks.

Manish Mishra
GeneralFormView Solution Pin
Ali Rafiee17-Aug-05 11:07
Ali Rafiee17-Aug-05 11:07 
GeneralRe: FormView Solution Pin
Ali Rafiee17-Aug-05 11:11
Ali Rafiee17-Aug-05 11:11 
GeneralRe: FormView Solution Pin
brighttown12-Aug-09 17:22
brighttown12-Aug-09 17:22 
GeneralRe: FormView Solution Pin
jj0020-Jan-11 11:03
jj0020-Jan-11 11:03 
GeneralThanks for sharing Pin
Fastfootskater3-Jun-05 3:20
Fastfootskater3-Jun-05 3:20 
GeneralExcellent Pin
Suvendra22-Apr-05 5:01
Suvendra22-Apr-05 5:01 
Generalflicker free drawing Pin
Peter B.5-Mar-05 14:03
Peter B.5-Mar-05 14:03 
GeneralRe: flicker free drawing Pin
Suvendra22-Apr-05 4:57
Suvendra22-Apr-05 4:57 
GeneralRe: flicker free drawing Pin
Ali Rafiee16-Aug-05 8:54
Ali Rafiee16-Aug-05 8:54 
GeneralRe: flicker free drawing Pin
kam184-Nov-05 18:47
kam184-Nov-05 18:47 
GeneralRe: flicker free drawing Pin
zangyang12-Jan-10 2:09
zangyang12-Jan-10 2:09 
GeneralRe: flicker free drawing Pin
2pers25-Nov-05 10:58
2pers25-Nov-05 10:58 
QuestionRe: flicker free drawing Pin
cristitomi19-Mar-07 22:14
cristitomi19-Mar-07 22:14 
GeneralVery good but.... Pin
PixiGreg5-Feb-05 4:02
PixiGreg5-Feb-05 4:02 
QuestionHow does it looks like at TabCtrl?! Pin
Schniddel16-Jan-05 4:19
Schniddel16-Jan-05 4:19 
GeneralUpdating Problem Pin
velkon27-Dec-04 1:58
velkon27-Dec-04 1:58 
GeneralGreat job! Pin
tantraseeker13-Oct-04 5:40
tantraseeker13-Oct-04 5:40 

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

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.