Click here to Skip to main content
Licence 
First Posted 10 Jul 2004
Views 74,423
Bookmarked 30 times

Using Multiview

By | 10 Jul 2004 | Article
How to use multiview

Introduction

Have you ever want to build an aplication which have more than one view? You can implement it by using a splitter, or multiple views. This article with discuss about using mutiple views, how to use those views, and change between views. Implementation of this, is the html editor, which can change view from design view to html view. These views can have single document or more than one document. In this article, I only use single document.

Using the code

Step 1 Making a new view

Add a new view by inserting a new class with CView / CScrollView / CHtmlView / something else. as the base class. In this tutorial, I will name that class COtherView. Change the constructor and destructor access from protected to public, so that you can call it. Make two CView/CSrollView object, according the base class you created before, named m_pOtherView and m_pOtherView. m_pOtherView is used to store the new view and m_pFirstView to store the first view, so that you can go back to that view.

    CView m_pOtherView;
</CODE>    CView m_pFirstView;

Remember to write the above code and code in step 1 in your App header file. Create a CCreateContext variable to connect the view to the a document, in this case it`s the default document. You can use your own created document if you want, but it`s a bit complex, so i won`t discuss it here. Name the variable context. You will pass this variable as a parameter to create the view. The attribute which store the current document is m_pCurrentDoc.

    CDocument* pDoc = ((CFrameWnd*)m_pMainWnd)->GetActiveDocument();
    CCreateContext context;
    context.m_pCurrentDoc = pDoc;

Before creating the new view, create a new variable m_ID, which hold the new view ID. Set the m_ID base on the first view ID plus 1. AFX_IDW_PANE_FIRST is the first view ID, adding it by one will make sure there is no ID conflict.

    UINT m_ID = AFX_IDW_PANE_FIRST + 1;
Create the new view after ProcessShellCommand in InitInstance ( your App )
    m_pOtherView->Create(NULL, NULL, WS_CHILD, rect, 
      m_pMainWnd, m_ID, &context);

Step 2 Selecting and viewing the view

First exchange the view ID that we want to show with the previous view ID. You have to do this , so that RecalcLayout do it`s job to the right view, the view that we want to see. Use the SetWindowWord and GetWindowWord to work on the m_hWnd, which is 16-bit.

     UINT temp = ::GetWindowWord(m_pOtherView->m_hWnd, GWL_ID);
    ::SetWindowWord(m_pOtherView->m_hWnd, GWL_ID, 
         ::GetWindowWord(m_pFirstView->m_hWnd, GWL_ID));
    ::SetWindowWord(m_pFirstView->m_hWnd, GWL_ID, temp);

Hide the previous view and show the next view.

    m_pOtherView->ShowWindow(SW_HIDE);
    m_pFirstView->ShowWindow(SW_SHOW); 

Set the aplication active view with the view we`ve created. Call RecalcLayout to put things in their order.

    ((CFrameWnd*)m_pMainWnd)->SetActiveView(m_pFirstView); 
    ((CFrameWnd*)m_pMainWnd)->RecalcLayout();
    m_pFirstView->Invalidate();
Step 3 Using and manipulate the view

To get access to the active document, change the code on COtherView::OnDraw. But first include the document header in your source file view. In COtherView add Member Function with function type CMultiViewDoc* and with the name GetDocument(). Write the code below to the function created.

    CMultiViewDoc* COtherView::GetDocument()
    {
        return (CMultiViewDoc*)m_pDocument;
    }
    void COtherView::OnDraw(CDC* pDC)
    {
        CMultiViewDoc* pDoc = GetDocument();
        pDC->TextOut(400,320,pDoc->m_str); 
                // m_str is a member of CMultiViewDoc
    }

Draw on the view as you draw with the usual view.

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

Yulianto.

CEO
Odihost
Indonesia Indonesia

Member

Learned programming since elementry school with QBASIC. Until now have learned a bit about VB, java, html, php, asp, delphi. He is taking his master degree in finance. Currently working for a great company(desain web), and stock trading. Own various website about option strategy, lose weight, and Invest Money.

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
Generalproblem in switching between views. PinmemberT.Ashish0:18 19 Feb '09  
QuestionHow about MDI application PinmemberFransiscus Herry14:55 27 Sep '08  
AnswerRe: How about MDI application Pinmemberauralius2:06 10 Jan '09  
GeneralNice Pinmember_808618:53 25 Mar '07  
GeneralRe: Nice PinmemberYulianto.0:46 26 Mar '07  
Generalabout CListView Pinmemberwayitech4:44 6 Jun '06  
GeneralCFormView Pinmemberalmasl15:29 6 Jul '05  
GeneralRe: CFormView PinmemberYulianto.15:21 7 Jul '05  
GeneralRe: CFormView Pinmemberkedypen4:11 26 Dec '05  
QuestionMultiple Views - Is this correct? Pinmembersusso10:54 27 Dec '04  
AnswerRe: Multiple Views - Is this correct? Pinmembergoodmast3r13:39 5 Jan '05  
GeneralON_INIT Event Pinmembersusso10:10 16 Dec '04  
GeneralRe: ON_INIT Event Pinmembergoodmast3r21:16 17 Dec '04  
GeneralScrolling Pinmembersusso1:18 11 Dec '04  
GeneralRe: Scrolling Pinmembergoodmast3r16:26 12 Dec '04  
GeneralRe: Scrolling Pinmembergoodmast3r15:14 14 Dec '04  
GeneralRe: Scrolling Pinmembersusso18:32 14 Dec '04  
GeneralRe: Scrolling Pinmembergoodmast3r21:13 17 Dec '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.120517.1 | Last Updated 11 Jul 2004
Article Copyright 2004 by Yulianto.
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid