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
|
/*
KeePass Password Safe - The Open-Source Password Manager
Copyright (C) 2003-2019 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.Diagnostics;
using System.Text;
using System.Windows.Forms;
using KeePassLib.Delegates;
using KeePassLib.Translation;
using KeePassLib.Utility;
namespace TrlUtil
{
public static class AccelKeysCheck
{
public static void Validate(KPTranslation trl, List<string> lErrors)
{
if(trl == null) { Debug.Assert(false); return; }
foreach(KPFormCustomization kpfc in trl.Forms)
{
if(kpfc == null) { Debug.Assert(false); continue; }
Validate(kpfc, kpfc.FormEnglish, new Dictionary<char, string>(), lErrors);
}
}
private static void Validate(KPFormCustomization kpfc, Control cParent,
Dictionary<char, string> d, List<string> lErrors)
{
if(kpfc == null) { Debug.Assert(false); return; }
if(cParent == null) { Debug.Assert(false); return; }
List<Control> lToRecInto = new List<Control>();
foreach(Control c in cParent.Controls)
{
if(c == null) { Debug.Assert(false); continue; }
if(c == cParent) { Debug.Assert(false); continue; }
Debug.Assert((cParent is TabControl) == (c is TabPage));
if(c is TabPage) lToRecInto.Add(c);
else Validate(kpfc, c, d, lErrors); // Same context as parent
string strText = Translate(kpfc, c);
if(string.IsNullOrEmpty(strText)) continue;
string strName = (string.IsNullOrEmpty(c.Name) ? "<Unknown>" : c.Name);
string strID = "'" + kpfc.FullName + "." + strName + "'," +
MessageService.NewLine + "text: \"" + strText + "\".";
string strError;
char chKey = GetAccelKey(strText, out strError);
if(strError != null)
lErrors.Add("Control: " + strID + MessageService.NewParagraph +
strError);
if(chKey == char.MinValue) continue;
string strExist;
if(d.TryGetValue(chKey, out strExist))
lErrors.Add("Accelerator key '" + chKey.ToString() +
"' collision:" + MessageService.NewParagraph +
"Control 1: " + strExist + MessageService.NewParagraph +
"Control 2: " + strID);
else d.Add(chKey, strID);
}
foreach(Control cSub in lToRecInto)
{
Dictionary<char, string> dSub = new Dictionary<char, string>(d);
Validate(kpfc, cSub, dSub, lErrors); // New context
}
}
private static string Translate(KPFormCustomization kpfc, Control c)
{
string strName = c.Name;
if(string.IsNullOrEmpty(strName)) return string.Empty;
foreach(KPControlCustomization cc in kpfc.Controls)
{
if(cc.Name == strName)
{
if(!string.IsNullOrEmpty(cc.TextEnglish))
{
Debug.Assert(c.Text == cc.TextEnglish);
}
return (!string.IsNullOrEmpty(cc.Text) ? cc.Text : c.Text);
}
}
return c.Text;
}
private static char GetAccelKey(string strText, out string strError)
{
strError = null;
if(string.IsNullOrEmpty(strText)) return char.MinValue;
strText = strText.Replace(@"&&", string.Empty);
int iL = strText.IndexOf('&');
if(iL < 0) return char.MinValue;
int iR = strText.LastIndexOf('&');
if(iR != iL)
{
strError = "The text must not contain multiple accelerator key definitions!";
return char.MinValue;
}
if(iL == (strText.Length - 1))
{
strError = "Invalid accelerator key definition at the end of the text!";
return char.MinValue;
}
return char.ToUpper(strText[iL + 1]);
}
}
}
|