home *** CD-ROM | disk | FTP | other *** search
- // Justify.cpp : implementation file
- //
-
- #include "stdafx.h"
- #include "TabDemo.h"
- #include "Justify.h"
-
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
-
- /////////////////////////////////////////////////////////////////////////////
- // CJustify property page
-
- IMPLEMENT_DYNCREATE(CJustify, CPropertyPage)
-
- CJustify::CJustify() : CPropertyPage(CJustify::IDD)
- {
- //{{AFX_DATA_INIT(CJustify)
- m_Justify = -1;
- //}}AFX_DATA_INIT
- }
-
- CJustify::~CJustify()
- {
- }
-
- void CJustify::DoDataExchange(CDataExchange* pDX)
- {
- CPropertyPage::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(CJustify)
- DDX_Radio(pDX, IDC_LEFT, m_Justify);
- //}}AFX_DATA_MAP
- }
-
-
- BEGIN_MESSAGE_MAP(CJustify, CPropertyPage)
- //{{AFX_MSG_MAP(CJustify)
- // NOTE: the ClassWizard will add message map macros here
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
-
- /////////////////////////////////////////////////////////////////////////////
- // CJustify message handlers
-