| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139 |
- // OptionsSheet.cpp : implementation file
- //
- #include "stdafx.h"
- #include "CP_Main.h"
- #include "OptionsSheet.h"
- #include "OptionsKeyBoard.h"
- #include "OptionsGeneral.h"
- #include "OptionsQuickPaste.h"
- #include "OptionsStats.h"
- #include "OptionsTypes.h"
- #include "About.h"
- #include "OptionFriends.h"
- #include "OptionsCopyBuffers.h"
- #include "Misc.h"
- #include "QuickPasteKeyboard.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_themeChanged = FALSE;
- m_pKeyBoardOptions = NULL;
- m_pGeneralOptions = NULL;
- //m_pQuickPasteOptions = NULL;
- m_pCopyBuffers = NULL;
- m_pStats = NULL;
- m_pTypes = NULL;
- m_pAbout = NULL;
- m_pFriends = NULL;
- m_pCopyBuffers = NULL;
- m_pQuickPasteShortCuts = NULL;
-
- m_pUtilites = NULL;
- m_hWndParent = NULL;
- EnableStackedTabs(TRUE);
- m_pGeneralOptions = new COptionsGeneral;
- m_pKeyBoardOptions = new COptionsKeyBoard;
- //m_pQuickPasteOptions = new COptionsQuickPaste;
- m_pQuickPasteShortCuts = new CQuickPasteKeyboard;
- m_pCopyBuffers = new COptionsCopyBuffers;
- m_pStats = new COptionsStats;
- m_pTypes = new COptionsTypes;
- m_pAbout = new CAbout;
- AddPage(m_pGeneralOptions);
- AddPage(m_pTypes);
- AddPage(m_pKeyBoardOptions);
- AddPage(m_pCopyBuffers);
- //AddPage(m_pQuickPasteOptions);
- AddPage(m_pQuickPasteShortCuts);
- if(g_Opt.GetAllowFriends())
- {
- m_pFriends = new COptionFriends;
- AddPage(m_pFriends);
- }
- AddPage(m_pStats);
- AddPage(m_pAbout);
-
- }
- COptionsSheet::~COptionsSheet()
- {
- delete m_pGeneralOptions;
- delete m_pKeyBoardOptions;
- //delete m_pQuickPasteOptions;
- delete m_pCopyBuffers;
- delete m_pStats;
- delete m_pTypes;
- delete m_pAbout;
- delete m_pFriends;
- delete m_pUtilites;
- delete m_pQuickPasteShortCuts;
- }
- BEGIN_MESSAGE_MAP(COptionsSheet, CPropertySheet)
- //{{AFX_MSG_MAP(COptionsSheet)
- // NOTE - the ClassWizard will add and remove mapping macros here.
- ON_WM_DESTROY()
- ON_WM_NCDESTROY()
- //ON_WM_CLOSE()
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // COptionsSheet message handlers
- void COptionsSheet::OnDestroy()
- {
- CPropertySheet::OnDestroy();
- }
- void COptionsSheet::SetNotifyWnd(HWND hWnd)
- {
- m_hWndParent = hWnd;
- }
- BOOL COptionsSheet::OnInitDialog()
- {
- m_bModeless = FALSE;
- m_nFlags |= WF_CONTINUEMODAL;
- HICON b = (HICON)LoadImage(AfxGetInstanceHandle(), MAKEINTRESOURCE(IDR_MAINFRAME), IMAGE_ICON, 64, 64, LR_SHARED);
- SetIcon(b, TRUE);
- BOOL bResult = CPropertySheet::OnInitDialog();
- SetWindowText(_T("Options"));
- theApp.m_Language.UpdateOptionsSheet(this);
- ::ShowWindow(::GetDlgItem(m_hWnd, ID_APPLY_NOW), SW_HIDE);
- m_bModeless = TRUE;
- m_nFlags &= ~WF_CONTINUEMODAL;
- return bResult;
- }
- void COptionsSheet::OnNcDestroy()
- {
- CPropertySheet::OnNcDestroy();
- ::PostMessage(m_hWndParent, WM_OPTIONS_CLOSED, m_themeChanged, 0);
- }
|