- Visual C++源码
- Visual Basic源码
- C++ Builder源码
- Java源码
- Delphi源码
- C/C++源码
- PHP源码
- Perl源码
- Python源码
- Asm源码
- Pascal源码
- Borland C++源码
- Others源码
- SQL源码
- VBScript源码
- JavaScript源码
- ASP/ASPX源码
- C#源码
- Flash/ActionScript源码
- matlab源码
- PowerBuilder源码
- LabView源码
- Flex源码
- MathCAD源码
- VBA源码
- IDL源码
- Lisp/Scheme源码
- VHDL源码
- Objective-C源码
- Fortran源码
- tcl/tk源码
- QT源码
- /////////////////////////////////////////////////////////////////////////////
- // Project:PGRSBAR
- // Author:NorthTibet
- // Date:星期二, 十二月 31, 2002
- // Description:在状态栏例实现进程指示器控制。
- //
- /////////////////////////////////////////////////////////////////////////////
- // Doc.cpp : implementation of the CMyDoc class
- //
- #include "stdafx.h"
- #include "pgrsbar.h"
- #include "Doc.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // CMyDoc
- IMPLEMENT_DYNCREATE(CMyDoc, CDocument)
- BEGIN_MESSAGE_MAP(CMyDoc, CDocument)
- //{{AFX_MSG_MAP(CMyDoc)
- // 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()
- /////////////////////////////////////////////////////////////////////////////
- // CMyDoc construction/destruction
- CMyDoc::CMyDoc()
- {
- // TODO: add one-time construction code here
- }
- CMyDoc::~CMyDoc()
- {
- }
- BOOL CMyDoc::OnNewDocument()
- {
- if (!CDocument::OnNewDocument())
- return FALSE;
- ((CEditView*)m_viewList.GetHead())->SetWindowText(NULL);
- // TODO: add reinitialization code here
- // (SDI documents will reuse this document)
- return TRUE;
- }
- /////////////////////////////////////////////////////////////////////////////
- // CMyDoc serialization
- void CMyDoc::Serialize(CArchive& ar)
- {
- /*
- // CEditView contains an edit control which handles all serialization
- ((CEditView*)m_viewList.GetHead())->SerializeRaw(ar);
- */
- CWnd* pFrame = AfxGetMainWnd();
- if (!ar.IsStoring()) {
- // loading: simulate length operation by sleeping, but wake up
- // every 150 msec to notify frame of progress.
- //
- for (int pct=10; pct<=100; pct+=10) {
- Sleep(150);
- if (pFrame)
- pFrame->SendMessage(MYWM_PROGRESS, pct);
- }
- }
- if (pFrame)
- pFrame->SendMessage(MYWM_PROGRESS, 0);
- ((CEditView*)m_viewList.GetHead())->SerializeRaw(ar);
- }
- /////////////////////////////////////////////////////////////////////////////
- // CMyDoc diagnostics
- #ifdef _DEBUG
- void CMyDoc::AssertValid() const
- {
- CDocument::AssertValid();
- }
- void CMyDoc::Dump(CDumpContext& dc) const
- {
- CDocument::Dump(dc);
- }
- #endif //_DEBUG
- /////////////////////////////////////////////////////////////////////////////
- // CMyDoc commands