123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- // OptionsSheet.cpp : implementation file
- //
- #include "stdafx.h"
- #include "CP_Main.h"
- #include "OptionsSheet.h"
- #include "OptionsKeyBoard.h"
- #include "OptionsGeneral.h"
- #include "OptionsQuickPaste.h"
- #include "OptionsUtilities.h"
- #include "OptionsStats.h"
- #include "OptionsTypes.h"
- #include "About.h"
- #include "OptionFriends.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // COptionsSheet
- IMPLEMENT_DYNAMIC(COptionsSheet, CPropertySheet)
- COptionsSheet::COptionsSheet(LPCTSTR pszCaption, CWnd* pParentWnd, UINT iSelectPage)
- :CPropertySheet(pszCaption, pParentWnd, iSelectPage)
- {
- m_pKeyBoardOptions = NULL;
- m_pGeneralOptions = NULL;
- m_pQuickPasteOptions = NULL;
- m_pUtilites = NULL;
- m_pStats = NULL;
- m_pTypes = NULL;
- m_pAbout = NULL;
- m_pFriends = NULL;
- }
- COptionsSheet::~COptionsSheet()
- {
- DELETE_PTR(m_pKeyBoardOptions);
- DELETE_PTR(m_pGeneralOptions);
- DELETE_PTR(m_pQuickPasteOptions);
- DELETE_PTR(m_pUtilites);
- DELETE_PTR(m_pStats);
- DELETE_PTR(m_pTypes);
- DELETE_PTR(m_pAbout);
- DELETE_PTR(m_pFriends);
- }
- BEGIN_MESSAGE_MAP(COptionsSheet, CPropertySheet)
- //{{AFX_MSG_MAP(COptionsSheet)
- // NOTE - the ClassWizard will add and remove mapping macros here.
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // COptionsSheet message handlers
- int COptionsSheet::DoModal()
- {
- EnableStackedTabs(TRUE);
- m_pGeneralOptions = new COptionsGeneral;
- m_pKeyBoardOptions = new COptionsKeyBoard;
- m_pQuickPasteOptions = new COptionsQuickPaste;
- m_pFriends = new COptionFriends;
- m_pStats = new COptionsStats;
- m_pTypes = new COptionsTypes;
- m_pAbout = new CAbout;
- AddPage(m_pGeneralOptions);
- AddPage(m_pTypes);
- AddPage(m_pKeyBoardOptions);
- AddPage(m_pQuickPasteOptions);
- AddPage(m_pFriends);
- AddPage(m_pStats);
- AddPage(m_pAbout);
-
- return CPropertySheet::DoModal();
- }
- BOOL COptionsSheet::OnInitDialog()
- {
- BOOL bResult = CPropertySheet::OnInitDialog();
-
- SetWindowPos(&CWnd::wndTopMost, 0, 0, 0, 0, SWP_NOMOVE|SWP_NOSIZE);
- SetWindowText("Ditto");
- theApp.m_Language.UpdateOptionsSheet(this);
-
- return bResult;
- }
|