📄 querysetdef.cpp
字号:
/// \file QuerySetDef.cpp//-----------------------------------------------------------------------------#include "stdafx.h"#include "PasswordSafe.h"#include "corelib/PwsPlatform.h"#include "corelib/PWSprefs.h"#include "ThisMfcApp.h"#if defined(POCKET_PC) #include "pocketpc/resource.h"#else #include "resource.h"#endif#include "QuerySetDef.h"#ifdef _DEBUG#define new DEBUG_NEW#undef THIS_FILEstatic char THIS_FILE[] = __FILE__;#endif//-----------------------------------------------------------------------------CQuerySetDef::CQuerySetDef(CWnd* pParent) : super(CQuerySetDef::IDD, pParent){ m_querycheck = FALSE; m_message = "";}void CQuerySetDef::DoDataExchange(CDataExchange* pDX){ super::DoDataExchange(pDX); DDX_Check(pDX, IDC_QUERYCHECK, m_querycheck); DDX_Text(pDX, IDC_MESSAGE, m_message);}BEGIN_MESSAGE_MAP(CQuerySetDef, super)END_MESSAGE_MAP()void CQuerySetDef::OnOK() { UpdateData(TRUE); PWSprefs::GetInstance()->SetPref(PWSprefs::BoolPrefs::QuerySetDef, m_querycheck == FALSE); super::OnOK();}void CQuerySetDef::OnCancel(){ UpdateData(TRUE); PWSprefs::GetInstance()->SetPref(PWSprefs::BoolPrefs::QuerySetDef, m_querycheck == FALSE); super::OnCancel();}//-----------------------------------------------------------------------------//-----------------------------------------------------------------------------
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -