📄 friendslistdoc.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
//
//////////////////////////////////////////////////////////////////////
// FriendsListDoc.cpp : implementation file
//
#include "stdafx.h"
#include "Oscar.h"
#include "FriendsListDoc.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CFriendsListDoc
IMPLEMENT_DYNCREATE(CFriendsListDoc, CDocument)
CFriendsListDoc::CFriendsListDoc()
{
}
BOOL CFriendsListDoc::OnNewDocument()
{
if (!CDocument::OnNewDocument())
return FALSE;
// Set the document title.
SetTitle(_T("Friends List"));
return TRUE;
}
CFriendsListDoc::~CFriendsListDoc()
{
}
BEGIN_MESSAGE_MAP(CFriendsListDoc, CDocument)
//{{AFX_MSG_MAP(CFriendsListDoc)
// NOTE - the ClassWizard will add and remove mapping macros here.
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CFriendsListDoc diagnostics
#ifdef _DEBUG
void CFriendsListDoc::AssertValid() const
{
CDocument::AssertValid();
}
void CFriendsListDoc::Dump(CDumpContext& dc) const
{
CDocument::Dump(dc);
}
#endif //_DEBUG
/////////////////////////////////////////////////////////////////////////////
// CFriendsListDoc serialization
void CFriendsListDoc::Serialize(CArchive& ar)
{
if (ar.IsStoring())
{
}
else
{
}
}
/////////////////////////////////////////////////////////////////////////////
// CFriendsListDoc commands
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -