I have an application with tray icon. There is a hidden main window (CMainFrm), which is used to process tray icon messages. The tray icon has a context menu: Settings, Help, Exit commands.

When user chooses Settings, the modeless settings dialog is displayed (parent: GetDesktopWindow()). Settings dialog has a browse button which displays MyBrowseFolderDialog as modal! So, there is a problem when this dialog is displayed and user tries to close application using Exit command from the tray menu.

Does anyone know how to gracefully close the application with all these dialogs? tray menu => Settings dialog (modeless) => BrowseDialog (modal)

link|improve this question

53% accept rate
feedback

2 Answers

Add CDialog* m_pModaldDlg member to Settings dialog class, initialize it to NULL in constructor. When MyBrowseFolderDialog is shown, set it to this dialog pointer:

MyBrowseFolderDialog dlg();
m_pModaldDlg = &dlg;
dlg.DoModal();
m_pModaldDlg = NULL;

In Exit message handler:

if ( m_pModaldDlg )
    m_pModaldDlg->EndDialog(0);
// Close settings dialog
link|improve this answer
In Exit message handler I have only pointer to the modeless Settings dialog... – Serge Feb 21 '11 at 11:20
feedback

Alex answer is still good - you have to store the m_pModalDlg in the CMainFrm so both Settings and Exit handlers can get to it as needed.

Some other possible solutions:

  1. Settings handler disables Exit option when Folder browse is active

  2. Register a custom message - have the Exit handler send this message to the browse folder (although you are still going to need some kind of window handle)

I like Alex's answer the best - just store the pointer somewhere in CMainFrm

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.