mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-23 04:12:12 +00:00
added list on Preferences Controls tab that shows the actions with the same key
This commit is contained in:
parent
895c3b8a00
commit
5adaf2ee4b
3 changed files with 336 additions and 21 deletions
65
Source/Windows/PreferencesForm.Designer.cs
generated
65
Source/Windows/PreferencesForm.Designer.cs
generated
|
@ -38,6 +38,7 @@ namespace CodeImp.DoomBuilder.Windows
|
|||
this.classicbilinear = new System.Windows.Forms.CheckBox();
|
||||
this.squarethings = new System.Windows.Forms.CheckBox();
|
||||
this.qualitydisplay = new System.Windows.Forms.CheckBox();
|
||||
this.keyusedlabel = new System.Windows.Forms.Label();
|
||||
this.colorsgroup1 = new System.Windows.Forms.GroupBox();
|
||||
this.colorgrid64 = new CodeImp.DoomBuilder.Controls.ColorControl();
|
||||
this.colorgrid = new CodeImp.DoomBuilder.Controls.ColorControl();
|
||||
|
@ -82,6 +83,8 @@ namespace CodeImp.DoomBuilder.Windows
|
|||
this.columncontrolaction = new System.Windows.Forms.ColumnHeader();
|
||||
this.columncontrolkey = new System.Windows.Forms.ColumnHeader();
|
||||
this.actioncontrolpanel = new System.Windows.Forms.GroupBox();
|
||||
this.keyusedlist = new System.Windows.Forms.ListBox();
|
||||
this.disregardshiftlabel = new System.Windows.Forms.Label();
|
||||
this.actioncontrol = new System.Windows.Forms.ComboBox();
|
||||
this.actiontitle = new System.Windows.Forms.Label();
|
||||
this.actioncontrolclear = new System.Windows.Forms.Button();
|
||||
|
@ -102,7 +105,6 @@ namespace CodeImp.DoomBuilder.Windows
|
|||
this.colorlinenumbers = new CodeImp.DoomBuilder.Controls.ColorControl();
|
||||
this.colorcomments = new CodeImp.DoomBuilder.Controls.ColorControl();
|
||||
this.colorplaintext = new CodeImp.DoomBuilder.Controls.ColorControl();
|
||||
this.disregardshiftlabel = new System.Windows.Forms.Label();
|
||||
label7 = new System.Windows.Forms.Label();
|
||||
label6 = new System.Windows.Forms.Label();
|
||||
label5 = new System.Windows.Forms.Label();
|
||||
|
@ -130,7 +132,7 @@ namespace CodeImp.DoomBuilder.Windows
|
|||
// label7
|
||||
//
|
||||
label7.AutoSize = true;
|
||||
label7.Location = new System.Drawing.Point(20, 183);
|
||||
label7.Location = new System.Drawing.Point(20, 172);
|
||||
label7.Name = "label7";
|
||||
label7.Size = new System.Drawing.Size(187, 14);
|
||||
label7.TabIndex = 7;
|
||||
|
@ -230,6 +232,16 @@ namespace CodeImp.DoomBuilder.Windows
|
|||
label1.TabIndex = 20;
|
||||
label1.Text = "Texture and Flats brightness:";
|
||||
//
|
||||
// keyusedlabel
|
||||
//
|
||||
this.keyusedlabel.AutoSize = true;
|
||||
this.keyusedlabel.Location = new System.Drawing.Point(20, 277);
|
||||
this.keyusedlabel.Name = "keyusedlabel";
|
||||
this.keyusedlabel.Size = new System.Drawing.Size(222, 14);
|
||||
this.keyusedlabel.TabIndex = 10;
|
||||
this.keyusedlabel.Text = "Key combination also used by these actions:";
|
||||
this.keyusedlabel.Visible = false;
|
||||
//
|
||||
// colorsgroup1
|
||||
//
|
||||
this.colorsgroup1.Controls.Add(this.colorgrid64);
|
||||
|
@ -753,6 +765,8 @@ namespace CodeImp.DoomBuilder.Windows
|
|||
//
|
||||
this.actioncontrolpanel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
||||
| System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.actioncontrolpanel.Controls.Add(this.keyusedlist);
|
||||
this.actioncontrolpanel.Controls.Add(this.keyusedlabel);
|
||||
this.actioncontrolpanel.Controls.Add(this.disregardshiftlabel);
|
||||
this.actioncontrolpanel.Controls.Add(this.actioncontrol);
|
||||
this.actioncontrolpanel.Controls.Add(label7);
|
||||
|
@ -771,12 +785,36 @@ namespace CodeImp.DoomBuilder.Windows
|
|||
this.actioncontrolpanel.TabStop = false;
|
||||
this.actioncontrolpanel.Text = " Action control ";
|
||||
//
|
||||
// keyusedlist
|
||||
//
|
||||
this.keyusedlist.BackColor = System.Drawing.SystemColors.Control;
|
||||
this.keyusedlist.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.keyusedlist.FormattingEnabled = true;
|
||||
this.keyusedlist.ItemHeight = 14;
|
||||
this.keyusedlist.Location = new System.Drawing.Point(33, 294);
|
||||
this.keyusedlist.Name = "keyusedlist";
|
||||
this.keyusedlist.SelectionMode = System.Windows.Forms.SelectionMode.None;
|
||||
this.keyusedlist.Size = new System.Drawing.Size(232, 42);
|
||||
this.keyusedlist.Sorted = true;
|
||||
this.keyusedlist.TabIndex = 11;
|
||||
this.keyusedlist.Visible = false;
|
||||
//
|
||||
// disregardshiftlabel
|
||||
//
|
||||
this.disregardshiftlabel.Location = new System.Drawing.Point(20, 224);
|
||||
this.disregardshiftlabel.Name = "disregardshiftlabel";
|
||||
this.disregardshiftlabel.Size = new System.Drawing.Size(245, 47);
|
||||
this.disregardshiftlabel.TabIndex = 9;
|
||||
this.disregardshiftlabel.Text = "The selected actions uses Shift, Alt and Control to modify it\'s behavior, these m" +
|
||||
"odifiers can not be used in a key combination for this action.";
|
||||
this.disregardshiftlabel.Visible = false;
|
||||
//
|
||||
// actioncontrol
|
||||
//
|
||||
this.actioncontrol.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
||||
this.actioncontrol.FormattingEnabled = true;
|
||||
this.actioncontrol.ImeMode = System.Windows.Forms.ImeMode.Off;
|
||||
this.actioncontrol.Location = new System.Drawing.Point(23, 204);
|
||||
this.actioncontrol.Location = new System.Drawing.Point(23, 190);
|
||||
this.actioncontrol.Name = "actioncontrol";
|
||||
this.actioncontrol.Size = new System.Drawing.Size(197, 22);
|
||||
this.actioncontrol.TabIndex = 8;
|
||||
|
@ -796,7 +834,7 @@ namespace CodeImp.DoomBuilder.Windows
|
|||
//
|
||||
// actioncontrolclear
|
||||
//
|
||||
this.actioncontrolclear.Location = new System.Drawing.Point(193, 140);
|
||||
this.actioncontrolclear.Location = new System.Drawing.Point(193, 138);
|
||||
this.actioncontrolclear.Name = "actioncontrolclear";
|
||||
this.actioncontrolclear.Size = new System.Drawing.Size(63, 25);
|
||||
this.actioncontrolclear.TabIndex = 6;
|
||||
|
@ -808,7 +846,7 @@ namespace CodeImp.DoomBuilder.Windows
|
|||
// actionkey
|
||||
//
|
||||
this.actionkey.ImeMode = System.Windows.Forms.ImeMode.Off;
|
||||
this.actionkey.Location = new System.Drawing.Point(23, 142);
|
||||
this.actionkey.Location = new System.Drawing.Point(23, 140);
|
||||
this.actionkey.Name = "actionkey";
|
||||
this.actionkey.Size = new System.Drawing.Size(163, 20);
|
||||
this.actionkey.TabIndex = 5;
|
||||
|
@ -818,9 +856,9 @@ namespace CodeImp.DoomBuilder.Windows
|
|||
// actiondescription
|
||||
//
|
||||
this.actiondescription.AutoEllipsis = true;
|
||||
this.actiondescription.Location = new System.Drawing.Point(20, 52);
|
||||
this.actiondescription.Location = new System.Drawing.Point(20, 50);
|
||||
this.actiondescription.Name = "actiondescription";
|
||||
this.actiondescription.Size = new System.Drawing.Size(245, 70);
|
||||
this.actiondescription.Size = new System.Drawing.Size(245, 71);
|
||||
this.actiondescription.TabIndex = 3;
|
||||
this.actiondescription.UseMnemonic = false;
|
||||
//
|
||||
|
@ -1002,17 +1040,6 @@ namespace CodeImp.DoomBuilder.Windows
|
|||
this.colorplaintext.Size = new System.Drawing.Size(150, 23);
|
||||
this.colorplaintext.TabIndex = 12;
|
||||
//
|
||||
// disregardshiftlabel
|
||||
//
|
||||
this.disregardshiftlabel.Location = new System.Drawing.Point(20, 263);
|
||||
this.disregardshiftlabel.Name = "disregardshiftlabel";
|
||||
this.disregardshiftlabel.Size = new System.Drawing.Size(229, 73);
|
||||
this.disregardshiftlabel.TabIndex = 9;
|
||||
this.disregardshiftlabel.Text = "The selected actions uses modifier keys (Shift, Alt and Control) to modify it\'s b" +
|
||||
"ehavior. Therefor, no combination with these modifiers can be used for this acti" +
|
||||
"on.";
|
||||
this.disregardshiftlabel.Visible = false;
|
||||
//
|
||||
// PreferencesForm
|
||||
//
|
||||
this.AcceptButton = this.apply;
|
||||
|
@ -1131,5 +1158,7 @@ namespace CodeImp.DoomBuilder.Windows
|
|||
private Dotnetrix.Controls.TrackBar doublesidedalpha;
|
||||
private Dotnetrix.Controls.TrackBar imagebrightness;
|
||||
private System.Windows.Forms.Label disregardshiftlabel;
|
||||
private System.Windows.Forms.ListBox keyusedlist;
|
||||
private System.Windows.Forms.Label keyusedlabel;
|
||||
}
|
||||
}
|
|
@ -307,6 +307,49 @@ namespace CodeImp.DoomBuilder.Windows
|
|||
|
||||
#region ================== Controls Panel
|
||||
|
||||
// This updates the used keys info
|
||||
private void UpdateKeyUsedActions()
|
||||
{
|
||||
List<string> usedactions = new List<string>();
|
||||
|
||||
// Anything selected?
|
||||
if(listactions.SelectedItems.Count > 0)
|
||||
{
|
||||
// Get info
|
||||
int thiskey = (int)listactions.SelectedItems[0].SubItems[1].Tag;
|
||||
|
||||
// Find actions with same key
|
||||
foreach(ListViewItem item in listactions.Items)
|
||||
{
|
||||
// Don't count the selected action
|
||||
if(item != listactions.SelectedItems[0])
|
||||
{
|
||||
Action a = General.Actions[item.Name];
|
||||
int akey = (int)item.SubItems[1].Tag;
|
||||
|
||||
// Check if the key combination matches
|
||||
if((thiskey & a.ShortcutMask) == (akey & a.ShortcutMask))
|
||||
usedactions.Add(General.Actions.Categories[a.Category] + ": " + a.Title);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Update info
|
||||
if(usedactions.Count == 0)
|
||||
{
|
||||
keyusedlabel.Visible = false;
|
||||
keyusedlist.Visible = false;
|
||||
keyusedlist.Items.Clear();
|
||||
}
|
||||
else
|
||||
{
|
||||
keyusedlist.Items.Clear();
|
||||
foreach(string a in usedactions) keyusedlist.Items.Add(a);
|
||||
keyusedlabel.Visible = true;
|
||||
keyusedlist.Visible = true;
|
||||
}
|
||||
}
|
||||
|
||||
// This fills the list of available controls for the specified action
|
||||
private void FillControlsList(Action a)
|
||||
{
|
||||
|
@ -407,7 +450,10 @@ namespace CodeImp.DoomBuilder.Windows
|
|||
// Otherwise display the key in the textbox
|
||||
if(actioncontrol.SelectedIndex == -1)
|
||||
actionkey.Text = Action.GetShortcutKeyDesc(key);
|
||||
|
||||
|
||||
// Show actions with same key
|
||||
UpdateKeyUsedActions();
|
||||
|
||||
// Focus to the input box
|
||||
actionkey.Focus();
|
||||
|
||||
|
@ -430,6 +476,9 @@ namespace CodeImp.DoomBuilder.Windows
|
|||
actioncontrol.SelectedIndex = -1;
|
||||
disregardshiftlabel.Visible = false;
|
||||
}
|
||||
|
||||
// Show actions with same key
|
||||
UpdateKeyUsedActions();
|
||||
}
|
||||
|
||||
// Mouse released
|
||||
|
@ -467,6 +516,9 @@ namespace CodeImp.DoomBuilder.Windows
|
|||
listactions.SelectedItems[0].SubItems[1].Tag = key;
|
||||
actionkey.Text = Action.GetShortcutKeyDesc(key);
|
||||
|
||||
// Show actions with same key
|
||||
UpdateKeyUsedActions();
|
||||
|
||||
// Done
|
||||
allowapplycontrol = true;
|
||||
}
|
||||
|
@ -503,7 +555,10 @@ namespace CodeImp.DoomBuilder.Windows
|
|||
// Apply the key combination
|
||||
listactions.SelectedItems[0].SubItems[1].Text = Action.GetShortcutKeyDesc(key.key);
|
||||
listactions.SelectedItems[0].SubItems[1].Tag = key.key;
|
||||
|
||||
|
||||
// Show actions with same key
|
||||
UpdateKeyUsedActions();
|
||||
|
||||
// Focus to the input box
|
||||
actionkey.Focus();
|
||||
|
||||
|
@ -525,7 +580,10 @@ namespace CodeImp.DoomBuilder.Windows
|
|||
// Apply the key combination
|
||||
listactions.SelectedItems[0].SubItems[1].Text = "";
|
||||
listactions.SelectedItems[0].SubItems[1].Tag = (int)0;
|
||||
|
||||
|
||||
// Show actions with same key
|
||||
UpdateKeyUsedActions();
|
||||
|
||||
// Focus to the input box
|
||||
actionkey.Focus();
|
||||
|
||||
|
|
|
@ -117,19 +117,247 @@
|
|||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<metadata name="label7.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="label7.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>False</value>
|
||||
</metadata>
|
||||
<metadata name="label6.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="label6.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>False</value>
|
||||
</metadata>
|
||||
<metadata name="label5.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="label5.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>False</value>
|
||||
</metadata>
|
||||
<metadata name="groupBox1.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="groupBox1.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>False</value>
|
||||
</metadata>
|
||||
<metadata name="label14.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="defaultviewmode.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="classicbilinear.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="squarethings.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="qualitydisplay.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="label1.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="label1.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>False</value>
|
||||
</metadata>
|
||||
<metadata name="keyusedlabel.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="colorsgroup1.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="colorgrid64.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="colorgrid.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="colorindication.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="colorsoundlinedefs.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="colorspeciallinedefs.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="colorbackcolor.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="colorselection.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="colorvertices.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="colorhighlight.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="colorlinedefs.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="cancel.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="apply.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="tabs.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="tabinterface.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="groupBox3.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="panel1.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="scriptfontlabel.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="scriptfontsize.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="label8.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="scriptfontbold.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="scriptfontname.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="label3.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="groupBox2.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="viewdistance.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="movespeed.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="mousespeed.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="fieldofview.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="viewdistancelabel.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="label13.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="fixedaspect.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="invertyaxis.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="movespeedlabel.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="label11.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="mousespeedlabel.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="label9.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="fieldofviewlabel.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="label4.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="visualbilinear.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="tabkeys.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="listactions.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="actioncontrolpanel.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="keyusedlist.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="disregardshiftlabel.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="actioncontrol.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="actiontitle.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="actioncontrolclear.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="actionkey.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="actiondescription.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="tabcolors.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="imagebrightness.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="doublesidedalpha.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="imagebrightnesslabel.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="doublesidedalphalabel.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="label2.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="blackbrowsers.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="colorsgroup3.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="colorconstants.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="colorliterals.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="colorscriptbackground.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="colorkeywords.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="colorlinenumbers.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="colorcomments.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="colorplaintext.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="$this.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
</root>
|
Loading…
Reference in a new issue