~jil26/fabathome-model1/FabInterpreter

« back to all changes in this revision

Viewing changes to software/projects/FabStudio v0/Fab@Home Studio/ChildFrm.cpp

  • Committer: jil26
  • Date: 2010-03-17 09:27:31 UTC
  • Revision ID: svn-v4:02918aed-e80b-b844-b231-15c4a9332dc2:trunk:7
Added FabStudio v0 to the repository

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// ChildFrm.cpp : implementation of the CChildFrame class
 
2
//
 
3
 
 
4
#include "stdafx.h"
 
5
 
 
6
#ifdef _DEBUG
 
7
#define new DEBUG_NEW
 
8
#undef THIS_FILE
 
9
static char THIS_FILE[] = __FILE__;
 
10
#endif
 
11
 
 
12
/////////////////////////////////////////////////////////////////////////////
 
13
// CChildFrame
 
14
 
 
15
IMPLEMENT_DYNCREATE(CChildFrame, CChildWnd)
 
16
 
 
17
BEGIN_MESSAGE_MAP(CChildFrame, CChildWnd)
 
18
        //{{AFX_MSG_MAP(CChildFrame)
 
19
                // NOTE - the ClassWizard will add and remove mapping macros here.
 
20
                //    DO NOT EDIT what you see in these blocks of generated code !
 
21
        //}}AFX_MSG_MAP
 
22
END_MESSAGE_MAP()
 
23
 
 
24
/////////////////////////////////////////////////////////////////////////////
 
25
// CChildFrame construction/destruction
 
26
 
 
27
// --------------------------------------------------------------------------
 
28
CChildFrame::CChildFrame()
 
29
// --------------------------------------------------------------------------
 
30
{
 
31
        // TODO: add member initialization code here
 
32
        
 
33
}
 
34
 
 
35
// --------------------------------------------------------------------------
 
36
CChildFrame::~CChildFrame()
 
37
// --------------------------------------------------------------------------
 
38
{
 
39
}
 
40
 
 
41
// --------------------------------------------------------------------------
 
42
BOOL CChildFrame::PreCreateWindow(CREATESTRUCT& cs)
 
43
// --------------------------------------------------------------------------
 
44
{
 
45
        // TODO: Modify the Window class or styles here by modifying
 
46
        //  the CREATESTRUCT cs
 
47
 
 
48
        if( !CChildWnd::PreCreateWindow(cs) )
 
49
                return FALSE;
 
50
 
 
51
        return TRUE;
 
52
}
 
53
 
 
54
 
 
55
 
 
56
/////////////////////////////////////////////////////////////////////////////
 
57
// CChildFrame diagnostics
 
58
 
 
59
#ifdef _DEBUG
 
60
// --------------------------------------------------------------------------
 
61
void CChildFrame::AssertValid() const
 
62
// --------------------------------------------------------------------------
 
63
{
 
64
        CChildWnd::AssertValid();
 
65
}
 
66
 
 
67
// --------------------------------------------------------------------------
 
68
void CChildFrame::Dump(CDumpContext& dc) const
 
69
// --------------------------------------------------------------------------
 
70
{
 
71
        CMDIChildWnd::Dump(dc);
 
72
}
 
73
 
 
74
#endif //_DEBUG
 
75
 
 
76
/////////////////////////////////////////////////////////////////////////////
 
77
// CChildFrame message handlers