Click here to Skip to main content
15,884,099 members
Articles / Desktop Programming / ATL

Create a Universal Document Template which supports Dynamic Frame Window Layout

Rate me:
Please Sign up or sign in to vote.
3.00/5 (8 votes)
14 Dec 20024 min read 49.3K   668   24  
Introduce a programming technology to design a very complex, rich document type.
// MfcViewLib.cpp : Implementation of DLL Exports.

#include "stdafx.h"
#include "MfcViewLib.h"

class CMfcViewLibModule : public CAtlDllModuleT< CMfcViewLibModule >
{
public :
	DECLARE_LIBID(LIBID_MfcViewLibLib)
	DECLARE_REGISTRY_APPID_RESOURCEID(IDR_MFCVIEWLIB, "{A787A82D-7F0B-430D-BB70-08676FFBCDDD}")
};

CMfcViewLibModule _AtlModule;

CTangramManager *m_pTangramManager = NULL;


BEGIN_MESSAGE_MAP(CMfcViewLibApp, CWinApp)
END_MESSAGE_MAP()

CMfcViewLibApp theApp;

BOOL CMfcViewLibApp::InitInstance()
{
	InitLib();
    return CWinApp::InitInstance();
}

int CMfcViewLibApp::ExitInstance()
{
    return CWinApp::ExitInstance();
}



// Used to determine whether the DLL can be unloaded by OLE
STDAPI DllCanUnloadNow(void)
{
    AFX_MANAGE_STATE(AfxGetStaticModuleState());
    return (AfxDllCanUnloadNow()==S_OK && _AtlModule.GetLockCount()==0) ? S_OK : S_FALSE;
}


// Returns a class factory to create an object of the requested type
STDAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID* ppv)
{
    return _AtlModule.DllGetClassObject(rclsid, riid, ppv);
}


// DllRegisterServer - Adds entries to the system registry
STDAPI DllRegisterServer(void)
{
    // registers object, typelib and all interfaces in typelib
    HRESULT hr = _AtlModule.DllRegisterServer();
	return hr;
}


// DllUnregisterServer - Removes entries from the system registry
STDAPI DllUnregisterServer(void)
{
	HRESULT hr = _AtlModule.DllUnregisterServer();
	return hr;
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

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
Web Developer
China China
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions