Synchronize saves

This commit is contained in:
Aurélie Delhaie
2022-05-22 19:04:29 +02:00
parent b013815a96
commit 03ceaf3bda
33 changed files with 5751 additions and 81 deletions

View File

@@ -31,6 +31,7 @@
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(GameLibrary));
this.statusStrip1 = new System.Windows.Forms.StatusStrip();
this.toolStripDropDownButton1 = new System.Windows.Forms.ToolStripDropDownButton();
this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
this.toolStrip1 = new System.Windows.Forms.ToolStrip();
this.AddButton = new System.Windows.Forms.ToolStripButton();
@@ -39,9 +40,10 @@
this.ConfigButton = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
this.LogoutButton = new System.Windows.Forms.ToolStripButton();
this.ErrorLogButton = new System.Windows.Forms.ToolStripButton();
this.AboutButton = new System.Windows.Forms.ToolStripButton();
this.listView1 = new System.Windows.Forms.ListView();
this.coverList = new System.Windows.Forms.ImageList(this.components);
this.AboutButton = new System.Windows.Forms.ToolStripButton();
this.statusStrip1.SuspendLayout();
this.toolStrip1.SuspendLayout();
this.SuspendLayout();
@@ -50,6 +52,7 @@
//
this.statusStrip1.ImageScalingSize = new System.Drawing.Size(24, 24);
this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripDropDownButton1,
this.toolStripStatusLabel1});
this.statusStrip1.Location = new System.Drawing.Point(0, 803);
this.statusStrip1.Name = "statusStrip1";
@@ -57,8 +60,20 @@
this.statusStrip1.TabIndex = 0;
this.statusStrip1.Text = "statusStrip1";
//
// toolStripDropDownButton1
//
this.toolStripDropDownButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.toolStripDropDownButton1.Image = ((System.Drawing.Image)(resources.GetObject("toolStripDropDownButton1.Image")));
this.toolStripDropDownButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripDropDownButton1.Name = "toolStripDropDownButton1";
this.toolStripDropDownButton1.ShowDropDownArrow = false;
this.toolStripDropDownButton1.Size = new System.Drawing.Size(28, 29);
this.toolStripDropDownButton1.Text = "toolStripDropDownButton1";
this.toolStripDropDownButton1.Click += new System.EventHandler(this.toolStripDropDownButton1_Click);
//
// toolStripStatusLabel1
//
this.toolStripStatusLabel1.BackColor = System.Drawing.SystemColors.Control;
this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
this.toolStripStatusLabel1.Size = new System.Drawing.Size(60, 25);
this.toolStripStatusLabel1.Text = "Ready";
@@ -74,6 +89,7 @@
this.ConfigButton,
this.toolStripSeparator2,
this.LogoutButton,
this.ErrorLogButton,
this.AboutButton});
this.toolStrip1.Location = new System.Drawing.Point(0, 0);
this.toolStrip1.Name = "toolStrip1";
@@ -99,6 +115,7 @@
this.SyncButton.Name = "SyncButton";
this.SyncButton.Size = new System.Drawing.Size(34, 28);
this.SyncButton.Text = "Synchronize";
this.SyncButton.Click += new System.EventHandler(this.SyncButton_Click);
//
// toolStripSeparator1
//
@@ -130,6 +147,26 @@
this.LogoutButton.Text = "Logout";
this.LogoutButton.Click += new System.EventHandler(this.LogoutButton_Click);
//
// ErrorLogButton
//
this.ErrorLogButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.ErrorLogButton.Image = ((System.Drawing.Image)(resources.GetObject("ErrorLogButton.Image")));
this.ErrorLogButton.ImageTransparentColor = System.Drawing.Color.Magenta;
this.ErrorLogButton.Name = "ErrorLogButton";
this.ErrorLogButton.Size = new System.Drawing.Size(34, 28);
this.ErrorLogButton.Text = "Show log";
this.ErrorLogButton.Click += new System.EventHandler(this.LogButton_Click);
//
// AboutButton
//
this.AboutButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.AboutButton.Image = ((System.Drawing.Image)(resources.GetObject("AboutButton.Image")));
this.AboutButton.ImageTransparentColor = System.Drawing.Color.Magenta;
this.AboutButton.Name = "AboutButton";
this.AboutButton.Size = new System.Drawing.Size(34, 28);
this.AboutButton.Text = "About";
this.AboutButton.Click += new System.EventHandler(this.AboutButton_Click);
//
// listView1
//
this.listView1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
@@ -153,16 +190,6 @@
this.coverList.TransparentColor = System.Drawing.Color.Transparent;
this.coverList.Images.SetKeyName(0, "unknown_cover.png");
//
// AboutButton
//
this.AboutButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.AboutButton.Image = ((System.Drawing.Image)(resources.GetObject("AboutButton.Image")));
this.AboutButton.ImageTransparentColor = System.Drawing.Color.Magenta;
this.AboutButton.Name = "AboutButton";
this.AboutButton.Size = new System.Drawing.Size(34, 28);
this.AboutButton.Text = "toolStripButton1";
this.AboutButton.Click += new System.EventHandler(this.AboutButton_Click);
//
// GameLibrary
//
this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 25F);
@@ -202,5 +229,7 @@
private ToolStripSeparator toolStripSeparator2;
private ImageList coverList;
private ToolStripButton AboutButton;
private ToolStripButton ErrorLogButton;
private ToolStripDropDownButton toolStripDropDownButton1;
}
}