Skip to content

Commit d11ce98

Browse files
committed
Updated screenshots in manual
Also fixed document count in search panel.
1 parent 8373479 commit d11ce98

29 files changed

+60
-49
lines changed

MacroscopeDocument/t/TestMacroscopeDocument.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,17 +40,17 @@ public class TestMacroscopeDocument
4040
public void TestHtmlDocument ()
4141
{
4242

43-
List<string> lList = new List<string> () {
43+
List<string> UrlList = new List<string> () {
4444
{
4545
"https://nazuke.github.io/SEOMacroscope/"
4646
}
4747
};
4848

49-
foreach( string Url in lList )
49+
foreach( string Url in UrlList )
5050
{
5151

5252
MacroscopeDocument msDoc = new MacroscopeDocument ( Url: Url );
53-
53+
5454
Assert.IsNotNull( msDoc, string.Format( "FAIL: {0}", Url ) );
5555

5656
msDoc.Execute();

MacroscopeForms/MacroscopeDisplay/MacroscopeDisplayViews/MacroscopeDisplaySearchCollection.cs

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,23 @@ namespace SEOMacroscope
3333
public sealed class MacroscopeDisplaySearchCollection : MacroscopeDisplayListView
3434
{
3535

36+
/**************************************************************************/
37+
38+
private ToolStripLabel DocumentCount;
39+
3640
/**************************************************************************/
3741

38-
public MacroscopeDisplaySearchCollection ( MacroscopeMainForm MainForm, ListView lvListView )
42+
public MacroscopeDisplaySearchCollection (
43+
MacroscopeMainForm MainForm,
44+
ListView lvListView
45+
)
3946
: base( MainForm, lvListView )
4047
{
4148

4249
this.MainForm = MainForm;
4350
this.lvListView = lvListView;
44-
51+
this.DocumentCount = this.MainForm.macroscopeOverviewTabPanelInstance.toolStripSearchCollectionDocumentsNumber;
52+
4553
if( this.MainForm.InvokeRequired )
4654
{
4755
this.MainForm.Invoke(
@@ -127,6 +135,8 @@ protected override void RenderListView ( MacroscopeDocument msDoc, string Url )
127135

128136
}
129137

138+
this.DocumentCount.Text = string.Format( "Documents: {0}", lvListView.Items.Count );
139+
130140
}
131141

132142
/**************************************************************************/

MacroscopeForms/MacroscopeMainForm.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1323,6 +1323,7 @@ private void CallbackHierarchyNodeMouseClick ( object sender, TreeNodeMouseClick
13231323
private void CallbackSearchCollectionButtonClear ( object sender, EventArgs e )
13241324
{
13251325
this.msDisplaySearchCollection.ClearData();
1326+
this.macroscopeOverviewTabPanelInstance.toolStripSearchCollectionDocumentsNumber.Text = string.Format( "Documents: {0}", 0 );
13261327
}
13271328

13281329
private void CallbackSearchCollectionTextBoxSearchKeyUp ( object sender, KeyEventArgs e )

MacroscopeUserControls/MacroscopeOverviewPanel/MacroscopeOverviewPanel.Designer.cs

Lines changed: 44 additions & 44 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
-4.05 KB
Loading
4.2 KB
Loading
Loading
57.2 KB
Loading
Loading
Loading

0 commit comments

Comments
 (0)