You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
82 lines
2.1 KiB
C++
82 lines
2.1 KiB
C++
// mfcsoundtestView.cpp : Implementierung der Klasse CMfcsoundtestView
|
|
//
|
|
|
|
#include "stdafx.h"
|
|
#include "mfcsoundtest.h"
|
|
|
|
#include "mfcsoundtestDoc.h"
|
|
#include "mfcsoundtestView.h"
|
|
|
|
#ifdef _DEBUG
|
|
#define new DEBUG_NEW
|
|
#undef THIS_FILE
|
|
static char THIS_FILE[] = __FILE__;
|
|
#endif
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CMfcsoundtestView
|
|
|
|
IMPLEMENT_DYNCREATE(CMfcsoundtestView, CView)
|
|
|
|
BEGIN_MESSAGE_MAP(CMfcsoundtestView, CView)
|
|
//{{AFX_MSG_MAP(CMfcsoundtestView)
|
|
// HINWEIS - Hier werden Mapping-Makros vom Klassen-Assistenten eingefügt und entfernt.
|
|
// Innerhalb dieser generierten Quelltextabschnitte NICHTS VERÄNDERN!
|
|
//}}AFX_MSG_MAP
|
|
END_MESSAGE_MAP()
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CMfcsoundtestView Konstruktion/Destruktion
|
|
|
|
CMfcsoundtestView::CMfcsoundtestView()
|
|
{
|
|
// ZU ERLEDIGEN: Hier Code zur Konstruktion einfügen,
|
|
|
|
}
|
|
|
|
CMfcsoundtestView::~CMfcsoundtestView()
|
|
{
|
|
}
|
|
|
|
BOOL CMfcsoundtestView::PreCreateWindow(CREATESTRUCT& cs)
|
|
{
|
|
// ZU ERLEDIGEN: Ändern Sie hier die Fensterklasse oder das Erscheinungsbild, indem Sie
|
|
// CREATESTRUCT cs modifizieren.
|
|
|
|
return CView::PreCreateWindow(cs);
|
|
}
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CMfcsoundtestView Zeichnen
|
|
|
|
void CMfcsoundtestView::OnDraw(CDC* pDC)
|
|
{
|
|
CMfcsoundtestDoc* pDoc = GetDocument();
|
|
ASSERT_VALID(pDoc);
|
|
// ZU ERLEDIGEN: Hier Code zum Zeichnen der ursprünglichen Daten hinzufügen
|
|
}
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CMfcsoundtestView Diagnose
|
|
|
|
#ifdef _DEBUG
|
|
void CMfcsoundtestView::AssertValid() const
|
|
{
|
|
CView::AssertValid();
|
|
}
|
|
|
|
void CMfcsoundtestView::Dump(CDumpContext& dc) const
|
|
{
|
|
CView::Dump(dc);
|
|
}
|
|
|
|
CMfcsoundtestDoc* CMfcsoundtestView::GetDocument() // Die endgültige (nicht zur Fehlersuche kompilierte) Version ist Inline
|
|
{
|
|
ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CMfcsoundtestDoc)));
|
|
return (CMfcsoundtestDoc*)m_pDocument;
|
|
}
|
|
#endif //_DEBUG
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CMfcsoundtestView Nachrichten-Handler
|