Click here to Skip to main content
15,867,834 members
Articles / Desktop Programming / WTL
Article

Accelerators and WTL Dialogs

Rate me:
Please Sign up or sign in to vote.
4.29/5 (10 votes)
23 Mar 2006 44.2K   1K   21   6
An article on using accelerators in WTL dialogs.

image

Introduction

I searched and searched the CodeProject but never found an example on using accelerators and WTL dialogs. I have used accelerators in MFC dialogs extensively, but couldn't figure out how to add this functionality to WTL dialogs. Like a lot of things, it is very easy to do once you have figured it out. Well, here goes....

Using the code

Declare a handle to the accelerator, and add the CMessageFilter if it has not been done already.

#pragma once

class CMainDlg : public CDialogImpl<CMainDlg>, 
         public CUpdateUI<CMainDlg>,
         public CMessageFilter, 
         public CIdleHandler
{
private:
    HACCEL    m_haccelerator;
//.......
};

Then in your OnInitDialog, assign the m_haccelerator variable to the accelerator resource, which in this example is IDR_MAINFRAME.

LRESULT CMainDlg::OnInitDialog(UINT /*uMsg*/, WPARAM /*wParam*/, 
        LPARAM /*lParam*/, BOOL& /*bHandled*/)
{
    // .......

    //Bind keys...
    m_haccelerator = AtlLoadAccelerators(IDR_MAINFRAME);

    // register object for message filtering and idle updates    
    CMessageLoop* pLoop = _Module.GetMessageLoop();
    ATLASSERT(pLoop != NULL);
    pLoop->AddMessageFilter(this);
    pLoop->AddIdleHandler(this);

    //...............

    return TRUE;
}

Then we need to overload the PreTranslateMessage function...

BOOL CMainDlg::PreTranslateMessage(MSG* pMsg)
{    
    if(m_haccelerator != NULL)
    {
        if(::TranslateAccelerator(m_hWnd, m_haccelerator, pMsg))
            return TRUE;
    }

    return CWindow::IsDialogMessage(pMsg);
}

Also, in you constructor, initialize the handle to the accelerator.

CMainDlg::CMainDlg()
{
    //..................

    m_haccelerator = NULL;

    //..................
}

If the dialog wasn't made to be modeless, it needs to be for the PreTranslateMessage to work. This is easily done by...

int WINAPI _tWinMain(HINSTANCE hInstance, 
    HINSTANCE /*hPrevInstance*/, LPTSTR lpstrCmdLine, int nCmdShow)
{
    _Module.Init(NULL, hInstance);

    CMessageLoop myMessageLoop;
    _Module.AddMessageLoop(&myMessageLoop);

    CMainDlg dlgMain;
    dlgMain.Create(NULL);
    dlgMain.ShowWindow(nCmdShow);

    int retValue = myMessageLoop.Run();

    _Module.RemoveMessageLoop();
    _Module.Term();

    return retValue;
}

And make sure you include atlmisc.h.

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
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionCopy/Paste Pin
wejr16-Apr-09 8:25
wejr16-Apr-09 8:25 
GeneralCAccelerator Pin
Igor Vigdorchik2-Oct-06 16:58
Igor Vigdorchik2-Oct-06 16:58 
WTL has a CAccelerator class that helps a little.
QuestionHow can I use this for a modeless dialog? Pin
hanjack5-Sep-06 15:02
hanjack5-Sep-06 15:02 
Questiondifferent accelerator schema for each dialog? Pin
Ștefan-Mihai MOGA23-Mar-06 21:22
professionalȘtefan-Mihai MOGA23-Mar-06 21:22 
AnswerRe: different accelerator schema for each dialog? Pin
rbuchana24-Mar-06 15:20
rbuchana24-Mar-06 15:20 
GeneralRe: different accelerator schema for each dialog? Pin
Pablo Aliskevicius17-Jul-06 23:59
Pablo Aliskevicius17-Jul-06 23:59 

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.