📄 directorylistdoc.cpp
字号:
//////////////////////////////////////////////////////////////////////
// FileFury
// Copyright (c) 2000 Tenebril Incorporated
// All rights reserved.
//
// This source code is governed by the Tenebril open source
// license (http://www.tenebril.com/developers/opensource/license.html)
//
// For more information on this and other open source applications,
// visit the Tenebril OpenSource page:
// http://www.tenebril.com/developers/opensource
//
//////////////////////////////////////////////////////////////////////
// DirectoryListDoc.cpp : implementation file
//
#include "stdafx.h"
#include "Oscar.h"
#include "DirectoryListDoc.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CDirectoryListDoc
IMPLEMENT_DYNCREATE(CDirectoryListDoc, CDocument)
CDirectoryListDoc::CDirectoryListDoc()
{
}
BOOL CDirectoryListDoc::OnNewDocument()
{
if (!CDocument::OnNewDocument())
return FALSE;
// Set the document title.
SetTitle(_T("Shared Directory List"));
return TRUE;
}
CDirectoryListDoc::~CDirectoryListDoc()
{
}
BEGIN_MESSAGE_MAP(CDirectoryListDoc, CDocument)
//{{AFX_MSG_MAP(CDirectoryListDoc)
// NOTE - the ClassWizard will add and remove mapping macros here.
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CDirectoryListDoc diagnostics
#ifdef _DEBUG
void CDirectoryListDoc::AssertValid() const
{
CDocument::AssertValid();
}
void CDirectoryListDoc::Dump(CDumpContext& dc) const
{
CDocument::Dump(dc);
}
#endif //_DEBUG
/////////////////////////////////////////////////////////////////////////////
// CDirectoryListDoc serialization
void CDirectoryListDoc::Serialize(CArchive& ar)
{
if (ar.IsStoring())
{
}
else
{
}
}
/////////////////////////////////////////////////////////////////////////////
// CDirectoryListDoc commands
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -