📄 optionslist.h
字号:
/*
KeePass Password Safe - The Open-Source Password Manager
Copyright (C) 2003-2007 Dominik Reichl <dominik.reichl@t-online.de>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#if !defined(AFX_OPTIONSLIST_H__BF7FEFE1_9E08_11D9_BF17_0050BF14F5CC__INCLUDED_)
#define AFX_OPTIONSLIST_H__BF7FEFE1_9E08_11D9_BF17_0050BF14F5CC__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include <vector>
#define OL_CHECK_FALSE 1
#define OL_CHECK_TRUE 2
#define OL_RADIO_FALSE 3
#define OL_RADIO_TRUE 4
#define OL_CHECK_LOCKED_FALSE 5
#define OL_CHECK_LOCKED_TRUE 6
#define OLF_LOCKED 1
#define OL_LINK_NULL 0
#define OL_LINK_SAME_TRIGGER_FALSE 1
#define OL_LINK_INV_TRIGGER_FALSE 2
#define OL_LINK_SAME_TRIGGER_TRUE 3
#define OL_LINK_INV_TRIGGER_TRUE 4
#define OL_LINK_SAME_TRIGGER_ALWAYS 5
#define OL_LINK_INV_TRIGGER_ALWAYS 6
/////////////////////////////////////////////////////////////////////////////
// COptionsList window
class COptionsList : public CListCtrl
{
// Construction
public:
COptionsList();
virtual ~COptionsList();
void InitOptionListEx(CImageList *pImages, BOOL bTwoColumns);
void AddGroupText(LPCTSTR lpItemText, int nIcon);
void AddCheckItem(LPCTSTR lpItemText, BOOL *pValueStorage, BOOL *pLinkedValue, int nLinkType);
void AddCheckItemEx(LPCTSTR lpItemText, LPCTSTR lpSubItemText, BOOL *pValueStorage, BOOL *pLinkedValue, int nLinkType);
//{{AFX_VIRTUAL(COptionsList)
virtual BOOL PreTranslateMessage(MSG* pMsg);
//}}AFX_VIRTUAL
private:
void SetListItemCheck(int nItem, BOOL bCheck);
int FindItemPointer(void *p);
void ToggleItem(int nItem);
void ToggleSelectedItems();
BOOL m_bTwoColumns;
CImageList *m_pImages;
std::vector<void *> m_ptrs;
std::vector<void *> m_ptrsLinked;
std::vector<BOOL> m_aLinkType;
protected:
//{{AFX_MSG(COptionsList)
afx_msg void OnClick(NMHDR* pNMHDR, LRESULT* pResult);
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
//{{AFX_INSERT_LOCATION}}
#endif // !defined(AFX_OPTIONSLIST_H__BF7FEFE1_9E08_11D9_BF17_0050BF14F5CC__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -