Click here to Skip to main content
Click here to Skip to main content

KeePass Password Safe

By , 3 Feb 2013
 
KeePass.zip
KeePass.chm
KeePass.exe
KeePass_Src.zip
Build
Docs
Ext
Icons
Finals
key-blu.png
key-bw.png
key-grn.ico
key-grn.png
plock.ico
plock.png
plockb.png
plock-blu.ico
plock-blu.png
plockbw.png
plock-bw.png
plockbw-r.png
plock-dis.ico
plock-grn.ico
plock-grn.png
Untitled.ico
Finals2
plock.ico
plockb.ico
plock-blu.ico
plock-dis.ico
keyhole-grn.ico
key-org.ico
lockblue.ico
lockgreen.ico
lockred.ico
lockyellow.ico
plockb.ico
plockb2.ico
plockbw.ico
plockg.ico
plocko.ico
plockr.ico
plocky.ico
KeePass.ini
KeePass.iss
KeePassMsi
KeePassMsi.vdproj
KeePassLibC
KeePassAPI
KeePassLib.def
res
KeePassLibCpp
Crypto
SHA2
DataExchange
Details
IO
PasswordGenerator
SDK
Details
SysSpec_Windows
Util
WinGUI
NewGUI
TaskbarListEx
TaskDialog
VistaMenu
Plugins
res
autotype.bmp
cancel.bmp
clienticex.bmp
clock.bmp
disk.bmp
document.bmp
entry_ed.ico
file.bmp
help_sma.bmp
help_smp.bmp
iconpic.ico
infoicon.bmp
infoiconex.bmp
key.ico
key_smal.bmp
keyhole.ico
language.bmp
lock_ovr.ico
locked.ico
mouse_sm.bmp
ok.bmp
optionicex.bmp
options.ico
plugins.ico
PwSafe.ico
random_b.bmp
randomke.bmp
search.ico
tb_about.bmp
tb_adden.bmp
tb_copyp.bmp
tb_copyu.bmp
tb_defau.bmp
tb_delet.bmp
tb_edite.bmp
tb_find.bmp
tb_lock.bmp
tb_new.bmp
tb_open.bmp
tb_save.bmp
tb_save1.bmp
tb_saved.bmp
toolssma.bmp
unlocked.ico
winprops.bmp
world.ico
Util
CmdLine
SprEngine
/*
  KeePass Password Safe - The Open-Source Password Manager
  Copyright (C) 2003-2013 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
*/

#ifndef AFX_ENTRYPROPERTIESDLG_H__C4740E60_4F39_11D8_BF16_0050BF14F5CC__INCLUDED_
#define AFX_ENTRYPROPERTIESDLG_H__C4740E60_4F39_11D8_BF16_0050BF14F5CC__INCLUDED_

#include "NewGUI/XPStyleButtonST.h"
#include "NewGUI/KCSideBannerWnd.h"
#include "NewGUI/AMSEdit.h"
#include "NewGUI/CustomComboBoxEx.h"
#include "../KeePassLibCpp/PwManager.h"
#include "afxwin.h"

/////////////////////////////////////////////////////////////////////////////

class CEntryPropertiesDlg : public CDialog
{
public:
	CEntryPropertiesDlg(CWnd* pParent = NULL);

	void SetExpireDays(DWORD dwDays, BOOL bSetTime);

	CKCSideBannerWnd m_banner;
	CImageList *m_pParentIcons;

	CPwManager *m_pMgr;
	int m_nGroupInx;
	PW_TIME m_tExpire;
	int m_nIconId;
	DWORD m_dwDefaultExpire;

	//{{AFX_DATA(CEntryPropertiesDlg)
	enum { IDD = IDD_ENTRYPROPERTIES_DLG };
	CXPStyleButtonST	m_btSetToDefaultExpire;
	CXPStyleButtonST	m_btSelDefExpires;
	CCustomComboBoxEx	m_cbGroups;
	CXPStyleButtonST	m_btSelectIcon;
	CXPStyleButtonST	m_btCancel;
	CXPStyleButtonST	m_btOK;
	CAMSTimeEdit	m_editTime;
	CAMSDateEdit	m_editDate;
	BOOL	m_bModExpire;
	BOOL	m_bModGroup;
	BOOL	m_bModIcon;
	CButton m_btRadioNoExpire;
	//}}AFX_DATA

	//{{AFX_VIRTUAL(CEntryPropertiesDlg)
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);
	//}}AFX_VIRTUAL

protected:
	//{{AFX_MSG(CEntryPropertiesDlg)
	virtual BOOL OnInitDialog();
	virtual void OnOK();
	virtual void OnCancel();
	afx_msg void OnButtonSelectIcon();
	afx_msg void OnCheckModExpire();
	afx_msg void OnCheckModGroup();
	afx_msg void OnCheckModIcon();
	afx_msg void OnSetDefaultExpireBtn();
	afx_msg void OnExpires1Week();
	afx_msg void OnExpires2Weeks();
	afx_msg void OnExpires1Month();
	afx_msg void OnExpires3Months();
	afx_msg void OnExpires6Months();
	afx_msg void OnExpires12Months();
	afx_msg void OnExpiresNow();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

//{{AFX_INSERT_LOCATION}}

#endif // AFX_ENTRYPROPERTIESDLG_H__C4740E60_4F39_11D8_BF16_0050BF14F5CC__INCLUDED_

By viewing downloads associated with this article you agree to the Terms of use and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Dominik Reichl
Software Developer
Germany Germany
Dominik started programming in Omikron Basic, a programming language for the good old Atari ST. After this, there was some short period of QBasic programming on the PC, but soon he began learning C++, which is his favorite language up to now.
 
Today, his programming experience includes C / C++ / [Visual] C++ [MFC], C#/.NET, Java, JavaScript, PHP and HTML and the basics of pure assembler.
 
He is interested in almost everything that has to do with computing, his special interests are security and data compression.
 
You can find his latest freeware, open-source projects and all articles on his homepage: http://www.dominik-reichl.de/

Permalink | Advertise | Privacy | Mobile
Web03 | 2.6.130617.1 | Last Updated 3 Feb 2013
Article Copyright 2003 by Dominik Reichl
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid