Updated the FileManager to reflect more where I think I want to go when comparing snapshots. Added a first try at detecting file renames in the Snapshot object.

This commit is contained in:
Admin
2020-12-11 17:32:28 -06:00
parent 864a3dfdb6
commit 06b586d635
5 changed files with 189 additions and 18 deletions
+52
View File
@@ -49,12 +49,18 @@
this.CompareAgainstProfileComboBox = new System.Windows.Forms.ComboBox();
this.statusStrip1 = new System.Windows.Forms.StatusStrip();
this.StatusLabel = new System.Windows.Forms.ToolStripStatusLabel();
this.SelectedGroupFolderViewGroupBox = new System.Windows.Forms.GroupBox();
this.SelectedFolderViewGroupTreeView = new System.Windows.Forms.TreeView();
this.ComparisionFolderViewGroupBox = new System.Windows.Forms.GroupBox();
this.ComparisionFolderViewTreeView = new System.Windows.Forms.TreeView();
this.MainLayoutPanel.SuspendLayout();
this.MainMenuStrip.SuspendLayout();
this.DiffResultsGroupBox.SuspendLayout();
this.SelectedProfileInfoGroupBox.SuspendLayout();
this.CompareAgainstGroupBox.SuspendLayout();
this.statusStrip1.SuspendLayout();
this.SelectedGroupFolderViewGroupBox.SuspendLayout();
this.ComparisionFolderViewGroupBox.SuspendLayout();
this.SuspendLayout();
//
// MainLayoutPanel
@@ -70,6 +76,8 @@
this.MainLayoutPanel.Controls.Add(this.SelectedProfileInfoGroupBox, 0, 1);
this.MainLayoutPanel.Controls.Add(this.CompareAgainstGroupBox, 1, 1);
this.MainLayoutPanel.Controls.Add(this.statusStrip1, 0, 4);
this.MainLayoutPanel.Controls.Add(this.SelectedGroupFolderViewGroupBox, 2, 2);
this.MainLayoutPanel.Controls.Add(this.ComparisionFolderViewGroupBox, 2, 3);
this.MainLayoutPanel.Dock = System.Windows.Forms.DockStyle.Fill;
this.MainLayoutPanel.Location = new System.Drawing.Point(0, 0);
this.MainLayoutPanel.Name = "MainLayoutPanel";
@@ -280,6 +288,44 @@
this.StatusLabel.Size = new System.Drawing.Size(165, 25);
this.StatusLabel.Text = "Nothing to report...";
//
// SelectedGroupFolderViewGroupBox
//
this.SelectedGroupFolderViewGroupBox.Controls.Add(this.SelectedFolderViewGroupTreeView);
this.SelectedGroupFolderViewGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
this.SelectedGroupFolderViewGroupBox.Location = new System.Drawing.Point(877, 221);
this.SelectedGroupFolderViewGroupBox.Name = "SelectedGroupFolderViewGroupBox";
this.SelectedGroupFolderViewGroupBox.Size = new System.Drawing.Size(426, 351);
this.SelectedGroupFolderViewGroupBox.TabIndex = 10;
this.SelectedGroupFolderViewGroupBox.TabStop = false;
//
// SelectedFolderViewGroupTreeView
//
this.SelectedFolderViewGroupTreeView.Dock = System.Windows.Forms.DockStyle.Fill;
this.SelectedFolderViewGroupTreeView.FullRowSelect = true;
this.SelectedFolderViewGroupTreeView.Location = new System.Drawing.Point(3, 22);
this.SelectedFolderViewGroupTreeView.Name = "SelectedFolderViewGroupTreeView";
this.SelectedFolderViewGroupTreeView.Size = new System.Drawing.Size(420, 326);
this.SelectedFolderViewGroupTreeView.TabIndex = 0;
//
// ComparisionFolderViewGroupBox
//
this.ComparisionFolderViewGroupBox.Controls.Add(this.ComparisionFolderViewTreeView);
this.ComparisionFolderViewGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
this.ComparisionFolderViewGroupBox.Location = new System.Drawing.Point(877, 578);
this.ComparisionFolderViewGroupBox.Name = "ComparisionFolderViewGroupBox";
this.ComparisionFolderViewGroupBox.Size = new System.Drawing.Size(426, 351);
this.ComparisionFolderViewGroupBox.TabIndex = 11;
this.ComparisionFolderViewGroupBox.TabStop = false;
//
// ComparisionFolderViewTreeView
//
this.ComparisionFolderViewTreeView.Dock = System.Windows.Forms.DockStyle.Fill;
this.ComparisionFolderViewTreeView.FullRowSelect = true;
this.ComparisionFolderViewTreeView.Location = new System.Drawing.Point(3, 22);
this.ComparisionFolderViewTreeView.Name = "ComparisionFolderViewTreeView";
this.ComparisionFolderViewTreeView.Size = new System.Drawing.Size(420, 326);
this.ComparisionFolderViewTreeView.TabIndex = 0;
//
// FileManager
//
this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
@@ -298,6 +344,8 @@
this.CompareAgainstGroupBox.ResumeLayout(false);
this.statusStrip1.ResumeLayout(false);
this.statusStrip1.PerformLayout();
this.SelectedGroupFolderViewGroupBox.ResumeLayout(false);
this.ComparisionFolderViewGroupBox.ResumeLayout(false);
this.ResumeLayout(false);
}
@@ -325,5 +373,9 @@
private System.Windows.Forms.Button MoveNewFilesButton;
private System.Windows.Forms.StatusStrip statusStrip1;
private System.Windows.Forms.ToolStripStatusLabel StatusLabel;
private System.Windows.Forms.GroupBox SelectedGroupFolderViewGroupBox;
private System.Windows.Forms.TreeView SelectedFolderViewGroupTreeView;
private System.Windows.Forms.GroupBox ComparisionFolderViewGroupBox;
private System.Windows.Forms.TreeView ComparisionFolderViewTreeView;
}
}