querysetdef.cpp

来自「Password Safe Password Safe is a passwor」· C++ 代码 · 共 64 行

CPP
64
字号
/// \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 + =
减小字号Ctrl + -
显示快捷键?