📄 kyoffice.cpp
字号:
// KyOffice.cpp : Implementation of DLL Exports.
// Note: Proxy/Stub Information
// To merge the proxy/stub code into the object DLL, add the file
// dlldatax.c to the project. Make sure precompiled headers
// are turned off for this file, and add _MERGE_PROXYSTUB to the
// defines for the project.
//
// If you are not running WinNT4.0 or Win95 with DCOM, then you
// need to remove the following define from dlldatax.c
// #define _WIN32_WINNT 0x0400
//
// Further, if you are running MIDL without /Oicf switch, you also
// need to remove the following define from dlldatax.c.
// #define USE_STUBLESS_PROXY
//
// Modify the custom build rule for KyOffice.idl by adding the following
// files to the Outputs.
// KyOffice_p.c
// dlldata.c
// To build a separate proxy/stub DLL,
// run nmake -f KyOfficeps.mk in the project directory.
#include "stdafx.h"
#include "resource.h"
#include <initguid.h>
#include "KyOffice.h"
#include "dlldatax.h"
#include "MainFrm.h"
#include "DocManagerEx.h"
#include "KyOfficeDoc.h"
#include "KyOfficeView.h"
#include "KyOffice_i.c"
#include "KyOfficeCtrl.h"
#ifdef _MERGE_PROXYSTUB
extern "C" HINSTANCE hProxyDll;
#endif
CComModule _Module;
BEGIN_OBJECT_MAP(ObjectMap)
OBJECT_ENTRY(CLSID_KyOfficeCtrl, CKyOfficeCtrl)
END_OBJECT_MAP()
BEGIN_MESSAGE_MAP(CKyOfficeApp, CWinApp)
//{{AFX_MSG_MAP(CKyOfficeApp)
// NOTE - the ClassWizard will add and remove mapping macros here.
// DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
CKyOfficeApp theApp;
BOOL CKyOfficeApp::InitInstance()
{
#ifdef _MERGE_PROXYSTUB
hProxyDll = m_hInstance;
#endif
_Module.Init(ObjectMap, m_hInstance, &LIBID_KYOFFICELib);
//允许嵌入OLE文档s
AfxEnableControlContainer();
return CWinApp::InitInstance();
}
int CKyOfficeApp::ExitInstance()
{
if(m_pDocManager)
delete m_pDocManager;
_Module.Term();
return CWinApp::ExitInstance();
}
/////////////////////////////////////////////////////////////////////////////
// Used to determine whether the DLL can be unloaded by OLE
STDAPI DllCanUnloadNow(void)
{
#ifdef _MERGE_PROXYSTUB
if (PrxDllCanUnloadNow() != S_OK)
return S_FALSE;
#endif
AFX_MANAGE_STATE(AfxGetStaticModuleState());
return (AfxDllCanUnloadNow()==S_OK && _Module.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)
{
#ifdef _MERGE_PROXYSTUB
if (PrxDllGetClassObject(rclsid, riid, ppv) == S_OK)
return S_OK;
#endif
return _Module.GetClassObject(rclsid, riid, ppv);
}
/////////////////////////////////////////////////////////////////////////////
// DllRegisterServer - Adds entries to the system registry
STDAPI DllRegisterServer(void)
{
#ifdef _MERGE_PROXYSTUB
HRESULT hRes = PrxDllRegisterServer();
if (FAILED(hRes))
return hRes;
#endif
// registers object, typelib and all interfaces in typelib
return _Module.RegisterServer(TRUE);
}
/////////////////////////////////////////////////////////////////////////////
// DllUnregisterServer - Removes entries from the system registry
STDAPI DllUnregisterServer(void)
{
#ifdef _MERGE_PROXYSTUB
PrxDllUnregisterServer();
#endif
return _Module.UnregisterServer(TRUE);
}
BOOL CKyOfficeApp::CreateFramework()
{
CKyOfficeDoc::m_arrayDocInfo.LoadFromRegistry();
CSingleDocTemplate * pDocTemplate = new CSingleDocTemplate(
IDR_MAINFRAME,
RUNTIME_CLASS(CKyOfficeDoc),
RUNTIME_CLASS(CMainFrame), // main SDI frame window
RUNTIME_CLASS(CKyOfficeView));
pDocTemplate->SetContainerInfo(IDR_CNTR_INPLACE);
m_pDocManager = new CDocManagerEx;
//新增文档模板
AddDocTemplate(pDocTemplate);
CCommandLineInfo cmdInfo;
//ParseCommandLine(cmdInfo);
// Dispatch commands specified on the command line
if (!ProcessShellCommand(cmdInfo))
return FALSE;
// The one and only window has been initialized, so show and update it.
m_pMainWnd->ShowWindow(SW_HIDE);
m_pMainWnd->UpdateWindow();
//m_pMainWnd->ModifyStyle(WS_CAPTION|WS_BORDER|WS_SYSMENU|WS_THICKFRAME, WS_CHILD, SWP_FRAMECHANGED);
return TRUE;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -