1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
|
/*
KeePass Password Safe - The Open-Source Password Manager
Copyright (C) 2003-2012 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
*/
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Diagnostics;
using KeePass.UI;
using KeePass.Resources;
using KeePassLib;
using KeePassLib.Delegates;
namespace KeePass.Forms
{
public partial class DatabaseOperationsForm : Form, IGwmWindow
{
private PwDatabase m_pwDatabase = null;
private bool m_bModified = false;
public bool CanCloseWithoutDataLoss { get { return true; } }
public bool HasModifiedDatabase { get { return m_bModified; } }
public void InitEx(PwDatabase pwDatabase)
{
m_pwDatabase = pwDatabase;
}
public DatabaseOperationsForm()
{
InitializeComponent();
Program.Translation.ApplyTo(this);
}
private void OnFormLoad(object sender, EventArgs e)
{
Debug.Assert(m_pwDatabase != null); if(m_pwDatabase == null) throw new InvalidOperationException();
GlobalWindowManager.AddWindow(this, this);
BannerFactory.CreateBannerEx(this, m_bannerImage,
Properties.Resources.B48x48_Package_Settings, KPRes.DatabaseMaintenance,
KPRes.DatabaseMaintenanceDesc);
this.Icon = new Icon("/usr/share/keepass2/KeePass.ico");
this.Text = KPRes.DatabaseMaintenance;
m_numHistoryDays.Value = m_pwDatabase.MaintenanceHistoryDays;
m_pbStatus.Visible = false;
}
private void OnBtnClose(object sender, EventArgs e)
{
m_pwDatabase.MaintenanceHistoryDays = (uint)m_numHistoryDays.Value;
}
private void EnableStatusMsgEx(bool bEnable)
{
if(bEnable)
{
m_btnClose.Enabled = m_btnHistoryEntriesDelete.Enabled =
m_btnRemoveDelObjInfo.Enabled = false;
if(!m_pbStatus.Visible) m_pbStatus.Visible = true;
m_pbStatus.Value = 0;
}
else
{
m_btnClose.Enabled = m_btnHistoryEntriesDelete.Enabled =
m_btnRemoveDelObjInfo.Enabled = true;
m_pbStatus.Value = m_pbStatus.Maximum;
}
}
private void OnBtnDelete(object sender, EventArgs e)
{
EnableStatusMsgEx(true);
DateTime dtNow = DateTime.Now;
TimeSpan tsSpan = new TimeSpan((int)m_numHistoryDays.Value, 0, 0, 0);
uint uNumGroups, uNumEntries;
m_pwDatabase.RootGroup.GetCounts(true, out uNumGroups, out uNumEntries);
uint uCurEntryNumber = 1;
EntryHandler eh = delegate(PwEntry pe)
{
for(uint u = 0; u < pe.History.UCount; ++u)
{
PwEntry peHist = pe.History.GetAt(u);
if((dtNow - peHist.LastModificationTime) >= tsSpan)
{
pe.History.Remove(peHist);
--u;
m_bModified = true;
}
}
m_pbStatus.Value = (int)((uCurEntryNumber * 100) / uNumEntries);
++uCurEntryNumber;
return true;
};
m_pwDatabase.RootGroup.TraverseTree(TraversalMethod.PreOrder, null, eh);
EnableStatusMsgEx(false); // Database is set modified by parent
}
private void OnFormClosed(object sender, FormClosedEventArgs e)
{
GlobalWindowManager.RemoveWindow(this);
}
private void OnBtnRemoveDelObjInfo(object sender, EventArgs e)
{
EnableStatusMsgEx(true);
if(m_pwDatabase.DeletedObjects.UCount > 0)
{
m_pwDatabase.DeletedObjects.Clear();
m_bModified = true;
}
EnableStatusMsgEx(false); // Database is set modified by parent
}
}
}
|