-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f640fda
commit c1f7f29
Showing
27 changed files
with
2,522 additions
and
69 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
|
||
// ChildFrm.cpp : implementation of the CChildFrame class | ||
// | ||
|
||
#include "stdafx.h" | ||
#include "JarredBrowser.h" | ||
|
||
#include "ChildFrm.h" | ||
|
||
#ifdef _DEBUG | ||
#define new DEBUG_NEW | ||
#endif | ||
|
||
// CChildFrame | ||
|
||
IMPLEMENT_DYNCREATE(CChildFrame, CMDIChildWndEx) | ||
|
||
BEGIN_MESSAGE_MAP(CChildFrame, CMDIChildWndEx) | ||
END_MESSAGE_MAP() | ||
|
||
// CChildFrame construction/destruction | ||
|
||
CChildFrame::CChildFrame() | ||
{ | ||
// TODO: add member initialization code here | ||
} | ||
|
||
CChildFrame::~CChildFrame() | ||
{ | ||
} | ||
|
||
|
||
BOOL CChildFrame::PreCreateWindow(CREATESTRUCT& cs) | ||
{ | ||
// TODO: Modify the Window class or styles here by modifying the CREATESTRUCT cs | ||
if( !CMDIChildWndEx::PreCreateWindow(cs) ) | ||
return FALSE; | ||
|
||
return TRUE; | ||
} | ||
|
||
// CChildFrame diagnostics | ||
|
||
#ifdef _DEBUG | ||
void CChildFrame::AssertValid() const | ||
{ | ||
CMDIChildWndEx::AssertValid(); | ||
} | ||
|
||
void CChildFrame::Dump(CDumpContext& dc) const | ||
{ | ||
CMDIChildWndEx::Dump(dc); | ||
} | ||
#endif //_DEBUG | ||
|
||
// CChildFrame message handlers |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
|
||
// ChildFrm.h : interface of the CChildFrame class | ||
// | ||
|
||
#pragma once | ||
|
||
class CChildFrame : public CMDIChildWndEx | ||
{ | ||
DECLARE_DYNCREATE(CChildFrame) | ||
public: | ||
CChildFrame(); | ||
|
||
// Attributes | ||
public: | ||
|
||
// Operations | ||
public: | ||
|
||
// Overrides | ||
virtual BOOL PreCreateWindow(CREATESTRUCT& cs); | ||
|
||
// Implementation | ||
public: | ||
virtual ~CChildFrame(); | ||
#ifdef _DEBUG | ||
virtual void AssertValid() const; | ||
virtual void Dump(CDumpContext& dc) const; | ||
#endif | ||
|
||
// Generated message map functions | ||
protected: | ||
DECLARE_MESSAGE_MAP() | ||
}; |
Oops, something went wrong.