How to handle messages from dynamically created controls in an MFC app?

14,190

Solution 1

These are the solutions I've found so far in order of relevance:

  1. Use ON_COMMAND_RANGE if you can define the range of the control IDs you want to handle.

  2. Overload CWnd::PreTranslateMessage() and do whatever stuff you want with the messages received. NOTE: When dealing with buttons, take into account that the BN_CLICKED event is NOT sent to PreTranslateMessage but directly sent to the window procedure.

  3. Overload CWnd::WindowProc() and do whatever stuff you want with the messages received. NOTE that when dealing with buttons this is the ONLY WAY I've found to handle the BN_CLICKED event.

Interesting links:

I hope this helps... thank you all for your contributions.

Solution 2

Eventhough you dont know the exact values of the id, if you know the possible range of IDs then the following macro can be used.

BEGIN_MESSAGE_MAP(MyDialog, CDialog)
    ...
    ...
    ON_COMMAND_RANGE(1000, 5000, OnButtonDynamic)
END_MESSAGE_MAP()


void MyDialog::OnButtonDynamic(UINT nID)
{

}

This will work for ids in the range 1000 - 5000.

Solution 3

I'm a few years late to this party, but the solution to this is to assign the same control id to each button (no need to 'reserve' id's in resource.h, and no artificial restrictions on the amount of controls that can be created), to save the window handle and to use GetCurrentMessage() in the handler for that button:

// resource.h
#define IDC_DYNAMIC_BUTTON 123

// In message map
ON_BN_CLICKED(IDC_DYNAMIC_BUTTON, OnDynamicButtonClicked)

// Store the window handles when creating them in a member:
std::map<HWND, SomeStruct> m_Buttons;
... fill this map when creating the buttons, presumably in OnInitDialog()

// Actual handler
void MyDialog::OnDynamicButtonClicked()
{
    const MSG* message = GetCurrentMessage();

    if (m_Buttons.find((HWND)message->lParam) != m_Buttons.end()) {
        // Do something with m_Buttons[(HWND)message->lParam]
    }
}
Share:
14,190
davidag
Author by

davidag

Updated on July 20, 2022

Comments

  • davidag
    davidag almost 2 years

    Imagine I have a CDialog which creates controls dynamically when the user clicks a button. It could be like this:

    // We don't know which is the first id for the new buttons until runtime (!)
    MyDialog::MyDialog(/*whatever parameters needed*/, first_id)
      : next_id_(first_id) 
    { /*...*/ }
    
    BOOL MyDialog::OnSomeButtonClicked()
    {
      CButton* new_button = new CButton;
      new_button->Create("Caption", WS_CHILD | WS_VISIBLE, this->new_button_rect_, 
                         this, this->next_id_++);
    }
    

    Then my question would be: How could I handle messages from this button? Is it possible to use the MFC message map facility?

    The solution should work in both vs6 and vs2005.

    Thank you!

  • davidag
    davidag almost 15 years
    Ok, it's probably fine to use PreTranslateMessage for this kind of stuff, but I keep on wondering if there's a way to use the mfc message map facility :S
  • davidag
    davidag almost 15 years
    Uhm, thanks for the answer but how could I know the range in advance?
  • davidag
    davidag almost 15 years
    I think this is quite unrelated :S