source: abuse/branches/win32/LispEditor/ChildFrm.cpp @ 100

Last change on this file since 100 was 100, checked in by Sam Hocevar, 15 years ago
  • Importing an old Win32 port by Jeremy "Marauder" Scott.
  • Property svn:keywords set to Id
File size: 1.5 KB
Line 
1// ChildFrm.cpp : implementation of the CChildFrame class
2//
3
4#include "stdafx.h"
5#include "LispEditor.h"
6
7#include "ChildFrm.h"
8
9#ifdef _DEBUG
10#define new DEBUG_NEW
11#undef THIS_FILE
12static char THIS_FILE[] = __FILE__;
13#endif
14
15/////////////////////////////////////////////////////////////////////////////
16// CChildFrame
17
18IMPLEMENT_DYNCREATE(CChildFrame, CMDIChildWnd)
19
20BEGIN_MESSAGE_MAP(CChildFrame, CMDIChildWnd)
21        //{{AFX_MSG_MAP(CChildFrame)
22                // NOTE - the ClassWizard will add and remove mapping macros here.
23                //    DO NOT EDIT what you see in these blocks of generated code !
24        //}}AFX_MSG_MAP
25END_MESSAGE_MAP()
26
27/////////////////////////////////////////////////////////////////////////////
28// CChildFrame construction/destruction
29
30CChildFrame::CChildFrame()
31{
32        // TODO: add member initialization code here
33       
34}
35
36CChildFrame::~CChildFrame()
37{
38}
39
40BOOL CChildFrame::PreCreateWindow(CREATESTRUCT& cs)
41{
42        // TODO: Modify the Window class or styles here by modifying
43        //  the CREATESTRUCT cs
44
45        if( !CMDIChildWnd::PreCreateWindow(cs) )
46                return FALSE;
47
48        return TRUE;
49}
50
51
52
53/////////////////////////////////////////////////////////////////////////////
54// CChildFrame diagnostics
55
56#ifdef _DEBUG
57void CChildFrame::AssertValid() const
58{
59        CMDIChildWnd::AssertValid();
60}
61
62void CChildFrame::Dump(CDumpContext& dc) const
63{
64        CMDIChildWnd::Dump(dc);
65}
66
67#endif //_DEBUG
68
69/////////////////////////////////////////////////////////////////////////////
70// CChildFrame message handlers
Note: See TracBrowser for help on using the repository browser.