From 029414099e9f9736395e5beaf42d933322c3da91 Mon Sep 17 00:00:00 2001 From: AJ Date: Mon, 15 Nov 2021 08:46:46 -0500 Subject: [PATCH] Remember save file name. --- CutList/CutList.csproj | 12 +- CutList/Forms/MainForm.Designer.cs | 178 ++++++++++++---------- CutList/Forms/MainForm.cs | 68 +++++++-- CutList/Forms/ResultsForm.Designer.cs | 2 +- CutList/Forms/ResultsForm.cs | 10 +- CutList/Models/{Item.cs => LengthItem.cs} | 9 -- CutList/Models/PartInputItem.cs | 11 ++ CutList/Properties/Resources.Designer.cs | 10 ++ CutList/Properties/Resources.resx | 11 +- CutList/Resources/gnome_document_new.png | Bin 0 -> 3832 bytes 10 files changed, 197 insertions(+), 114 deletions(-) rename CutList/Models/{Item.cs => LengthItem.cs} (91%) create mode 100644 CutList/Models/PartInputItem.cs create mode 100644 CutList/Resources/gnome_document_new.png diff --git a/CutList/CutList.csproj b/CutList/CutList.csproj index 03597cb..843dd39 100644 --- a/CutList/CutList.csproj +++ b/CutList/CutList.csproj @@ -83,7 +83,9 @@ - + + Component + Form @@ -91,16 +93,20 @@ MainForm.cs - + + Form + ResultsForm.cs + - + + MainForm.cs diff --git a/CutList/Forms/MainForm.Designer.cs b/CutList/Forms/MainForm.Designer.cs index 4d53886..efcb291 100644 --- a/CutList/Forms/MainForm.Designer.cs +++ b/CutList/Forms/MainForm.Designer.cs @@ -29,16 +29,14 @@ private void InitializeComponent() { this.components = new System.ComponentModel.Container(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle(); System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle(); System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle(); System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle(); - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle(); this.dataGridView1 = new System.Windows.Forms.DataGridView(); + this.TotalLength = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.toolStrip1 = new System.Windows.Forms.ToolStrip(); - this.toolStripButton1 = new System.Windows.Forms.ToolStripButton(); - this.saveButton = new System.Windows.Forms.ToolStripButton(); this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator(); - this.runButton = new System.Windows.Forms.ToolStripButton(); this.comboBox1 = new System.Windows.Forms.ComboBox(); this.textBox1 = new System.Windows.Forms.TextBox(); this.label3 = new System.Windows.Forms.Label(); @@ -48,15 +46,18 @@ this.tabPage1 = new System.Windows.Forms.TabPage(); this.dataGridView2 = new System.Windows.Forms.DataGridView(); this.TotalLengthString = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.nameDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.lengthDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.quantityDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.itemBindingSource = new System.Windows.Forms.BindingSource(this.components); this.lengthInputValueDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.quantityDataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.priorityDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.binInputItemBindingSource = new System.Windows.Forms.BindingSource(this.components); - this.nameDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.lengthDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.quantityDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.TotalLength = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.toolStripButton2 = new System.Windows.Forms.ToolStripButton(); + this.toolStripButton1 = new System.Windows.Forms.ToolStripButton(); + this.saveButton = new System.Windows.Forms.ToolStripButton(); + this.runButton = new System.Windows.Forms.ToolStripButton(); ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit(); this.toolStrip1.SuspendLayout(); this.tabControl1.SuspendLayout(); @@ -96,9 +97,22 @@ this.dataGridView1.CellValidated += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView1_CellEndEdit); this.dataGridView1.DataError += new System.Windows.Forms.DataGridViewDataErrorEventHandler(this.dataGridView1_DataError); // + // TotalLength + // + this.TotalLength.DataPropertyName = "TotalLengthString"; + dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight; + dataGridViewCellStyle3.BackColor = System.Drawing.SystemColors.Info; + dataGridViewCellStyle3.Format = "N3"; + this.TotalLength.DefaultCellStyle = dataGridViewCellStyle3; + this.TotalLength.HeaderText = "Total Length"; + this.TotalLength.Name = "TotalLength"; + this.TotalLength.ReadOnly = true; + this.TotalLength.Width = 150; + // // toolStrip1 // this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.toolStripButton2, this.toolStripButton1, this.saveButton, this.toolStripSeparator1, @@ -109,47 +123,11 @@ this.toolStrip1.TabIndex = 0; this.toolStrip1.Text = "toolStrip1"; // - // toolStripButton1 - // - this.toolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; - this.toolStripButton1.Image = global::CutList.Properties.Resources.Open_Folder_32; - this.toolStripButton1.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.toolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta; - this.toolStripButton1.Name = "toolStripButton1"; - this.toolStripButton1.Padding = new System.Windows.Forms.Padding(5, 0, 5, 0); - this.toolStripButton1.Size = new System.Drawing.Size(46, 36); - this.toolStripButton1.Text = "Open"; - this.toolStripButton1.Click += new System.EventHandler(this.toolStripButton1_Click); - // - // saveButton - // - this.saveButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; - this.saveButton.Image = global::CutList.Properties.Resources.Save_32; - this.saveButton.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.saveButton.ImageTransparentColor = System.Drawing.Color.Magenta; - this.saveButton.Name = "saveButton"; - this.saveButton.Padding = new System.Windows.Forms.Padding(5, 0, 5, 0); - this.saveButton.Size = new System.Drawing.Size(46, 36); - this.saveButton.Text = "Save"; - this.saveButton.Click += new System.EventHandler(this.saveButton_Click); - // // toolStripSeparator1 // this.toolStripSeparator1.Name = "toolStripSeparator1"; this.toolStripSeparator1.Size = new System.Drawing.Size(6, 39); // - // runButton - // - this.runButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; - this.runButton.Image = global::CutList.Properties.Resources.Circled_Play_32; - this.runButton.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.runButton.ImageTransparentColor = System.Drawing.Color.Magenta; - this.runButton.Name = "runButton"; - this.runButton.Padding = new System.Windows.Forms.Padding(5, 0, 5, 0); - this.runButton.Size = new System.Drawing.Size(46, 36); - this.runButton.Text = "Run"; - this.runButton.Click += new System.EventHandler(this.runButton_Click); - // // comboBox1 // this.comboBox1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; @@ -199,6 +177,7 @@ this.tabControl1.Controls.Add(this.tabPage1); this.tabControl1.Location = new System.Drawing.Point(12, 42); this.tabControl1.Name = "tabControl1"; + this.tabControl1.Padding = new System.Drawing.Point(20, 3); this.tabControl1.SelectedIndex = 0; this.tabControl1.Size = new System.Drawing.Size(856, 495); this.tabControl1.TabIndex = 12; @@ -252,7 +231,7 @@ this.dataGridView2.RowHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single; this.dataGridView2.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing; this.dataGridView2.RowTemplate.Height = 26; - this.dataGridView2.Size = new System.Drawing.Size(836, 343); + this.dataGridView2.Size = new System.Drawing.Size(836, 339); this.dataGridView2.TabIndex = 12; this.dataGridView2.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView2_CellContentClick); this.dataGridView2.CellEndEdit += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView2_CellEndEdit); @@ -266,32 +245,6 @@ this.TotalLengthString.Name = "TotalLengthString"; this.TotalLengthString.ReadOnly = true; // - // itemBindingSource - // - this.itemBindingSource.DataSource = typeof(CutList.Models.Item); - // - // lengthInputValueDataGridViewTextBoxColumn - // - this.lengthInputValueDataGridViewTextBoxColumn.DataPropertyName = "LengthInputValue"; - this.lengthInputValueDataGridViewTextBoxColumn.HeaderText = "Length"; - this.lengthInputValueDataGridViewTextBoxColumn.Name = "lengthInputValueDataGridViewTextBoxColumn"; - // - // quantityDataGridViewTextBoxColumn1 - // - this.quantityDataGridViewTextBoxColumn1.DataPropertyName = "Quantity"; - this.quantityDataGridViewTextBoxColumn1.HeaderText = "Quantity"; - this.quantityDataGridViewTextBoxColumn1.Name = "quantityDataGridViewTextBoxColumn1"; - // - // priorityDataGridViewTextBoxColumn - // - this.priorityDataGridViewTextBoxColumn.DataPropertyName = "Priority"; - this.priorityDataGridViewTextBoxColumn.HeaderText = "Priority"; - this.priorityDataGridViewTextBoxColumn.Name = "priorityDataGridViewTextBoxColumn"; - // - // binInputItemBindingSource - // - this.binInputItemBindingSource.DataSource = typeof(CutList.Models.BinInputItem); - // // nameDataGridViewTextBoxColumn // this.nameDataGridViewTextBoxColumn.DataPropertyName = "Name"; @@ -317,17 +270,79 @@ this.quantityDataGridViewTextBoxColumn.Name = "quantityDataGridViewTextBoxColumn"; this.quantityDataGridViewTextBoxColumn.Width = 50; // - // TotalLength + // itemBindingSource // - this.TotalLength.DataPropertyName = "TotalLengthString"; - dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight; - dataGridViewCellStyle3.BackColor = System.Drawing.SystemColors.Info; - dataGridViewCellStyle3.Format = "N3"; - this.TotalLength.DefaultCellStyle = dataGridViewCellStyle3; - this.TotalLength.HeaderText = "Total Length"; - this.TotalLength.Name = "TotalLength"; - this.TotalLength.ReadOnly = true; - this.TotalLength.Width = 150; + this.itemBindingSource.DataSource = typeof(CutList.Models.PartInputItem); + // + // lengthInputValueDataGridViewTextBoxColumn + // + this.lengthInputValueDataGridViewTextBoxColumn.DataPropertyName = "LengthInputValue"; + this.lengthInputValueDataGridViewTextBoxColumn.HeaderText = "Length"; + this.lengthInputValueDataGridViewTextBoxColumn.Name = "lengthInputValueDataGridViewTextBoxColumn"; + // + // quantityDataGridViewTextBoxColumn1 + // + this.quantityDataGridViewTextBoxColumn1.DataPropertyName = "Quantity"; + this.quantityDataGridViewTextBoxColumn1.HeaderText = "Quantity"; + this.quantityDataGridViewTextBoxColumn1.Name = "quantityDataGridViewTextBoxColumn1"; + // + // priorityDataGridViewTextBoxColumn + // + this.priorityDataGridViewTextBoxColumn.DataPropertyName = "Priority"; + this.priorityDataGridViewTextBoxColumn.HeaderText = "Priority"; + this.priorityDataGridViewTextBoxColumn.Name = "priorityDataGridViewTextBoxColumn"; + // + // binInputItemBindingSource + // + this.binInputItemBindingSource.DataSource = typeof(CutList.Models.BinInputItem); + // + // toolStripButton2 + // + this.toolStripButton2.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; + this.toolStripButton2.Image = global::CutList.Properties.Resources.gnome_document_new; + this.toolStripButton2.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; + this.toolStripButton2.ImageTransparentColor = System.Drawing.Color.Magenta; + this.toolStripButton2.Name = "toolStripButton2"; + this.toolStripButton2.Padding = new System.Windows.Forms.Padding(5, 0, 5, 0); + this.toolStripButton2.Size = new System.Drawing.Size(46, 36); + this.toolStripButton2.Text = "Open"; + this.toolStripButton2.Click += new System.EventHandler(this.toolStripButton2_Click); + // + // toolStripButton1 + // + this.toolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; + this.toolStripButton1.Image = global::CutList.Properties.Resources.Open_Folder_32; + this.toolStripButton1.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; + this.toolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta; + this.toolStripButton1.Name = "toolStripButton1"; + this.toolStripButton1.Padding = new System.Windows.Forms.Padding(5, 0, 5, 0); + this.toolStripButton1.Size = new System.Drawing.Size(46, 36); + this.toolStripButton1.Text = "Open"; + this.toolStripButton1.Click += new System.EventHandler(this.toolStripButton1_Click); + // + // saveButton + // + this.saveButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; + this.saveButton.Image = global::CutList.Properties.Resources.Save_32; + this.saveButton.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; + this.saveButton.ImageTransparentColor = System.Drawing.Color.Magenta; + this.saveButton.Name = "saveButton"; + this.saveButton.Padding = new System.Windows.Forms.Padding(5, 0, 5, 0); + this.saveButton.Size = new System.Drawing.Size(46, 36); + this.saveButton.Text = "Save"; + this.saveButton.Click += new System.EventHandler(this.saveButton_Click); + // + // runButton + // + this.runButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; + this.runButton.Image = global::CutList.Properties.Resources.Circled_Play_32; + this.runButton.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; + this.runButton.ImageTransparentColor = System.Drawing.Color.Magenta; + this.runButton.Name = "runButton"; + this.runButton.Padding = new System.Windows.Forms.Padding(5, 0, 5, 0); + this.runButton.Size = new System.Drawing.Size(46, 36); + this.runButton.Text = "Run"; + this.runButton.Click += new System.EventHandler(this.runButton_Click); // // MainForm // @@ -381,6 +396,7 @@ private System.Windows.Forms.DataGridViewTextBoxColumn lengthDataGridViewTextBoxColumn; private System.Windows.Forms.DataGridViewTextBoxColumn quantityDataGridViewTextBoxColumn; private System.Windows.Forms.DataGridViewTextBoxColumn TotalLength; + private System.Windows.Forms.ToolStripButton toolStripButton2; } } diff --git a/CutList/Forms/MainForm.cs b/CutList/Forms/MainForm.cs index d4bcf8e..4dcaed9 100644 --- a/CutList/Forms/MainForm.cs +++ b/CutList/Forms/MainForm.cs @@ -14,20 +14,21 @@ namespace CutList.Forms { public partial class MainForm : Form { - private BindingList items; + private BindingList parts; private BindingList bins; + private string documentPath; public MainForm() { InitializeComponent(); - items = new BindingList(); + parts = new BindingList(); bins = new BindingList(); dataGridView1.DrawingRowNumbers(); dataGridView2.DrawingRowNumbers(); - itemBindingSource.DataSource = items; + itemBindingSource.DataSource = parts; itemBindingSource.ListChanged += ItemBindingSource_ListChanged; binInputItemBindingSource.DataSource = bins; @@ -66,7 +67,7 @@ namespace CutList.Forms private bool IsValid() { - if (!items.Any(i => i.Length > 0 && i.Quantity > 0)) + if (!parts.Any(i => i.Length > 0 && i.Quantity > 0)) return false; if (!bins.Any(i => i.Length > 0 && i.Quantity > 0)) @@ -93,19 +94,21 @@ namespace CutList.Forms if (openFileDialog.ShowDialog() == DialogResult.OK) { - var data = File.ReadAllText(openFileDialog.FileName); - items = JsonConvert.DeserializeObject>(data); + documentPath = openFileDialog.FileName; + var data = File.ReadAllText(documentPath); + parts = JsonConvert.DeserializeObject>(data); dataGridView1.ClearSelection(); - itemBindingSource.DataSource = items; + itemBindingSource.DataSource = parts; + UpdateRunButtonState(); } } private void Save() { - var itemsToSave = items; + var itemsToSave = parts; - if (dataGridView1.Rows[items.Count - 1].IsNewRow == true) + if (dataGridView1.Rows[parts.Count - 1].IsNewRow == true) itemsToSave.RemoveAt(itemsToSave.Count - 1); var json = JsonConvert.SerializeObject(itemsToSave, Formatting.Indented); @@ -139,11 +142,26 @@ namespace CutList.Forms var items = GetItems(); var result = engine.Pack(items); - var form = new ResultsForm(); + var filename = GetResultsSaveName(); + var form = new ResultsForm(filename); form.Bins = result.Bins; form.ShowDialog(); } + private string GetResultsSaveName() + { + if (documentPath != null) + return Path.GetFileNameWithoutExtension(documentPath); + + var today = DateTime.Today; + var year = today.Year.ToString(); + var month = today.Month.ToString().PadLeft(2, '0'); + var day = today.Day.ToString().PadLeft(2, '0'); + var name = $"Cut List {year}-{month}-{day}"; + + return name; + } + private string ToolsFilePath { get { return Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "Data\\Tools.json"); } @@ -161,7 +179,7 @@ namespace CutList.Forms { var items2 = new List(); - foreach (var item in items) + foreach (var item in parts) { if (item.Length == null || item.Length == 0) continue; @@ -288,5 +306,33 @@ namespace CutList.Forms { UpdateRunButtonState(); } + + private void toolStripButton2_Click(object sender, EventArgs e) + { + documentPath = null; + parts = new BindingList(); + bins = new BindingList(); + + dataGridView1.DataSource = parts; + dataGridView2.DataSource = bins; + UpdateRunButtonState(); + } + } + + public class Document + { + public Document() + { + + } + + [JsonIgnore] + public string SavePath { get; set; } + + public List Tools { get; set; } + + public List PartsToNest { get; set; } + + public List StockBins { get; set; } } } \ No newline at end of file diff --git a/CutList/Forms/ResultsForm.Designer.cs b/CutList/Forms/ResultsForm.Designer.cs index dc65731..7e57635 100644 --- a/CutList/Forms/ResultsForm.Designer.cs +++ b/CutList/Forms/ResultsForm.Designer.cs @@ -202,7 +202,7 @@ // // uIItemBindingSource // - this.uIItemBindingSource.DataSource = typeof(CutList.Models.Item); + this.uIItemBindingSource.DataSource = typeof(CutList.Models.PartInputItem); // // menuStrip1 // diff --git a/CutList/Forms/ResultsForm.cs b/CutList/Forms/ResultsForm.cs index 609578b..184f01d 100644 --- a/CutList/Forms/ResultsForm.cs +++ b/CutList/Forms/ResultsForm.cs @@ -10,10 +10,13 @@ namespace CutList.Forms { public partial class ResultsForm : Form { - public ResultsForm() + private string filename; + public ResultsForm(string filename) { InitializeComponent(); dataGridView1.DrawingRowNumbers(); + + this.filename = filename; } private void dataGridView1_RowEnter(object sender, DataGridViewCellEventArgs e) @@ -39,10 +42,7 @@ namespace CutList.Forms { var s = new SaveFileDialog(); - var today = DateTime.Today; - var name = $"{today.Year}-{today.Month.ToString().PadLeft(2, '0')}-{today.Day.ToString().PadLeft(2, '0')} cut list.txt"; - - s.FileName = name; + s.FileName = filename; s.Filter = "Text File|*.txt"; if (s.ShowDialog() != DialogResult.OK) diff --git a/CutList/Models/Item.cs b/CutList/Models/LengthItem.cs similarity index 91% rename from CutList/Models/Item.cs rename to CutList/Models/LengthItem.cs index 3653d2c..90d7ea2 100644 --- a/CutList/Models/Item.cs +++ b/CutList/Models/LengthItem.cs @@ -4,15 +4,6 @@ using System; namespace CutList.Models { - public class Item : LengthItem - { - public Item() - { - } - - public string Name { get; set; } - } - public class LengthItem { public int Quantity { get; set; } = 1; diff --git a/CutList/Models/PartInputItem.cs b/CutList/Models/PartInputItem.cs new file mode 100644 index 0000000..a7f22d4 --- /dev/null +++ b/CutList/Models/PartInputItem.cs @@ -0,0 +1,11 @@ +namespace CutList.Models +{ + public class PartInputItem : LengthItem + { + public PartInputItem() + { + } + + public string Name { get; set; } + } +} \ No newline at end of file diff --git a/CutList/Properties/Resources.Designer.cs b/CutList/Properties/Resources.Designer.cs index 3fc19a8..ed32f2a 100644 --- a/CutList/Properties/Resources.Designer.cs +++ b/CutList/Properties/Resources.Designer.cs @@ -70,6 +70,16 @@ namespace CutList.Properties { } } + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap gnome_document_new { + get { + object obj = ResourceManager.GetObject("gnome_document_new", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// diff --git a/CutList/Properties/Resources.resx b/CutList/Properties/Resources.resx index 63af5cd..ad26d49 100644 --- a/CutList/Properties/Resources.resx +++ b/CutList/Properties/Resources.resx @@ -118,13 +118,16 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - ..\Resources\Save-32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\Circled Play-32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\Resources\Open Folder-32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\Circled Play-32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\Save-32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\gnome_document_new.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a \ No newline at end of file diff --git a/CutList/Resources/gnome_document_new.png b/CutList/Resources/gnome_document_new.png new file mode 100644 index 0000000000000000000000000000000000000000..0035c4100f0d6ae2fcabbc3d7d27a32d1d5ae5cd GIT binary patch literal 3832 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