Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

These days I got stuck by the CMFCToolBar/CMFCToolBarComboBoxButton/CComboBox. The main issue is: the combobox on the toolbar can load items(print them in the output window while debugging.) but can't show any items and keep disabled.

I implemented it as below:

  1. Define the class CMainFrame which is the main frame of the app.

    class CMainFrame : public CMDIFrameWndEx //MDI framework
    {
        ....
        private:
           CMFCToolBar    m_wndAlignmentBar;//The toolbar will contains 2 comboboxes
        ....
    
        protected:
            ....
            afx_msg LRESULT OnToolbarReset(WPARAM wp, LPARAM lp);//message handler
            ....
    
    }
    
  2. Define 2 new class TFontComboBoxButton/TLineComboBoxButton derived from CMFCToolBarComboBoxButton like this:

    class TFontComboBoxButton: public CMFCToolBarComboBoxButton
    {
        TFontComboBox* pFontComboBox;
        public:
            TFontComboBoxButton(CMainFrame* frameWnd = NULL);
            virtual ~TFontComboBoxButton() ;
    };
    
    class TLineComboBoxButton: public CMFCToolBarComboBoxButton
    {
        TLineComboBox* pFontComboBox;
        public:
            TLineComboBoxButton(CMainFrame* frameWnd = NULL);
            virtual ~TLineComboBoxButton() ;
    };
    
    TFontComboBoxButton::TFontComboBoxButton(CMainFrame* frameWnd)
    :pFontComboBox(NULL),
    CMFCToolBarComboBoxButton(ID_IDESIGN_FONT, GetCmdMgr()->GetCmdImage(ID_IDESIGN_FONT, FALSE))
    {
        CRect rectFont(0,0,180,400);
        pFontComboBox = new TFontComboBox();
        if( pFontComboBox)
        {
            pFontComboBox->Create("TFontComboBox", "Font",
                                 WS_VSCROLL|CBS_AUTOHSCROLL|CBS_DROPDOWNLIST|CBS_SORT, 
                                 rectFont,
                                 frameWnd,
                                 ID_IDESIGN_FONT);
            if(frameWnd)
            {
                pFontComboBox->SetNotifyWnd(frameWnd);
                pFontComboBox->SetToolbarBit(TRUE);
            }
         }
         EnableWindow(true);
         SetCenterVert();
         SetFlatMode();
    }
    

    //The similiar to the constructor function of TLineComboBoxButton.

  3. Add the implemention of message handler OnToolbarReset for message AFX_WM_RESETTOOLBAR.

    In the mainfrm.cpp add:

    ON_REGISTERED_MESSAGE(AFX_WM_RESETTOOLBAR, &CMainFrame::OnToolbarReset)
    
    CMainFrame::OnToolbarReset(WPARAM wp, LPARAM lp);
    {
        int iret = 0 ;
        if ((UINT)wp == IDR_IDESIGN_ALIGNMENT) )
        {
             iret = m_wndAlignmentBar.ReplaceButton(ID_IDESIGN_FONT,TFontComboBoxButton(this));
             iret = m_wndAlignmentBar.ReplaceButton(ID_IDESIGN_LINE,TLineComboBoxButton(this));
        }
        return 0;
    }
    

After above steps, the comboboxes on the toolbar keep gray/disabled. I can't upload the image as insufficient reputation.

I read the guide Walkthrough: Putting Controls On Toolbars. But I still can't figure it out.

Could someone help on this?

share|improve this question
Someone can help on this? – Bright Liu Feb 27 at 7:29

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.