Search capbility for puzzles
This commit is contained in:
parent
708ff2372f
commit
bd1ca9fdf2
13
EduNetworkBuilder/ListBoxWindow.Designer.cs
generated
13
EduNetworkBuilder/ListBoxWindow.Designer.cs
generated
@ -35,6 +35,7 @@
|
||||
this.btnAdd = new System.Windows.Forms.Button();
|
||||
this.cbLoadPuzzlesAtStart = new System.Windows.Forms.CheckBox();
|
||||
this.btnReset = new System.Windows.Forms.Button();
|
||||
this.tbSearchBox = new System.Windows.Forms.TextBox();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// lbWindowData
|
||||
@ -78,7 +79,7 @@
|
||||
| System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.lblInstructions.Location = new System.Drawing.Point(12, 195);
|
||||
this.lblInstructions.Name = "lblInstructions";
|
||||
this.lblInstructions.Size = new System.Drawing.Size(576, 38);
|
||||
this.lblInstructions.Size = new System.Drawing.Size(469, 38);
|
||||
this.lblInstructions.TabIndex = 3;
|
||||
this.lblInstructions.Text = "label1";
|
||||
//
|
||||
@ -115,12 +116,21 @@
|
||||
this.btnReset.UseVisualStyleBackColor = true;
|
||||
this.btnReset.Click += new System.EventHandler(this.btnReset_Click);
|
||||
//
|
||||
// tbSearchBox
|
||||
//
|
||||
this.tbSearchBox.Location = new System.Drawing.Point(487, 195);
|
||||
this.tbSearchBox.Name = "tbSearchBox";
|
||||
this.tbSearchBox.Size = new System.Drawing.Size(100, 22);
|
||||
this.tbSearchBox.TabIndex = 7;
|
||||
this.tbSearchBox.TextChanged += new System.EventHandler(this.tbSearchBox_TextChanged);
|
||||
//
|
||||
// ListBoxWindow
|
||||
//
|
||||
this.AcceptButton = this.btnOK;
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.ClientSize = new System.Drawing.Size(601, 381);
|
||||
this.Controls.Add(this.tbSearchBox);
|
||||
this.Controls.Add(this.cbLoadPuzzlesAtStart);
|
||||
this.Controls.Add(this.btnReset);
|
||||
this.Controls.Add(this.btnAdd);
|
||||
@ -145,5 +155,6 @@
|
||||
private System.Windows.Forms.Button btnAdd;
|
||||
private System.Windows.Forms.CheckBox cbLoadPuzzlesAtStart;
|
||||
private System.Windows.Forms.Button btnReset;
|
||||
private System.Windows.Forms.TextBox tbSearchBox;
|
||||
}
|
||||
}
|
@ -22,6 +22,7 @@ namespace EduNetworkBuilder
|
||||
PacketMessage myPacketMessage;
|
||||
int EditableCount = -1;
|
||||
bool processing = false;
|
||||
string FilterString = "";
|
||||
|
||||
/// <summary>
|
||||
/// Instantiate a ListBoxWindow for use in choosing a network to load
|
||||
@ -39,6 +40,7 @@ namespace EduNetworkBuilder
|
||||
lblInstructions.Text = NB.Translate("LBW_LBWFilter");
|
||||
panelCheckboxes.SuspendLayout();
|
||||
string SelectedTag = GetSelectedTag();
|
||||
tbSearchBox.Visible = true;
|
||||
if (SelectedTag == NB.Translate("_All"))
|
||||
Text = Text + NB.Translate("_AllS");
|
||||
foreach (string str in NB.GetPuzzleTags())
|
||||
@ -70,6 +72,7 @@ namespace EduNetworkBuilder
|
||||
{
|
||||
InitializeComponent();
|
||||
LanguagifyComponents();
|
||||
tbSearchBox.Visible = false;
|
||||
if (mode == LBContents.routes)
|
||||
{
|
||||
MyMode = LBContents.routes;
|
||||
@ -225,6 +228,8 @@ namespace EduNetworkBuilder
|
||||
List<string> Puzzles = NB.GetPuzzleNames();
|
||||
if (Puzzles == null) return;
|
||||
foreach (string str in Puzzles)
|
||||
{
|
||||
if (FilterString == "")
|
||||
{
|
||||
pi = NB.GetPuzzleInfoFromName(str);
|
||||
shown_name = pi.PuzzleName;
|
||||
@ -238,6 +243,39 @@ namespace EduNetworkBuilder
|
||||
break;
|
||||
}
|
||||
}
|
||||
}else
|
||||
{
|
||||
//We are filtering stuff
|
||||
pi = NB.GetPuzzleInfoFromName(str);
|
||||
shown_name = pi.PuzzleName;
|
||||
bool added = false;
|
||||
string localFilter = ".*" + FilterString + ".*";
|
||||
if (Properties.Settings.Default.ScoreList.Contains(str))
|
||||
shown_name = "* " + shown_name;
|
||||
if (!added && pi.PuzzleName != null && Regex.IsMatch(pi.PuzzleName, localFilter, RegexOptions.IgnoreCase))
|
||||
{
|
||||
added = true;
|
||||
lbWindowData.Items.Add(shown_name);
|
||||
}
|
||||
if (!added && pi.PuzzleDescription!= null && Regex.IsMatch(pi.PuzzleDescription, localFilter, RegexOptions.IgnoreCase))
|
||||
{
|
||||
added = true;
|
||||
lbWindowData.Items.Add(shown_name);
|
||||
}
|
||||
if (!added && pi.PuzzleTitle != null && Regex.IsMatch(pi.PuzzleTitle, localFilter,RegexOptions.IgnoreCase))
|
||||
{
|
||||
added = true;
|
||||
lbWindowData.Items.Add(shown_name);
|
||||
}
|
||||
foreach (string tag in pi.PuzzleTags)
|
||||
{
|
||||
if (!added && pi.PuzzleTitle != null && Regex.IsMatch(tag, localFilter, RegexOptions.IgnoreCase))
|
||||
{
|
||||
lbWindowData.Items.Add(shown_name);
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
if(selected != null && selected != "")
|
||||
{
|
||||
@ -472,5 +510,20 @@ namespace EduNetworkBuilder
|
||||
}
|
||||
}
|
||||
|
||||
private void tbSearchBox_TextChanged(object sender, EventArgs e)
|
||||
{
|
||||
//If there are more than 2 characters, then we start to see if we can filter it
|
||||
if (tbSearchBox.Text.Length > 2)
|
||||
{
|
||||
//Now we filter the results
|
||||
FilterString = tbSearchBox.Text;
|
||||
UpdateForm();
|
||||
}
|
||||
else
|
||||
{
|
||||
FilterString = "";
|
||||
UpdateForm();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user