Welcome to mirror list, hosted at ThFree Co, Russian Federation.

DlgView.cpp « Ext2Mgr - github.com/matt-wu/Ext3Fsd.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ee36920b7f846f1e66cda6cc771dff4eff3cb38e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
// DlgView.cpp : implementation file
//

#include "stdafx.h"
#include "DlgView.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CDlgView

IMPLEMENT_DYNCREATE(CDlgView, CScrollView)

CDlgView::CDlgView()
{
}

CDlgView::~CDlgView()
{
}


BEGIN_MESSAGE_MAP(CDlgView, CScrollView)
	//{{AFX_MSG_MAP(CDlgView)
		// NOTE - the ClassWizard will add and remove mapping macros here.
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CDlgView drawing

void CDlgView::OnDraw(CDC* pDC)
{
	CRect rectClient;
    CSize size = GetTotalSize();

    rectClient.left = 0;
	rectClient.top = 0;
    rectClient.bottom = size.cy;
    rectClient.right = size.cx;

	rectClient.DeflateRect(15, 15);
	pDC->DrawText(m_csText, rectClient, DT_LEFT);
	
	rectClient.InflateRect(5, 5);
	pDC->Draw3dRect(rectClient, RGB(0, 0, 255), RGB(0, 0, 255));

}

/////////////////////////////////////////////////////////////////////////////
// CDlgView diagnostics

#ifdef _DEBUG
void CDlgView::AssertValid() const
{
	CScrollView::AssertValid();
}

void CDlgView::Dump(CDumpContext& dc) const
{
	CScrollView::Dump(dc);
}
#endif //_DEBUG

/////////////////////////////////////////////////////////////////////////////
// CDlgView message handlers

void CDlgView::OnInitialUpdate() 
{
	CScrollView::OnInitialUpdate();
	
	// TODO: Add your specialized code here and/or call the base class
	
}