Click here to Skip to main content
15,879,348 members
Articles / Desktop Programming / WTL
Article

A WTL DocView framework

Rate me:
Please Sign up or sign in to vote.
4.78/5 (14 votes)
10 Jan 2006CPOL1 min read 64.9K   1.3K   18   10
Implemetation of a simple DocView framework like MFC.

Sample Image - DocView_framework.jpg

Introduction

This article explains the implementation of a simple Doc View framework in a WTL (version 7.5) MDI application. The sample project included with this article is a wizard-generated MDI application enhanced with my framework classes. I enhanced code from Gabriel Kniznik with a little bit closer to the MFC DocView approach, and there exists only one kind of document template - MDI Document template. This framework was written in a week, so I apologize for mistakes and unfinished solutions :).

In this article is also participating Rodrigo Pinho Pereira de Souza, who made great enhancements to this framework (see the History section).

Implementation

In the demo project, you can see how to integrate the framework to your own project. You have to make changes to CMainFrame, CChildFrame, CYourView, and create a new class CYourDoc. Do not forget to change the IDR_CHILDFRAME string to the form for MFC -> \nDocument\nDVF\n\n\nDVFSimple.Document\nDVF Document.

Below is a simplified class diagram of the framework:

Framework class diagram - simplified

History

  • 11 Jan 2006
  • Changes made by Rodrigo Pinho Pereira de Souza:

    • Automatic handling of ID_FILE_NEW
    • Automatic handling of ID_FILE_SAVE
    • Automatic handling of ID_FILE_SAVEAS
    • Implemented Serialization mechanism
    • Changed all declarations of std::vector to the ATL CSimpleArray
    • Created a CFormView class

    Demo application split to VC++ 6.0 and VS.NET 2003.

  • 8 Aug 2005 - Initial version.

Terms of Use

The sample application available with this article is free for any purpose. THIS SOFTWARE IS DISTRIBUTED AS-IS, WITHOUT WARRANTIES OF ANY KIND.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
CEO bring-it-together s.r.o.
Slovakia Slovakia
Jozef Božek is currently a software engineer at bring-it-together s.r.o. in area of large scale infomation systems and mobile applications development.
He has been developing in C++ nearly full time since 2000, in Java since 2004 and in Objective-C since 2009. He is programming using Java EE SDK, iOS SDK, COM/DCOM, MFC, ATL, STL and so on Smile | :)

Comments and Discussions

 
GeneralCString memory exceptions Pin
BeErikk6-Oct-06 17:04
professionalBeErikk6-Oct-06 17:04 
GeneralRe: CString memory exceptions Pin
BeErikk8-Oct-06 0:42
professionalBeErikk8-Oct-06 0:42 
GeneralRe: CString memory exceptions Pin
rajas12-Jul-08 19:28
rajas12-Jul-08 19:28 
It appears that ExtractSubString was coded assuming ANSI . I made a couple of changes as below & added the _T() macros as you said and a few more changes and it compiles with Level 4 & UNICODE. I no longer get the exception you mentioned.

BOOL ExtractSubString(CString& rString, LPCTSTR lpszFullString, int iSubString, TCHAR chSep)
{
	if (lpszFullString == NULL)
		return FALSE;
        .....
        ......

	lstrcpyn(rString.GetBufferSetLength(nLen+1), lpszFullString, nLen+1);
	rString.ReleaseBuffer();   //-- this was missing
	return TRUE;
}

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.