Click here to Skip to main content
15,878,809 members
Articles / Desktop Programming / MFC

Inserting a Doc/Frame/View in a Dialog using a Custom Control

Rate me:
Please Sign up or sign in to vote.
4.89/5 (35 votes)
12 Sep 20013 min read 320.4K   9.1K   129   59
A custom control allowing to insert a doc/view/frame architecture in a dialog/formview

Sample Image

Introduction

MFC architecture is often based on Doc/View/Frame architecture. Sometimes, it may be useful to have a doc/view/frame architecture in a dialog frame, or a formview. For example, if we want to edit a file (text, image, table, ...) in a dialog, or whatever. The set of class presented here can be useful.

For the time being, I have never seen such an architecture, that is why I decided to implement it. If you have to use it and have a bit of time, please add a comment at the bottom of this page and tell in which context you decided to use this code. I would be interested.

How That Works

The class CDFVCtrl is a custom control. Its Create method takes the following information:

  • Parent pointer (dialog/formview/...), the ID of the custom control (defined with the dialog editor - see below)
  • Doc/View/Frame class
  • style and extended style of the frame

The custom control creates a document template (CDFVDocTemplate). That allows us to benefit all the MFC implementation. Some of this implementation had to be reimplemented in order to satisfy our need. That's why we have the following classes:

  • CDFVDocument (base class: CDocument)
  • CDFVFrameWnd (base class: CFrameWnd)
  • CDFVDocTemplate (base class: CSingleDocTemplate)

How to Use It

Files needed:

  • DFVDocument.h and DFVDocument.cpp
  • DFVFrameWnd.h and DFVFrameWnd.cpp
  • DFVDocTemplate.h and DFVDocTemplate.cpp
  • DFVCtrl.h and DFVCtrl.cpp

Of course, you need to have Doc/Frame/View classes. In the demo project, these classes are called:

  • CSampleDoc/CMainFrame/CSampleView (I simply created an SDI project named "Sample")

A Sample...

  1. Create an SDI project and add the DFV files. If you want to see these files in the ClassWizard, close the project, delete the .clw and .ncb files, reopen the project, and open ClassWizard, Click 'yes' on the first dialog, 'Add All' on the second and 'OK'.
  2. Create a dialog resource and add PICTURE control on it (this method to create custom control is - I think - the simplest way to create a custom control).

    Image 2

    For each picture control, uncheck the "visible" style, and name these controls IDC_DFVCTRL1, IDC_DFVCTRL2, IDC_DFVCTRL3, ...

    Image 3

  3. Create the dialog class associated with this resource (CSampleDialog).
  4. In the Application class (SampleApp.cpp), remove the ONCOMMAND line:
    C++
    ON_COMMAND(ID_FILE_NEW, CWinApp::OnFileNew)
    ON_COMMAND(ID_FILE_OPEN, CWinApp::OnFileOpen)
    ON_COMMAND(ID_FILE_PRINT_SETUP, CWinApp::OnFilePrintSetup)
    
  5. In the InitInstance method, remove the DocTemplate instructions, and the others following instructions. Add the initialization dialog instructions. You should have something like:
    C++
    BOOL CSampleApp::InitInstance()
    {
        AfxEnableControlContainer();
    
        // Standard initialization
        // If you are not using these features and wish to reduce the size
        // of your final executable, you should remove from the following
        // specific initialization routines you do not need.
    
    #ifdef _AFXDLL
        Enable3dControls();       // Call this when using MFC in a shared DLL
    #else
        Enable3dControlsStatic(); // Call this when linking to MFC statically
    #endif
    
        // Change the registry key under which our settings are stored.
        // TODO: You should modify this string to be something appropriate
        // such as the name of your company or organization.
        SetRegistryKey(_T("Local AppWizard-Generated Applications"));
    
        LoadStdProfileSettings();  // Load standard INI file options (including MRU)
    
        // Register the application's document templates.  Document templates
        //  serve as the connection between documents, frame windows and views.
        CSampleDialog Dlg;
        Dlg.DoModal();
    
        return TRUE;
    }

    (of course, #include "SampleDialog.h")

  6. In the Dialog Class (CSampleDialog), #include "DFVCtrl.h" and add the following attributes:
    C++
    CDFVCtrl m_DFVCtrl1, m_DFVCtrl2, m_DFVCtrl3;

    (corresponding to the quantity of DFV control you want to add).

  7. With the ClassWizard, create an InitDialog method for the dialog and add the following code:
    C++
    BOOL CSampleDialog::OnInitDialog() 
    {
        CDialog::OnInitDialog();
        
        // TODO: Add extra initialization here
        m_DFVCtrl1.Create(this, IDC_DFVCTRL1,
            IDR_MAINFRAME,
            RUNTIME_CLASS(CSampleDoc),
            RUNTIME_CLASS(CMainFrame),       // main SDI frame window
            RUNTIME_CLASS(CSampleView),
            WS_CHILD | WS_BORDER | WS_VISIBLE, 0L);
    
        m_DFVCtrl2.Create(this, IDC_DFVCTRL2,
            IDR_MAINFRAME,
            RUNTIME_CLASS(CSampleDoc),
            RUNTIME_CLASS(CMainFrame),       // main SDI frame window
            RUNTIME_CLASS(CSampleView),
            WS_CHILD | WS_BORDER | WS_VISIBLE, 0L);
    
        m_DFVCtrl3.Create(this, IDC_DFVCTRL3,
            IDR_MAINFRAME,
            RUNTIME_CLASS(CSampleDoc),
            RUNTIME_CLASS(CMainFrame),       // main SDI frame window
            RUNTIME_CLASS(CSampleView),
            WS_CHILD | WS_BORDER | WS_VISIBLE, 0L);
        return TRUE;  // return TRUE unless you set the focus to a control
                      // EXCEPTION: OCX Property Pages should return FALSE
    }

    Of course, you have to include the doc/frame/view files:

    C++
    #include "SampleDoc.h"
    #include "SampleView.h"
    #include "MainFrm.h"
  8. Replace the base class for the following classes (do not forget to replace all the occurrences of the base class, you can reupdate the ClassWizard as seen previously in Step 1):
    • document class (CSampleDocument): CSampleDocument inherits from CDFVDocument
    • frame class (CMainFrame): CMainFrame inherits from CDFVFrameWnd

    Of course, you have to include the according files.

  9. Compile and execute. Funny, huh?

Known Bugs

  • Some keys seem to not be working in the second CEditView (Return, Tab, ...). May be it is a bug inside CEditView regarding this application.
  • The menu bar does not appear when the frame has a parent (if someone can tell me why...)

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
Professor in physics at Universty of Marne-La-Vallee (Paris, France).
Ex-Consultant (in Telecom) for Cap Gemini America at Atherton (Silicon Valley, San Francisco, CA USA).
I like very much coding.

Comments and Discussions

 
GeneralMy vote of 5 Pin
Kyrylo Ovseichuk2-Aug-23 22:42
Kyrylo Ovseichuk2-Aug-23 22:42 
QuestionGet the pointer of View from the dialog? Pin
Member 140114903-May-19 17:38
Member 140114903-May-19 17:38 
QuestionA great code Pin
Member 156372216-Sep-15 0:49
Member 156372216-Sep-15 0:49 
QuestionImplementing this sollution in VS2010? Pin
StoyanovZ15-Dec-13 23:04
StoyanovZ15-Dec-13 23:04 
GeneralMy vote of 4 Pin
venkat.yva14-Sep-13 2:23
venkat.yva14-Sep-13 2:23 
QuestionHow About MDI ))) ? Pin
tmx22-Mar-12 0:42
tmx22-Mar-12 0:42 
Questionstatus bar stop working???? Pin
mochenoo22-Feb-10 1:31
mochenoo22-Feb-10 1:31 
GeneralGood~~ Help Pin
csb18-Feb-08 18:55
csb18-Feb-08 18:55 
GeneralResizing the View automatically when the Control is resized Pin
Iain Clarke, Warrior Programmer13-Aug-07 22:17
Iain Clarke, Warrior Programmer13-Aug-07 22:17 
QuestionCompare two files ? Pin
TrangLy10-Jun-07 7:56
TrangLy10-Jun-07 7:56 
Generali use this code because: Pin
gergo834-Apr-07 4:42
gergo834-Apr-07 4:42 
Questionhow to acces each view Pin
aldo hexosa23-Aug-06 17:08
professionalaldo hexosa23-Aug-06 17:08 
QuestionHow to get the pointer of Dialog in the View class Pin
fuchies19-Aug-06 15:45
fuchies19-Aug-06 15:45 
AnswerRe: How to get the pointer of Dialog in the View class Pin
alex12318-May-08 17:30
alex12318-May-08 17:30 
AfxGetApp()->m_pMainWnd
Generalvery good Pin
nightmouse1-Aug-06 19:26
nightmouse1-Aug-06 19:26 
GeneralMemory Leaks Pin
0898908810-Jul-06 23:24
0898908810-Jul-06 23:24 
AnswerRe: Memory Leaks Pin
PanicMan3-Feb-09 23:26
PanicMan3-Feb-09 23:26 
GeneralPrint Preview Pin
bbianco11-Apr-06 9:25
bbianco11-Apr-06 9:25 
AnswerRe: Print Preview Pin
mla15429-Apr-10 10:49
mla15429-Apr-10 10:49 
QuestionHow to... Doc View FROM a dialog (not inside a dialog)? Pin
Rajeswari, T.30-Mar-06 16:57
Rajeswari, T.30-Mar-06 16:57 
GeneralVery useful article Pin
bobibe15-Feb-06 19:15
bobibe15-Feb-06 19:15 
QuestionMDI concept Pin
_pw26-Dec-05 16:21
_pw26-Dec-05 16:21 
Generalvery good Pin
hanlwang25-Oct-05 17:34
hanlwang25-Oct-05 17:34 
Generalvery good Pin
hanlwang25-Oct-05 17:32
hanlwang25-Oct-05 17:32 
GeneralGood thoughts, I will use your idea in my project. Pin
pingdee16-May-05 7:06
pingdee16-May-05 7:06 

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.