Click here to Skip to main content
Licence 
First Posted 12 Sep 2001
Views 216,289
Bookmarked 112 times

Inserting a Doc/Frame/View in a dialog using a custom control

By | 12 Sep 2001 | Article
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 never seen a such architecture, it 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 create 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 class:

  • 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 a SDI project named "Sample")

A sample...

  1. Create a 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)

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

  3. Create the dialog class associated with this resource (CSampleDialog).
  4. In the Application class (SampleApp.cpp), remove the ONCOMMAND line :
      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 :
    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
        //  the 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:
    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:
    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

    #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 like 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 seems not 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

About the Author

Jean-Louis Guenego



United States United States

Member

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.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
QuestionHow About MDI ))) ? Pinmembertmx0:42 22 Mar '12  
Questionstatus bar stop working???? Pinmembermochenoo1:31 22 Feb '10  
GeneralGood~~ Help Pinmembercsb18:55 18 Feb '08  
GeneralResizing the View automatically when the Control is resized PinmemberIain Clarke22:17 13 Aug '07  
QuestionCompare two files ? PinmemberTrangLy7:56 10 Jun '07  
Generali use this code because: Pinmembergergo834:42 4 Apr '07  
I created a database in Access, and I use odbc consumer class to reach it. I need to display the data in tabcontrol. In MFC the one of the easyest way to operate with database to use CRecordSet, and CRecordView class. I created a document template(MyDoc, MyRecordView, MyFrame) and with this tutorial quite easy to insert it in a;P tabcontrol. THxCool | :cool:
 
Greg
Questionhow to acces each view Pinmemberaldo hexosa17:08 23 Aug '06  
QuestionHow to get the pointer of Dialog in the View class Pinmemberfuchies15:45 19 Aug '06  
AnswerRe: How to get the pointer of Dialog in the View class Pinmemberalex12317:30 18 May '08  
Generalvery good Pinmembernightmouse19:26 1 Aug '06  
GeneralMemory Leaks Pinmember0898908823:24 10 Jul '06  
AnswerRe: Memory Leaks PinmemberPanicMan23:26 3 Feb '09  
GeneralPrint Preview Pinmemberbbianco9:25 11 Apr '06  
AnswerRe: Print Preview PinmemberMichael Adamus10:49 29 Apr '10  
QuestionHow to... Doc View FROM a dialog (not inside a dialog)? PinmemberRajeswari, T.16:57 30 Mar '06  
GeneralVery useful article Pinmemberbobibe19:15 15 Feb '06  
QuestionMDI concept Pinmember_pw16:21 26 Dec '05  
Generalvery good Pinmemberhanlwang17:34 25 Oct '05  
Generalvery good Pinmemberhanlwang17:32 25 Oct '05  
GeneralGood thoughts, I will use your idea in my project. Pinmemberpingdee7:06 16 May '05  
GeneralGood Code, but seems pretty useless PinmemberCharlieC16:36 18 Apr '04  
QuestionMDI version? Pinmemberdavem17:03 25 Mar '04  
GeneralMenu handle resource leak PinmemberJim Tarrant0:21 15 Mar '04  
QuestionRe: Menu handle resource leak Pinmembergotopt15:51 27 Aug '06  
GeneralENTER and TAB keys not working - solution PinmemberJim Tarrant2:07 5 Mar '04  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web02 | 2.5.120529.1 | Last Updated 13 Sep 2001
Article Copyright 2001 by Jean-Louis Guenego
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid