The Machine Perception Toolbox

[Introduction]- [News]- [Download]- [Screenshots]- [Manual (pdf)]- [Forums]- [API Reference]- [Repository ]

 

Main Page | Namespace List | Class Hierarchy | Alphabetical List | Class List | Directories | File List | Namespace Members | Class Members | File Members | Related Pages

CChildView Class Reference

#include <ChildView.h>

List of all members.

Public Member Functions

 CChildView ()
virtual ~CChildView ()

Protected Member Functions

afx_msg void OnPaint ()
virtual BOOL PreCreateWindow (CREATESTRUCT &cs)


Constructor & Destructor Documentation

CChildView  ) 
 

Definition at line 17 of file ChildView.cpp.

00018 {
00019 }

~CChildView  )  [virtual]
 

Definition at line 21 of file ChildView.cpp.

00022 {
00023 }


Member Function Documentation

void OnPaint  )  [protected]
 

Definition at line 49 of file ChildView.cpp.

00050 {
00051         CPaintDC dc(this); // device context for painting
00052         
00053         // TODO: Add your message handler code here
00054         
00055         // Do not call CWnd::OnPaint() for painting messages
00056 }

BOOL PreCreateWindow CREATESTRUCT &  cs  )  [protected, virtual]
 

Definition at line 36 of file ChildView.cpp.

00037 {
00038         if (!CWnd::PreCreateWindow(cs))
00039                 return FALSE;
00040 
00041         cs.dwExStyle |= WS_EX_CLIENTEDGE;
00042         cs.style &= ~WS_BORDER;
00043         cs.lpszClass = AfxRegisterWndClass(CS_HREDRAW|CS_VREDRAW|CS_DBLCLKS, 
00044                 ::LoadCursor(NULL, IDC_ARROW), HBRUSH(COLOR_WINDOW+1), NULL);
00045 
00046         return TRUE;
00047 }


The documentation for this class was generated from the following files:
Generated on Mon Nov 8 17:08:30 2004 for MPT by  doxygen 1.3.9.1