From 8619ec1b9210fd25637655ede57e9f84ca9d8c1f Mon Sep 17 00:00:00 2001 From: Michael Johne Date: Sun, 3 May 2020 12:09:16 +0200 Subject: [PATCH] Add files via upload --- EmojiLib/EmojiInfoForm.Designer.cs | 436 ++++++++++++------ EmojiLib/EmojiInfoForm.cs | 199 +++++++- EmojiLib/EmojiInfoForm.resx | 6 + EmojiLib/EmojiLib.csproj | 103 ++++- EmojiLib/FaceAffection.Designer.cs | 469 +++++++++++++++++++ EmojiLib/FaceAffection.resx | 295 ++++++++++++ EmojiLib/FaceSmiling.Designer.cs | 707 +++++++++++++++++++++++++++++ EmojiLib/FaceSmiling.resx | 397 ++++++++++++++++ EmojiLib/MainForm.Designer.cs | 350 ++++++++++++-- EmojiLib/MainForm.cs | 373 ++++++++++----- EmojiLib/MainForm.resx | 463 +------------------ 11 files changed, 3047 insertions(+), 751 deletions(-) create mode 100644 EmojiLib/FaceAffection.Designer.cs create mode 100644 EmojiLib/FaceAffection.resx create mode 100644 EmojiLib/FaceSmiling.Designer.cs create mode 100644 EmojiLib/FaceSmiling.resx diff --git a/EmojiLib/EmojiInfoForm.Designer.cs b/EmojiLib/EmojiInfoForm.Designer.cs index 6c666d4..13c4726 100644 --- a/EmojiLib/EmojiInfoForm.Designer.cs +++ b/EmojiLib/EmojiInfoForm.Designer.cs @@ -28,81 +28,78 @@ protected override void Dispose(bool disposing) /// private void InitializeComponent() { - this.tableLayoutPanel = new System.Windows.Forms.TableLayoutPanel(); + this.tableLayoutPanelMetadata = new System.Windows.Forms.TableLayoutPanel(); this.labelCodeDesc = new System.Windows.Forms.Label(); this.labelCode = new System.Windows.Forms.Label(); this.labelShortName = new System.Windows.Forms.Label(); + this.labelShortNameDesc = new System.Windows.Forms.Label(); this.labelGoogleVersion = new System.Windows.Forms.Label(); this.labelAppleVersion = new System.Windows.Forms.Label(); - this.labelFcebookVersion = new System.Windows.Forms.Label(); + this.labelFacebookVersion = new System.Windows.Forms.Label(); this.labelWindowsVersion = new System.Windows.Forms.Label(); this.labelTwitterVersion = new System.Windows.Forms.Label(); this.labelJoyPixelsVersion = new System.Windows.Forms.Label(); this.labelSamsungVersion = new System.Windows.Forms.Label(); - this.labelDescription = new System.Windows.Forms.Label(); this.buttonClose = new System.Windows.Forms.Button(); + this.tableLayoutPanelImageVersions = new System.Windows.Forms.TableLayoutPanel(); this.pictureBoxApple = new System.Windows.Forms.PictureBox(); - this.pictureBoxGoogle = new System.Windows.Forms.PictureBox(); - this.pictureBoxFacebook = new System.Windows.Forms.PictureBox(); - this.pictureBoxWindows = new System.Windows.Forms.PictureBox(); - this.pictureBoxTwitter = new System.Windows.Forms.PictureBox(); - this.pictureBoxJoyPixels = new System.Windows.Forms.PictureBox(); this.pictureBoxSamsung = new System.Windows.Forms.PictureBox(); - this.tableLayoutPanel.SuspendLayout(); + this.pictureBoxJoyPixels = new System.Windows.Forms.PictureBox(); + this.pictureBoxTwitter = new System.Windows.Forms.PictureBox(); + this.pictureBoxWindows = new System.Windows.Forms.PictureBox(); + this.pictureBoxFacebook = new System.Windows.Forms.PictureBox(); + this.pictureBoxGoogle = new System.Windows.Forms.PictureBox(); + this.groupBoxMetadata = new System.Windows.Forms.GroupBox(); + this.groupBoxImageVersions = new System.Windows.Forms.GroupBox(); + this.saveFileDialog = new System.Windows.Forms.SaveFileDialog(); + this.labelGroup = new System.Windows.Forms.Label(); + this.labelGroupDesc = new System.Windows.Forms.Label(); + this.labelSubGroup = new System.Windows.Forms.Label(); + this.labelSubGroupDesc = new System.Windows.Forms.Label(); + this.tableLayoutPanelMetadata.SuspendLayout(); + this.tableLayoutPanelImageVersions.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.pictureBoxApple)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBoxGoogle)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBoxFacebook)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBoxWindows)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBoxTwitter)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBoxJoyPixels)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBoxSamsung)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBoxJoyPixels)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBoxTwitter)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBoxWindows)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBoxFacebook)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBoxGoogle)).BeginInit(); + this.groupBoxMetadata.SuspendLayout(); + this.groupBoxImageVersions.SuspendLayout(); this.SuspendLayout(); // - // tableLayoutPanel - // - this.tableLayoutPanel.ColumnCount = 2; - this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); - this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); - this.tableLayoutPanel.Controls.Add(this.labelCodeDesc, 1, 0); - this.tableLayoutPanel.Controls.Add(this.labelCode, 0, 0); - this.tableLayoutPanel.Controls.Add(this.labelShortName, 0, 1); - this.tableLayoutPanel.Controls.Add(this.pictureBoxApple, 1, 2); - this.tableLayoutPanel.Controls.Add(this.labelGoogleVersion, 0, 3); - this.tableLayoutPanel.Controls.Add(this.labelAppleVersion, 0, 2); - this.tableLayoutPanel.Controls.Add(this.labelFcebookVersion, 0, 4); - this.tableLayoutPanel.Controls.Add(this.labelWindowsVersion, 0, 5); - this.tableLayoutPanel.Controls.Add(this.labelTwitterVersion, 0, 6); - this.tableLayoutPanel.Controls.Add(this.labelJoyPixelsVersion, 0, 7); - this.tableLayoutPanel.Controls.Add(this.labelSamsungVersion, 0, 8); - this.tableLayoutPanel.Controls.Add(this.labelDescription, 1, 1); - this.tableLayoutPanel.Controls.Add(this.pictureBoxGoogle, 1, 3); - this.tableLayoutPanel.Controls.Add(this.pictureBoxFacebook, 1, 4); - this.tableLayoutPanel.Controls.Add(this.pictureBoxWindows, 1, 5); - this.tableLayoutPanel.Controls.Add(this.pictureBoxTwitter, 1, 6); - this.tableLayoutPanel.Controls.Add(this.pictureBoxJoyPixels, 1, 7); - this.tableLayoutPanel.Controls.Add(this.pictureBoxSamsung, 1, 8); - this.tableLayoutPanel.Location = new System.Drawing.Point(12, 12); - this.tableLayoutPanel.Name = "tableLayoutPanel"; - this.tableLayoutPanel.RowCount = 9; - this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F)); - this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F)); - this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 14.28572F)); - this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 14.28572F)); - this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 14.28572F)); - this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 14.28572F)); - this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 14.28572F)); - this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 14.28572F)); - this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 14.28572F)); - this.tableLayoutPanel.Size = new System.Drawing.Size(274, 316); - this.tableLayoutPanel.TabIndex = 0; + // tableLayoutPanelMetadata + // + this.tableLayoutPanelMetadata.ColumnCount = 2; + this.tableLayoutPanelMetadata.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanelMetadata.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanelMetadata.Controls.Add(this.labelCodeDesc, 1, 0); + this.tableLayoutPanelMetadata.Controls.Add(this.labelCode, 0, 0); + this.tableLayoutPanelMetadata.Controls.Add(this.labelShortName, 0, 1); + this.tableLayoutPanelMetadata.Controls.Add(this.labelShortNameDesc, 1, 1); + this.tableLayoutPanelMetadata.Controls.Add(this.labelGroup, 0, 2); + this.tableLayoutPanelMetadata.Controls.Add(this.labelGroupDesc, 1, 2); + this.tableLayoutPanelMetadata.Controls.Add(this.labelSubGroup, 0, 3); + this.tableLayoutPanelMetadata.Controls.Add(this.labelSubGroupDesc, 1, 3); + this.tableLayoutPanelMetadata.Dock = System.Windows.Forms.DockStyle.Fill; + this.tableLayoutPanelMetadata.Location = new System.Drawing.Point(3, 16); + this.tableLayoutPanelMetadata.Name = "tableLayoutPanelMetadata"; + this.tableLayoutPanelMetadata.RowCount = 4; + this.tableLayoutPanelMetadata.RowStyles.Add(new System.Windows.Forms.RowStyle()); + this.tableLayoutPanelMetadata.RowStyles.Add(new System.Windows.Forms.RowStyle()); + this.tableLayoutPanelMetadata.RowStyles.Add(new System.Windows.Forms.RowStyle()); + this.tableLayoutPanelMetadata.RowStyles.Add(new System.Windows.Forms.RowStyle()); + this.tableLayoutPanelMetadata.Size = new System.Drawing.Size(360, 53); + this.tableLayoutPanelMetadata.TabIndex = 0; // // labelCodeDesc // this.labelCodeDesc.AutoSize = true; this.labelCodeDesc.Dock = System.Windows.Forms.DockStyle.Fill; - this.labelCodeDesc.Location = new System.Drawing.Point(104, 0); + this.labelCodeDesc.Location = new System.Drawing.Point(72, 0); this.labelCodeDesc.Name = "labelCodeDesc"; - this.labelCodeDesc.Size = new System.Drawing.Size(167, 20); + this.labelCodeDesc.Size = new System.Drawing.Size(285, 13); this.labelCodeDesc.TabIndex = 12; this.labelCodeDesc.Text = "Unicode description"; // @@ -112,7 +109,7 @@ private void InitializeComponent() this.labelCode.Dock = System.Windows.Forms.DockStyle.Fill; this.labelCode.Location = new System.Drawing.Point(3, 0); this.labelCode.Name = "labelCode"; - this.labelCode.Size = new System.Drawing.Size(95, 20); + this.labelCode.Size = new System.Drawing.Size(63, 13); this.labelCode.TabIndex = 11; this.labelCode.Text = "Code:"; // @@ -120,172 +117,305 @@ private void InitializeComponent() // this.labelShortName.AutoSize = true; this.labelShortName.Dock = System.Windows.Forms.DockStyle.Fill; - this.labelShortName.Location = new System.Drawing.Point(3, 20); + this.labelShortName.Location = new System.Drawing.Point(3, 13); this.labelShortName.Name = "labelShortName"; - this.labelShortName.Size = new System.Drawing.Size(95, 20); + this.labelShortName.Size = new System.Drawing.Size(63, 13); this.labelShortName.TabIndex = 0; - this.labelShortName.Text = "description:"; + this.labelShortName.Text = "Description:"; + // + // labelShortNameDesc + // + this.labelShortNameDesc.AutoSize = true; + this.labelShortNameDesc.Dock = System.Windows.Forms.DockStyle.Fill; + this.labelShortNameDesc.Location = new System.Drawing.Point(72, 13); + this.labelShortNameDesc.Name = "labelShortNameDesc"; + this.labelShortNameDesc.Size = new System.Drawing.Size(285, 13); + this.labelShortNameDesc.TabIndex = 8; + this.labelShortNameDesc.Text = "description"; // // labelGoogleVersion // this.labelGoogleVersion.AutoSize = true; this.labelGoogleVersion.Dock = System.Windows.Forms.DockStyle.Fill; - this.labelGoogleVersion.Location = new System.Drawing.Point(3, 79); + this.labelGoogleVersion.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.labelGoogleVersion.Location = new System.Drawing.Point(53, 0); this.labelGoogleVersion.Name = "labelGoogleVersion"; - this.labelGoogleVersion.Size = new System.Drawing.Size(95, 39); + this.labelGoogleVersion.Size = new System.Drawing.Size(44, 12); this.labelGoogleVersion.TabIndex = 2; - this.labelGoogleVersion.Text = "Google version:"; + this.labelGoogleVersion.Text = "Google"; // // labelAppleVersion // this.labelAppleVersion.AutoSize = true; this.labelAppleVersion.Dock = System.Windows.Forms.DockStyle.Fill; - this.labelAppleVersion.Location = new System.Drawing.Point(3, 40); + this.labelAppleVersion.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.labelAppleVersion.Location = new System.Drawing.Point(3, 0); this.labelAppleVersion.Name = "labelAppleVersion"; - this.labelAppleVersion.Size = new System.Drawing.Size(95, 39); + this.labelAppleVersion.Size = new System.Drawing.Size(44, 12); this.labelAppleVersion.TabIndex = 1; - this.labelAppleVersion.Text = "Apple version:"; + this.labelAppleVersion.Text = "Apple"; // - // labelFcebookVersion + // labelFacebookVersion // - this.labelFcebookVersion.AutoSize = true; - this.labelFcebookVersion.Dock = System.Windows.Forms.DockStyle.Fill; - this.labelFcebookVersion.Location = new System.Drawing.Point(3, 118); - this.labelFcebookVersion.Name = "labelFcebookVersion"; - this.labelFcebookVersion.Size = new System.Drawing.Size(95, 39); - this.labelFcebookVersion.TabIndex = 3; - this.labelFcebookVersion.Text = "Facebook version:"; + this.labelFacebookVersion.AutoSize = true; + this.labelFacebookVersion.Dock = System.Windows.Forms.DockStyle.Fill; + this.labelFacebookVersion.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.labelFacebookVersion.Location = new System.Drawing.Point(103, 0); + this.labelFacebookVersion.Name = "labelFacebookVersion"; + this.labelFacebookVersion.Size = new System.Drawing.Size(46, 12); + this.labelFacebookVersion.TabIndex = 3; + this.labelFacebookVersion.Text = "Facebook"; // // labelWindowsVersion // this.labelWindowsVersion.AutoSize = true; this.labelWindowsVersion.Dock = System.Windows.Forms.DockStyle.Fill; - this.labelWindowsVersion.Location = new System.Drawing.Point(3, 157); + this.labelWindowsVersion.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.labelWindowsVersion.Location = new System.Drawing.Point(155, 0); this.labelWindowsVersion.Name = "labelWindowsVersion"; - this.labelWindowsVersion.Size = new System.Drawing.Size(95, 39); + this.labelWindowsVersion.Size = new System.Drawing.Size(44, 12); this.labelWindowsVersion.TabIndex = 4; - this.labelWindowsVersion.Text = "Windows version:"; + this.labelWindowsVersion.Text = "Windows"; // // labelTwitterVersion // this.labelTwitterVersion.AutoSize = true; this.labelTwitterVersion.Dock = System.Windows.Forms.DockStyle.Fill; - this.labelTwitterVersion.Location = new System.Drawing.Point(3, 196); + this.labelTwitterVersion.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.labelTwitterVersion.Location = new System.Drawing.Point(205, 0); this.labelTwitterVersion.Name = "labelTwitterVersion"; - this.labelTwitterVersion.Size = new System.Drawing.Size(95, 39); + this.labelTwitterVersion.Size = new System.Drawing.Size(44, 12); this.labelTwitterVersion.TabIndex = 5; - this.labelTwitterVersion.Text = "Twitter version:"; + this.labelTwitterVersion.Text = "Twitter"; // // labelJoyPixelsVersion // this.labelJoyPixelsVersion.AutoSize = true; this.labelJoyPixelsVersion.Dock = System.Windows.Forms.DockStyle.Fill; - this.labelJoyPixelsVersion.Location = new System.Drawing.Point(3, 235); + this.labelJoyPixelsVersion.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.labelJoyPixelsVersion.Location = new System.Drawing.Point(255, 0); this.labelJoyPixelsVersion.Name = "labelJoyPixelsVersion"; - this.labelJoyPixelsVersion.Size = new System.Drawing.Size(95, 39); + this.labelJoyPixelsVersion.Size = new System.Drawing.Size(47, 12); this.labelJoyPixelsVersion.TabIndex = 6; - this.labelJoyPixelsVersion.Text = "Joy Pixels version:"; + this.labelJoyPixelsVersion.Text = "Joy Pixels"; // // labelSamsungVersion // this.labelSamsungVersion.AutoSize = true; this.labelSamsungVersion.Dock = System.Windows.Forms.DockStyle.Fill; - this.labelSamsungVersion.Location = new System.Drawing.Point(3, 274); + this.labelSamsungVersion.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.labelSamsungVersion.Location = new System.Drawing.Point(308, 0); this.labelSamsungVersion.Name = "labelSamsungVersion"; - this.labelSamsungVersion.Size = new System.Drawing.Size(95, 42); + this.labelSamsungVersion.Size = new System.Drawing.Size(49, 12); this.labelSamsungVersion.TabIndex = 7; - this.labelSamsungVersion.Text = "Samungs version:"; - // - // labelDescription - // - this.labelDescription.AutoSize = true; - this.labelDescription.Dock = System.Windows.Forms.DockStyle.Fill; - this.labelDescription.Location = new System.Drawing.Point(104, 20); - this.labelDescription.Name = "labelDescription"; - this.labelDescription.Size = new System.Drawing.Size(167, 20); - this.labelDescription.TabIndex = 8; - this.labelDescription.Text = "description"; + this.labelSamsungVersion.Text = "Samsung"; // // buttonClose // this.buttonClose.DialogResult = System.Windows.Forms.DialogResult.OK; - this.buttonClose.Location = new System.Drawing.Point(111, 334); + this.buttonClose.Location = new System.Drawing.Point(158, 180); this.buttonClose.Name = "buttonClose"; this.buttonClose.Size = new System.Drawing.Size(75, 23); this.buttonClose.TabIndex = 1; this.buttonClose.Text = "&Close"; this.buttonClose.UseVisualStyleBackColor = true; // + // tableLayoutPanelImageVersions + // + this.tableLayoutPanelImageVersions.ColumnCount = 7; + this.tableLayoutPanelImageVersions.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanelImageVersions.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanelImageVersions.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanelImageVersions.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanelImageVersions.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanelImageVersions.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanelImageVersions.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanelImageVersions.Controls.Add(this.labelAppleVersion, 0, 0); + this.tableLayoutPanelImageVersions.Controls.Add(this.labelGoogleVersion, 1, 0); + this.tableLayoutPanelImageVersions.Controls.Add(this.labelFacebookVersion, 2, 0); + this.tableLayoutPanelImageVersions.Controls.Add(this.pictureBoxApple, 0, 1); + this.tableLayoutPanelImageVersions.Controls.Add(this.pictureBoxSamsung, 6, 1); + this.tableLayoutPanelImageVersions.Controls.Add(this.pictureBoxJoyPixels, 5, 1); + this.tableLayoutPanelImageVersions.Controls.Add(this.pictureBoxTwitter, 4, 1); + this.tableLayoutPanelImageVersions.Controls.Add(this.pictureBoxWindows, 3, 1); + this.tableLayoutPanelImageVersions.Controls.Add(this.pictureBoxFacebook, 2, 1); + this.tableLayoutPanelImageVersions.Controls.Add(this.pictureBoxGoogle, 1, 1); + this.tableLayoutPanelImageVersions.Controls.Add(this.labelWindowsVersion, 3, 0); + this.tableLayoutPanelImageVersions.Controls.Add(this.labelJoyPixelsVersion, 5, 0); + this.tableLayoutPanelImageVersions.Controls.Add(this.labelTwitterVersion, 4, 0); + this.tableLayoutPanelImageVersions.Controls.Add(this.labelSamsungVersion, 6, 0); + this.tableLayoutPanelImageVersions.Dock = System.Windows.Forms.DockStyle.Fill; + this.tableLayoutPanelImageVersions.Location = new System.Drawing.Point(3, 16); + this.tableLayoutPanelImageVersions.Name = "tableLayoutPanelImageVersions"; + this.tableLayoutPanelImageVersions.RowCount = 2; + this.tableLayoutPanelImageVersions.RowStyles.Add(new System.Windows.Forms.RowStyle()); + this.tableLayoutPanelImageVersions.RowStyles.Add(new System.Windows.Forms.RowStyle()); + this.tableLayoutPanelImageVersions.Size = new System.Drawing.Size(360, 65); + this.tableLayoutPanelImageVersions.TabIndex = 2; + // // pictureBoxApple // - this.pictureBoxApple.Location = new System.Drawing.Point(104, 43); + this.pictureBoxApple.Location = new System.Drawing.Point(3, 15); this.pictureBoxApple.Name = "pictureBoxApple"; - this.pictureBoxApple.Size = new System.Drawing.Size(32, 32); + this.pictureBoxApple.Size = new System.Drawing.Size(44, 44); this.pictureBoxApple.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom; this.pictureBoxApple.TabIndex = 9; this.pictureBoxApple.TabStop = false; + this.pictureBoxApple.Click += new System.EventHandler(this.PictureBoxApple_Click); + this.pictureBoxApple.MouseEnter += new System.EventHandler(this.PictureBoxApple_MouseEnter); + this.pictureBoxApple.MouseLeave += new System.EventHandler(this.PictureBoxApple_MouseLeave); // - // pictureBoxGoogle - // - this.pictureBoxGoogle.Location = new System.Drawing.Point(104, 82); - this.pictureBoxGoogle.Name = "pictureBoxGoogle"; - this.pictureBoxGoogle.Size = new System.Drawing.Size(32, 32); - this.pictureBoxGoogle.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom; - this.pictureBoxGoogle.TabIndex = 13; - this.pictureBoxGoogle.TabStop = false; - // - // pictureBoxFacebook + // pictureBoxSamsung // - this.pictureBoxFacebook.Location = new System.Drawing.Point(104, 121); - this.pictureBoxFacebook.Name = "pictureBoxFacebook"; - this.pictureBoxFacebook.Size = new System.Drawing.Size(32, 32); - this.pictureBoxFacebook.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom; - this.pictureBoxFacebook.TabIndex = 14; - this.pictureBoxFacebook.TabStop = false; + this.pictureBoxSamsung.Location = new System.Drawing.Point(308, 15); + this.pictureBoxSamsung.Name = "pictureBoxSamsung"; + this.pictureBoxSamsung.Size = new System.Drawing.Size(44, 44); + this.pictureBoxSamsung.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom; + this.pictureBoxSamsung.TabIndex = 18; + this.pictureBoxSamsung.TabStop = false; + this.pictureBoxSamsung.Click += new System.EventHandler(this.PictureBoxSamsung_Click); + this.pictureBoxSamsung.MouseEnter += new System.EventHandler(this.PictureBoxSamsung_MouseEnter); + this.pictureBoxSamsung.MouseLeave += new System.EventHandler(this.PictureBoxSamsung_MouseLeave); // - // pictureBoxWindows + // pictureBoxJoyPixels // - this.pictureBoxWindows.Location = new System.Drawing.Point(104, 160); - this.pictureBoxWindows.Name = "pictureBoxWindows"; - this.pictureBoxWindows.Size = new System.Drawing.Size(32, 32); - this.pictureBoxWindows.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom; - this.pictureBoxWindows.TabIndex = 15; - this.pictureBoxWindows.TabStop = false; + this.pictureBoxJoyPixels.Location = new System.Drawing.Point(255, 15); + this.pictureBoxJoyPixels.Name = "pictureBoxJoyPixels"; + this.pictureBoxJoyPixels.Size = new System.Drawing.Size(44, 44); + this.pictureBoxJoyPixels.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom; + this.pictureBoxJoyPixels.TabIndex = 17; + this.pictureBoxJoyPixels.TabStop = false; + this.pictureBoxJoyPixels.Click += new System.EventHandler(this.PictureBoxJoyPixels_Click); + this.pictureBoxJoyPixels.MouseEnter += new System.EventHandler(this.PictureBoxJoyPixels_MouseEnter); + this.pictureBoxJoyPixels.MouseLeave += new System.EventHandler(this.PictureBoxJoyPixels_MouseLeave); // // pictureBoxTwitter // - this.pictureBoxTwitter.Location = new System.Drawing.Point(104, 199); + this.pictureBoxTwitter.Location = new System.Drawing.Point(205, 15); this.pictureBoxTwitter.Name = "pictureBoxTwitter"; - this.pictureBoxTwitter.Size = new System.Drawing.Size(32, 32); + this.pictureBoxTwitter.Size = new System.Drawing.Size(44, 44); this.pictureBoxTwitter.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom; this.pictureBoxTwitter.TabIndex = 16; this.pictureBoxTwitter.TabStop = false; + this.pictureBoxTwitter.Click += new System.EventHandler(this.PictureBoxTwitter_Click); + this.pictureBoxTwitter.MouseEnter += new System.EventHandler(this.PictureBoxTwitter_MouseEnter); + this.pictureBoxTwitter.MouseLeave += new System.EventHandler(this.PictureBoxTwitter_MouseLeave); // - // pictureBoxJoyPixels + // pictureBoxWindows // - this.pictureBoxJoyPixels.Location = new System.Drawing.Point(104, 238); - this.pictureBoxJoyPixels.Name = "pictureBoxJoyPixels"; - this.pictureBoxJoyPixels.Size = new System.Drawing.Size(32, 32); - this.pictureBoxJoyPixels.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom; - this.pictureBoxJoyPixels.TabIndex = 17; - this.pictureBoxJoyPixels.TabStop = false; + this.pictureBoxWindows.Location = new System.Drawing.Point(155, 15); + this.pictureBoxWindows.Name = "pictureBoxWindows"; + this.pictureBoxWindows.Size = new System.Drawing.Size(44, 44); + this.pictureBoxWindows.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom; + this.pictureBoxWindows.TabIndex = 15; + this.pictureBoxWindows.TabStop = false; + this.pictureBoxWindows.Click += new System.EventHandler(this.PictureBoxWindows_Click); + this.pictureBoxWindows.MouseEnter += new System.EventHandler(this.PictureBoxWindows_MouseEnter); + this.pictureBoxWindows.MouseLeave += new System.EventHandler(this.PictureBoxWindows_MouseLeave); // - // pictureBoxSamsung + // pictureBoxFacebook // - this.pictureBoxSamsung.Location = new System.Drawing.Point(104, 277); - this.pictureBoxSamsung.Name = "pictureBoxSamsung"; - this.pictureBoxSamsung.Size = new System.Drawing.Size(32, 32); - this.pictureBoxSamsung.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom; - this.pictureBoxSamsung.TabIndex = 18; - this.pictureBoxSamsung.TabStop = false; + this.pictureBoxFacebook.Location = new System.Drawing.Point(103, 15); + this.pictureBoxFacebook.Name = "pictureBoxFacebook"; + this.pictureBoxFacebook.Size = new System.Drawing.Size(44, 44); + this.pictureBoxFacebook.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom; + this.pictureBoxFacebook.TabIndex = 14; + this.pictureBoxFacebook.TabStop = false; + this.pictureBoxFacebook.Click += new System.EventHandler(this.PictureBoxFacebook_Click); + this.pictureBoxFacebook.MouseEnter += new System.EventHandler(this.PictureBoxFacebook_MouseEnter); + this.pictureBoxFacebook.MouseLeave += new System.EventHandler(this.PictureBoxFacebook_MouseLeave); + // + // pictureBoxGoogle + // + this.pictureBoxGoogle.Location = new System.Drawing.Point(53, 15); + this.pictureBoxGoogle.Name = "pictureBoxGoogle"; + this.pictureBoxGoogle.Size = new System.Drawing.Size(44, 44); + this.pictureBoxGoogle.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom; + this.pictureBoxGoogle.TabIndex = 13; + this.pictureBoxGoogle.TabStop = false; + this.pictureBoxGoogle.Click += new System.EventHandler(this.PictureBoxGoogle_Click); + this.pictureBoxGoogle.MouseEnter += new System.EventHandler(this.PictureBoxGoogle_MouseEnter); + this.pictureBoxGoogle.MouseLeave += new System.EventHandler(this.PictureBoxGoogle_MouseLeave); + // + // groupBoxMetadata + // + this.groupBoxMetadata.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.groupBoxMetadata.Controls.Add(this.tableLayoutPanelMetadata); + this.groupBoxMetadata.Location = new System.Drawing.Point(12, 12); + this.groupBoxMetadata.Name = "groupBoxMetadata"; + this.groupBoxMetadata.Size = new System.Drawing.Size(366, 72); + this.groupBoxMetadata.TabIndex = 3; + this.groupBoxMetadata.TabStop = false; + this.groupBoxMetadata.Text = "&Metadata"; + // + // groupBoxImageVersions + // + this.groupBoxImageVersions.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.groupBoxImageVersions.Controls.Add(this.tableLayoutPanelImageVersions); + this.groupBoxImageVersions.Location = new System.Drawing.Point(12, 90); + this.groupBoxImageVersions.Name = "groupBoxImageVersions"; + this.groupBoxImageVersions.Size = new System.Drawing.Size(366, 84); + this.groupBoxImageVersions.TabIndex = 4; + this.groupBoxImageVersions.TabStop = false; + this.groupBoxImageVersions.Text = "&Image version"; + // + // saveFileDialog + // + this.saveFileDialog.DefaultExt = "png"; + this.saveFileDialog.Filter = "PNG|*.png"; + this.saveFileDialog.SupportMultiDottedExtensions = true; + // + // labelGroup + // + this.labelGroup.AutoSize = true; + this.labelGroup.Dock = System.Windows.Forms.DockStyle.Fill; + this.labelGroup.Location = new System.Drawing.Point(3, 26); + this.labelGroup.Name = "labelGroup"; + this.labelGroup.Size = new System.Drawing.Size(63, 13); + this.labelGroup.TabIndex = 13; + this.labelGroup.Text = "Group:"; + // + // labelGroupDesc + // + this.labelGroupDesc.AutoSize = true; + this.labelGroupDesc.Dock = System.Windows.Forms.DockStyle.Fill; + this.labelGroupDesc.Location = new System.Drawing.Point(72, 26); + this.labelGroupDesc.Name = "labelGroupDesc"; + this.labelGroupDesc.Size = new System.Drawing.Size(285, 13); + this.labelGroupDesc.TabIndex = 14; + this.labelGroupDesc.Text = "group"; + this.labelGroupDesc.UseMnemonic = false; + // + // labelSubGroup + // + this.labelSubGroup.AutoSize = true; + this.labelSubGroup.Dock = System.Windows.Forms.DockStyle.Fill; + this.labelSubGroup.Location = new System.Drawing.Point(3, 39); + this.labelSubGroup.Name = "labelSubGroup"; + this.labelSubGroup.Size = new System.Drawing.Size(63, 14); + this.labelSubGroup.TabIndex = 15; + this.labelSubGroup.Text = "Subgroup:"; + // + // labelSubGroupDesc + // + this.labelSubGroupDesc.AutoSize = true; + this.labelSubGroupDesc.Dock = System.Windows.Forms.DockStyle.Fill; + this.labelSubGroupDesc.Location = new System.Drawing.Point(72, 39); + this.labelSubGroupDesc.Name = "labelSubGroupDesc"; + this.labelSubGroupDesc.Size = new System.Drawing.Size(285, 14); + this.labelSubGroupDesc.TabIndex = 16; + this.labelSubGroupDesc.Text = "sub group"; // // EmojiInfoForm // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.ClientSize = new System.Drawing.Size(296, 369); + this.ClientSize = new System.Drawing.Size(390, 211); + this.Controls.Add(this.groupBoxImageVersions); + this.Controls.Add(this.groupBoxMetadata); this.Controls.Add(this.buttonClose); - this.Controls.Add(this.tableLayoutPanel); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None; this.MaximizeBox = false; this.MinimizeBox = false; @@ -294,31 +424,35 @@ private void InitializeComponent() this.ShowInTaskbar = false; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.Text = "Emoji information"; - this.tableLayoutPanel.ResumeLayout(false); - this.tableLayoutPanel.PerformLayout(); + this.tableLayoutPanelMetadata.ResumeLayout(false); + this.tableLayoutPanelMetadata.PerformLayout(); + this.tableLayoutPanelImageVersions.ResumeLayout(false); + this.tableLayoutPanelImageVersions.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.pictureBoxApple)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBoxGoogle)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBoxFacebook)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBoxWindows)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBoxTwitter)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBoxJoyPixels)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBoxSamsung)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBoxJoyPixels)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBoxTwitter)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBoxWindows)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBoxFacebook)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBoxGoogle)).EndInit(); + this.groupBoxMetadata.ResumeLayout(false); + this.groupBoxImageVersions.ResumeLayout(false); this.ResumeLayout(false); } #endregion - private System.Windows.Forms.TableLayoutPanel tableLayoutPanel; + private System.Windows.Forms.TableLayoutPanel tableLayoutPanelMetadata; private System.Windows.Forms.Label labelShortName; private System.Windows.Forms.Label labelGoogleVersion; private System.Windows.Forms.Label labelAppleVersion; - private System.Windows.Forms.Label labelFcebookVersion; + private System.Windows.Forms.Label labelFacebookVersion; private System.Windows.Forms.Label labelWindowsVersion; private System.Windows.Forms.Label labelTwitterVersion; private System.Windows.Forms.Label labelJoyPixelsVersion; private System.Windows.Forms.Label labelSamsungVersion; - private System.Windows.Forms.Label labelDescription; + private System.Windows.Forms.Label labelShortNameDesc; private System.Windows.Forms.PictureBox pictureBoxApple; private System.Windows.Forms.Label labelCodeDesc; private System.Windows.Forms.Label labelCode; @@ -329,5 +463,13 @@ private void InitializeComponent() private System.Windows.Forms.PictureBox pictureBoxJoyPixels; private System.Windows.Forms.PictureBox pictureBoxSamsung; private System.Windows.Forms.Button buttonClose; + private System.Windows.Forms.TableLayoutPanel tableLayoutPanelImageVersions; + private System.Windows.Forms.GroupBox groupBoxMetadata; + private System.Windows.Forms.GroupBox groupBoxImageVersions; + private System.Windows.Forms.SaveFileDialog saveFileDialog; + private System.Windows.Forms.Label labelGroup; + private System.Windows.Forms.Label labelGroupDesc; + private System.Windows.Forms.Label labelSubGroup; + private System.Windows.Forms.Label labelSubGroupDesc; } } \ No newline at end of file diff --git a/EmojiLib/EmojiInfoForm.cs b/EmojiLib/EmojiInfoForm.cs index f8bb78c..555fa58 100644 --- a/EmojiLib/EmojiInfoForm.cs +++ b/EmojiLib/EmojiInfoForm.cs @@ -11,6 +11,11 @@ namespace EmojiLib { public partial class EmojiInfoForm : Form { + public void SetTag(object tag) + { + Tag = tag; + } + public void SetCode(string code) { labelCodeDesc.Text = code; @@ -18,7 +23,17 @@ public void SetCode(string code) public void SetShortName(string name) { - labelDescription.Text = name; + labelShortNameDesc.Text = name; + } + + public void SetGroup(string group) + { + labelGroupDesc.Text = group; + } + + public void SetSubGroup(string subGroup) + { + labelSubGroupDesc.Text = subGroup; } public void SetAppleImageVersion(Image image) @@ -65,5 +80,187 @@ private void EmojiInfoForm_Click(object sender, EventArgs e) { Close(); } + + private void PictureBoxApple_MouseEnter(object sender, EventArgs e) + { + if (pictureBoxApple.Image != null) + { + labelAppleVersion.ForeColor = SystemColors.Highlight; + pictureBoxApple.Cursor = Cursors.Hand; + } + } + + private void PictureBoxGoogle_MouseEnter(object sender, EventArgs e) + { + if (pictureBoxGoogle.Image != null) + { + labelGoogleVersion.ForeColor = SystemColors.Highlight; + pictureBoxGoogle.Cursor = Cursors.Hand; + } + } + + private void PictureBoxFacebook_MouseEnter(object sender, EventArgs e) + { + if (pictureBoxFacebook.Image != null) + { + labelFacebookVersion.ForeColor = SystemColors.Highlight; + pictureBoxFacebook.Cursor = Cursors.Hand; + } + } + + private void PictureBoxWindows_MouseEnter(object sender, EventArgs e) + { + if (pictureBoxWindows.Image != null) + { + labelWindowsVersion.ForeColor = SystemColors.Highlight; + pictureBoxWindows.Cursor = Cursors.Hand; + } + } + + private void PictureBoxTwitter_MouseEnter(object sender, EventArgs e) + { + if (pictureBoxTwitter.Image != null) + { + labelTwitterVersion.ForeColor = SystemColors.Highlight; + pictureBoxTwitter.Cursor = Cursors.Hand; + } + } + + private void PictureBoxJoyPixels_MouseEnter(object sender, EventArgs e) + { + if (pictureBoxJoyPixels.Image != null) + { + labelJoyPixelsVersion.ForeColor = SystemColors.Highlight; + pictureBoxJoyPixels.Cursor = Cursors.Hand; + } + } + + private void PictureBoxSamsung_MouseEnter(object sender, EventArgs e) + { + if (pictureBoxSamsung.Image != null) + { + labelSamsungVersion.ForeColor = SystemColors.Highlight; + pictureBoxSamsung.Cursor = Cursors.Hand; + } + } + + private void PictureBoxApple_MouseLeave(object sender, EventArgs e) + { + labelAppleVersion.ForeColor = SystemColors.ControlText; + pictureBoxApple.Cursor = Cursors.Default; + } + + private void PictureBoxGoogle_MouseLeave(object sender, EventArgs e) + { + labelGoogleVersion.ForeColor = SystemColors.ControlText; + pictureBoxGoogle.Cursor = Cursors.Default; + } + + private void PictureBoxFacebook_MouseLeave(object sender, EventArgs e) + { + labelFacebookVersion.ForeColor = SystemColors.ControlText; + pictureBoxFacebook.Cursor = Cursors.Default; + } + + private void PictureBoxWindows_MouseLeave(object sender, EventArgs e) + { + labelWindowsVersion.ForeColor = SystemColors.ControlText; + pictureBoxWindows.Cursor = Cursors.Default; + } + + private void PictureBoxTwitter_MouseLeave(object sender, EventArgs e) + { + labelTwitterVersion.ForeColor = SystemColors.ControlText; + pictureBoxTwitter.Cursor = Cursors.Default; + } + + private void PictureBoxJoyPixels_MouseLeave(object sender, EventArgs e) + { + labelJoyPixelsVersion.ForeColor = SystemColors.ControlText; + pictureBoxJoyPixels.Cursor = Cursors.Default; + } + + private void PictureBoxSamsung_MouseLeave(object sender, EventArgs e) + { + labelSamsungVersion.ForeColor = SystemColors.ControlText; + pictureBoxSamsung.Cursor = Cursors.Default; + } + + private void PictureBoxApple_Click(object sender, EventArgs e) + { + if (pictureBoxApple.Image != null) + { + if (saveFileDialog.ShowDialog() == DialogResult.OK) + { + pictureBoxApple.Image.Save(saveFileDialog.FileName); + } + } + } + + private void PictureBoxGoogle_Click(object sender, EventArgs e) + { + if (pictureBoxGoogle.Image != null) + { + if (saveFileDialog.ShowDialog() == DialogResult.OK) + { + pictureBoxGoogle.Image.Save(saveFileDialog.FileName); + } + } + } + + private void PictureBoxFacebook_Click(object sender, EventArgs e) + { + if (pictureBoxFacebook.Image != null) + { + if (saveFileDialog.ShowDialog() == DialogResult.OK) + { + pictureBoxFacebook.Image.Save(saveFileDialog.FileName); + } + } + } + + private void PictureBoxWindows_Click(object sender, EventArgs e) + { + if (pictureBoxWindows.Image != null) + { + if (saveFileDialog.ShowDialog() == DialogResult.OK) + { + pictureBoxWindows.Image.Save(saveFileDialog.FileName); + } + } + } + + private void PictureBoxTwitter_Click(object sender, EventArgs e) + { + if (pictureBoxTwitter.Image != null) + { + if (saveFileDialog.ShowDialog() == DialogResult.OK) + { + pictureBoxTwitter.Image.Save(saveFileDialog.FileName); + } + } + } + + private void PictureBoxJoyPixels_Click(object sender, EventArgs e) + { + if (pictureBoxJoyPixels.Image != null) + { + if (saveFileDialog.ShowDialog() == DialogResult.OK) + { + pictureBoxJoyPixels.Image.Save(saveFileDialog.FileName); + } + } + } + + private void PictureBoxSamsung_Click(object sender, EventArgs e) + { + if (pictureBoxSamsung.Image != null) + { + if (saveFileDialog.ShowDialog() == DialogResult.OK) + { + pictureBoxSamsung.Image.Save(saveFileDialog.FileName); + } + } + } } } diff --git a/EmojiLib/EmojiInfoForm.resx b/EmojiLib/EmojiInfoForm.resx index 29dcb1b..a903961 100644 --- a/EmojiLib/EmojiInfoForm.resx +++ b/EmojiLib/EmojiInfoForm.resx @@ -117,4 +117,10 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 17, 17 + + + 49 + \ No newline at end of file diff --git a/EmojiLib/EmojiLib.csproj b/EmojiLib/EmojiLib.csproj index f8a6cdf..f64a2a0 100644 --- a/EmojiLib/EmojiLib.csproj +++ b/EmojiLib/EmojiLib.csproj @@ -77,6 +77,16 @@ EmojiInfoForm.cs + + True + True + FaceAffection.resx + + + True + True + FaceSmiling.resx + Form @@ -88,6 +98,15 @@ EmojiInfoForm.cs + + ResXFileCodeGenerator + FaceAffection.Designer.cs + + + ResXFileCodeGenerator + FaceSmiling.Designer.cs + Designer + MainForm.cs @@ -113,6 +132,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -147,7 +248,6 @@ - @@ -208,6 +308,7 @@ true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + Resources\FaceBlowingAKissApple.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\FaceBlowingAKissFacebook.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\FaceBlowingAKissGoogle.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\FaceBlowingAKissJoyPixels.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\FaceBlowingAKissSamsung.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\FaceBlowingAKissTwitter.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\FaceBlowingAKissWindows.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\KissingFaceApple.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\KissingFaceFacebook.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\KissingFaceGoogle.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\KissingFaceJoyPixels.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\KissingFaceSamsung.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\KissingFaceTwitter.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\KissingFaceWindows.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\KissingFaceWithClosedEyesApple.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\KissingFaceWithClosedEyesFacebook.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\KissingFaceWithClosedEyesGoogle.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\KissingFaceWithClosedEyesJoyPixels.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\KissingFaceWithClosedEyesSamsung.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\KissingFaceWithClosedEyesTwitter.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\KissingFaceWithClosedEyesWindows.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\KissingFaceWithSmilingEyesApple.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\KissingFaceWithSmilingEyesFacebook.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\KissingFaceWithSmilingEyesGoogle.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\KissingFaceWithSmilingEyesJoyPixels.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\KissingFaceWithSmilingEyesSamsung.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\KissingFaceWithSmilingEyesTwitter.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\KissingFaceWithSmilingEyesWindows.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\SmilingFaceApple.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\SmilingFaceFacebook.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\SmilingFaceGoogle.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\SmilingFaceJoyPixels.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\SmilingFaceSamsung.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\SmilingFaceTwitter.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\SmilingFaceWindows.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\SmilingFaceWithHeartEyesApple.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\SmilingFaceWithHeartEyesFacebook.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\SmilingFaceWithHeartEyesGoogle.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\SmilingFaceWithHeartEyesJoyPixels.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\SmilingFaceWithHeartEyesSamsung.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\SmilingFaceWithHeartEyesTwitter.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\SmilingFaceWithHeartEyesWindows.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\SmilingFaceWithHeartsApple.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\SmilingFaceWithHeartsFacebook.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\SmilingFaceWithHeartsGoogle.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\SmilingFaceWithHeartsJoyPixels.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\SmilingFaceWithHeartsSamsung.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\SmilingFaceWithHeartsTwitter.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\SmilingFaceWithHeartsWindows.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\SmilingFaceWithTearGoogle.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\SmilingFaceWithTearJoyPixels.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\StarStruckApple.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\StarStruckFacebook.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\StarStruckGoogle.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\StarStruckJoyPixels.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\StarStruckSamsung.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\StarStruckTwitter.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\StarStruckWindows.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + \ No newline at end of file diff --git a/EmojiLib/FaceSmiling.Designer.cs b/EmojiLib/FaceSmiling.Designer.cs new file mode 100644 index 0000000..5f8cd05 --- /dev/null +++ b/EmojiLib/FaceSmiling.Designer.cs @@ -0,0 +1,707 @@ +//------------------------------------------------------------------------------ +// +// Dieser Code wurde von einem Tool generiert. +// Laufzeitversion:4.0.30319.1022 +// +// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn +// der Code erneut generiert wird. +// +//------------------------------------------------------------------------------ + +namespace EmojiLib { + using System; + + + /// + /// Eine stark typisierte Ressourcenklasse zum Suchen von lokalisierten Zeichenfolgen usw. + /// + // Diese Klasse wurde von der StronglyTypedResourceBuilder automatisch generiert + // -Klasse über ein Tool wie ResGen oder Visual Studio automatisch generiert. + // Um einen Member hinzuzufügen oder zu entfernen, bearbeiten Sie die .ResX-Datei und führen dann ResGen + // mit der /str-Option erneut aus, oder Sie erstellen Ihr VS-Projekt neu. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class FaceSmiling { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal FaceSmiling() { + } + + /// + /// Gibt die zwischengespeicherte ResourceManager-Instanz zurück, die von dieser Klasse verwendet wird. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("EmojiLib.FaceSmiling", typeof(FaceSmiling).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Überschreibt die CurrentUICulture-Eigenschaft des aktuellen Threads für alle + /// Ressourcenzuordnungen, die diese stark typisierte Ressourcenklasse verwenden. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + internal static System.Drawing.Bitmap BeamingFaceWithSmilingEyesApple { + get { + object obj = ResourceManager.GetObject("BeamingFaceWithSmilingEyesApple", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap BeamingFaceWithSmilingEyesFacebook { + get { + object obj = ResourceManager.GetObject("BeamingFaceWithSmilingEyesFacebook", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap BeamingFaceWithSmilingEyesGoogle { + get { + object obj = ResourceManager.GetObject("BeamingFaceWithSmilingEyesGoogle", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap BeamingFaceWithSmilingEyesJoyPixels { + get { + object obj = ResourceManager.GetObject("BeamingFaceWithSmilingEyesJoyPixels", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap BeamingFaceWithSmilingEyesSamsung { + get { + object obj = ResourceManager.GetObject("BeamingFaceWithSmilingEyesSamsung", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap BeamingFaceWithSmilingEyesTwitter { + get { + object obj = ResourceManager.GetObject("BeamingFaceWithSmilingEyesTwitter", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap BeamingFaceWithSmilingEyesWindows { + get { + object obj = ResourceManager.GetObject("BeamingFaceWithSmilingEyesWindows", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap FaceWithTearsOfJoyApple { + get { + object obj = ResourceManager.GetObject("FaceWithTearsOfJoyApple", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap FaceWithTearsOfJoyFacebook { + get { + object obj = ResourceManager.GetObject("FaceWithTearsOfJoyFacebook", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap FaceWithTearsOfJoyGoogle { + get { + object obj = ResourceManager.GetObject("FaceWithTearsOfJoyGoogle", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap FaceWithTearsOfJoyJoyPixels { + get { + object obj = ResourceManager.GetObject("FaceWithTearsOfJoyJoyPixels", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap FaceWithTearsOfJoySamsung { + get { + object obj = ResourceManager.GetObject("FaceWithTearsOfJoySamsung", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap FaceWithTearsOfJoyTwitter { + get { + object obj = ResourceManager.GetObject("FaceWithTearsOfJoyTwitter", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap FaceWithTearsOfJoyWindows { + get { + object obj = ResourceManager.GetObject("FaceWithTearsOfJoyWindows", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap GrinningFace { + get { + object obj = ResourceManager.GetObject("GrinningFace", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap GrinningFaceApple { + get { + object obj = ResourceManager.GetObject("GrinningFaceApple", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap GrinningFaceFacebook { + get { + object obj = ResourceManager.GetObject("GrinningFaceFacebook", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap GrinningFaceGoogle { + get { + object obj = ResourceManager.GetObject("GrinningFaceGoogle", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap GrinningFaceJoyPixels { + get { + object obj = ResourceManager.GetObject("GrinningFaceJoyPixels", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap GrinningFaceSamsung { + get { + object obj = ResourceManager.GetObject("GrinningFaceSamsung", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap GrinningFaceTwitter { + get { + object obj = ResourceManager.GetObject("GrinningFaceTwitter", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap GrinningFaceWindows { + get { + object obj = ResourceManager.GetObject("GrinningFaceWindows", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap GrinningFaceWithBigEyesApple { + get { + object obj = ResourceManager.GetObject("GrinningFaceWithBigEyesApple", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap GrinningFaceWithBigEyesFacebook { + get { + object obj = ResourceManager.GetObject("GrinningFaceWithBigEyesFacebook", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap GrinningFaceWithBigEyesGoogle { + get { + object obj = ResourceManager.GetObject("GrinningFaceWithBigEyesGoogle", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap GrinningFaceWithBigEyesJoyPixels { + get { + object obj = ResourceManager.GetObject("GrinningFaceWithBigEyesJoyPixels", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap GrinningFaceWithBigEyesSamsung { + get { + object obj = ResourceManager.GetObject("GrinningFaceWithBigEyesSamsung", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap GrinningFaceWithBigEyesTwitter { + get { + object obj = ResourceManager.GetObject("GrinningFaceWithBigEyesTwitter", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap GrinningFaceWithBigEyesWindows { + get { + object obj = ResourceManager.GetObject("GrinningFaceWithBigEyesWindows", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap GrinningFaceWithSmilingEyesApple { + get { + object obj = ResourceManager.GetObject("GrinningFaceWithSmilingEyesApple", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap GrinningFaceWithSmilingEyesFacebook { + get { + object obj = ResourceManager.GetObject("GrinningFaceWithSmilingEyesFacebook", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap GrinningFaceWithSmilingEyesGoogle { + get { + object obj = ResourceManager.GetObject("GrinningFaceWithSmilingEyesGoogle", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap GrinningFaceWithSmilingEyesJoyPixels { + get { + object obj = ResourceManager.GetObject("GrinningFaceWithSmilingEyesJoyPixels", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap GrinningFaceWithSmilingEyesSamsung { + get { + object obj = ResourceManager.GetObject("GrinningFaceWithSmilingEyesSamsung", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap GrinningFaceWithSmilingEyesTwitter { + get { + object obj = ResourceManager.GetObject("GrinningFaceWithSmilingEyesTwitter", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap GrinningFaceWithSmilingEyesWindows { + get { + object obj = ResourceManager.GetObject("GrinningFaceWithSmilingEyesWindows", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap GrinningFaceWithSweatApple { + get { + object obj = ResourceManager.GetObject("GrinningFaceWithSweatApple", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap GrinningFaceWithSweatFacebook { + get { + object obj = ResourceManager.GetObject("GrinningFaceWithSweatFacebook", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap GrinningFaceWithSweatGoogle { + get { + object obj = ResourceManager.GetObject("GrinningFaceWithSweatGoogle", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap GrinningFaceWithSweatJoyPixels { + get { + object obj = ResourceManager.GetObject("GrinningFaceWithSweatJoyPixels", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap GrinningFaceWithSweatSamsung { + get { + object obj = ResourceManager.GetObject("GrinningFaceWithSweatSamsung", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap GrinningFaceWithSweatTwitter { + get { + object obj = ResourceManager.GetObject("GrinningFaceWithSweatTwitter", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap GrinningFaceWithSweatWindows { + get { + object obj = ResourceManager.GetObject("GrinningFaceWithSweatWindows", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap GrinningSquintingFaceApple { + get { + object obj = ResourceManager.GetObject("GrinningSquintingFaceApple", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap GrinningSquintingFaceFacebook { + get { + object obj = ResourceManager.GetObject("GrinningSquintingFaceFacebook", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap GrinningSquintingFaceGoogle { + get { + object obj = ResourceManager.GetObject("GrinningSquintingFaceGoogle", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap GrinningSquintingFaceJoyPixels { + get { + object obj = ResourceManager.GetObject("GrinningSquintingFaceJoyPixels", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap GrinningSquintingFaceSamsung { + get { + object obj = ResourceManager.GetObject("GrinningSquintingFaceSamsung", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap GrinningSquintingFaceTwitter { + get { + object obj = ResourceManager.GetObject("GrinningSquintingFaceTwitter", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap GrinningSquintingFaceWindows { + get { + object obj = ResourceManager.GetObject("GrinningSquintingFaceWindows", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap RollingOnTheFloorLaughingApple { + get { + object obj = ResourceManager.GetObject("RollingOnTheFloorLaughingApple", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap RollingOnTheFloorLaughingFacebook { + get { + object obj = ResourceManager.GetObject("RollingOnTheFloorLaughingFacebook", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap RollingOnTheFloorLaughingGoogle { + get { + object obj = ResourceManager.GetObject("RollingOnTheFloorLaughingGoogle", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap RollingOnTheFloorLaughingJoyPixels { + get { + object obj = ResourceManager.GetObject("RollingOnTheFloorLaughingJoyPixels", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap RollingOnTheFloorLaughingSamsung { + get { + object obj = ResourceManager.GetObject("RollingOnTheFloorLaughingSamsung", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap RollingOnTheFloorLaughingTwitter { + get { + object obj = ResourceManager.GetObject("RollingOnTheFloorLaughingTwitter", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap RollingOnTheFloorLaughingWindows { + get { + object obj = ResourceManager.GetObject("RollingOnTheFloorLaughingWindows", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap SlightlySmilingFaceApple { + get { + object obj = ResourceManager.GetObject("SlightlySmilingFaceApple", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap SlightlySmilingFaceFacebook { + get { + object obj = ResourceManager.GetObject("SlightlySmilingFaceFacebook", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap SlightlySmilingFaceGoogle { + get { + object obj = ResourceManager.GetObject("SlightlySmilingFaceGoogle", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap SlightlySmilingFaceJoyPixels { + get { + object obj = ResourceManager.GetObject("SlightlySmilingFaceJoyPixels", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap SlightlySmilingFaceSamsung { + get { + object obj = ResourceManager.GetObject("SlightlySmilingFaceSamsung", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap SlightlySmilingFaceTwitter { + get { + object obj = ResourceManager.GetObject("SlightlySmilingFaceTwitter", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap SlightlySmilingFaceWindows { + get { + object obj = ResourceManager.GetObject("SlightlySmilingFaceWindows", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap SmilingFaceWithHaloApple { + get { + object obj = ResourceManager.GetObject("SmilingFaceWithHaloApple", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap SmilingFaceWithHaloFacebook { + get { + object obj = ResourceManager.GetObject("SmilingFaceWithHaloFacebook", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap SmilingFaceWithHaloGoogle { + get { + object obj = ResourceManager.GetObject("SmilingFaceWithHaloGoogle", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap SmilingFaceWithHaloJoyPixels { + get { + object obj = ResourceManager.GetObject("SmilingFaceWithHaloJoyPixels", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap SmilingFaceWithHaloSamsung { + get { + object obj = ResourceManager.GetObject("SmilingFaceWithHaloSamsung", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap SmilingFaceWithHaloTwitter { + get { + object obj = ResourceManager.GetObject("SmilingFaceWithHaloTwitter", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap SmilingFaceWithHaloWindows { + get { + object obj = ResourceManager.GetObject("SmilingFaceWithHaloWindows", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap SmilingFaceWithSmilingEyesApple { + get { + object obj = ResourceManager.GetObject("SmilingFaceWithSmilingEyesApple", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap SmilingFaceWithSmilingEyesFacebook { + get { + object obj = ResourceManager.GetObject("SmilingFaceWithSmilingEyesFacebook", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap SmilingFaceWithSmilingEyesGoogle { + get { + object obj = ResourceManager.GetObject("SmilingFaceWithSmilingEyesGoogle", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap SmilingFaceWithSmilingEyesJoyPixels { + get { + object obj = ResourceManager.GetObject("SmilingFaceWithSmilingEyesJoyPixels", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap SmilingFaceWithSmilingEyesSamsung { + get { + object obj = ResourceManager.GetObject("SmilingFaceWithSmilingEyesSamsung", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap SmilingFaceWithSmilingEyesTwitter { + get { + object obj = ResourceManager.GetObject("SmilingFaceWithSmilingEyesTwitter", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap SmilingFaceWithSmilingEyesWindows { + get { + object obj = ResourceManager.GetObject("SmilingFaceWithSmilingEyesWindows", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap UpsideDownFaceApple { + get { + object obj = ResourceManager.GetObject("UpsideDownFaceApple", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap UpsideDownFaceFacebook { + get { + object obj = ResourceManager.GetObject("UpsideDownFaceFacebook", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap UpsideDownFaceGoogle { + get { + object obj = ResourceManager.GetObject("UpsideDownFaceGoogle", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap UpsideDownFaceJoyPixels { + get { + object obj = ResourceManager.GetObject("UpsideDownFaceJoyPixels", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap UpsideDownFaceSamsung { + get { + object obj = ResourceManager.GetObject("UpsideDownFaceSamsung", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap UpsideDownFaceTwitter { + get { + object obj = ResourceManager.GetObject("UpsideDownFaceTwitter", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap UpsideDownFaceWindows { + get { + object obj = ResourceManager.GetObject("UpsideDownFaceWindows", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap WinkingFaceApple { + get { + object obj = ResourceManager.GetObject("WinkingFaceApple", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap WinkingFaceFacebook { + get { + object obj = ResourceManager.GetObject("WinkingFaceFacebook", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap WinkingFaceGoogle { + get { + object obj = ResourceManager.GetObject("WinkingFaceGoogle", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap WinkingFaceJoyPixels { + get { + object obj = ResourceManager.GetObject("WinkingFaceJoyPixels", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap WinkingFaceSamsung { + get { + object obj = ResourceManager.GetObject("WinkingFaceSamsung", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap WinkingFaceTwitter { + get { + object obj = ResourceManager.GetObject("WinkingFaceTwitter", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + internal static System.Drawing.Bitmap WinkingFaceWindows { + get { + object obj = ResourceManager.GetObject("WinkingFaceWindows", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + } +} diff --git a/EmojiLib/FaceSmiling.resx b/EmojiLib/FaceSmiling.resx new file mode 100644 index 0000000..d9ba26e --- /dev/null +++ b/EmojiLib/FaceSmiling.resx @@ -0,0 +1,397 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + Resources\BeamingFaceWithSmilingEyesApple.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\BeamingFaceWithSmilingEyesFacebook.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\BeamingFaceWithSmilingEyesGoogle.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\BeamingFaceWithSmilingEyesJoyPixels.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\BeamingFaceWithSmilingEyesSamsung.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\BeamingFaceWithSmilingEyesTwitter.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\BeamingFaceWithSmilingEyesWindows.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\FaceWithTearsOfJoyApple.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\FaceWithTearsOfJoyFacebook.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\FaceWithTearsOfJoyGoogle.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\FaceWithTearsOfJoyJoyPixels.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\FaceWithTearsOfJoySamsung.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\FaceWithTearsOfJoyTwitter.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\FaceWithTearsOfJoyWindows.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\GrinningFace.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\GrinningFaceApple.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\GrinningFaceFacebook.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\GrinningFaceGoogle.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\GrinningFaceJoyPixels.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\GrinningFaceSamsung.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\GrinningFaceTwitter.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\GrinningFaceWindows.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\GrinningFaceWithBigEyesApple.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\GrinningFaceWithBigEyesFacebook.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\GrinningFaceWithBigEyesGoogle.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\GrinningFaceWithBigEyesJoyPixels.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\GrinningFaceWithBigEyesSamsung.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\GrinningFaceWithBigEyesTwitter.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\GrinningFaceWithBigEyesWindows.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\GrinningFaceWithSmilingEyesApple.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\GrinningFaceWithSmilingEyesFacebook.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\GrinningFaceWithSmilingEyesGoogle.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\GrinningFaceWithSmilingEyesJoyPixels.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\GrinningFaceWithSmilingEyesSamsung.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\GrinningFaceWithSmilingEyesTwitter.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\GrinningFaceWithSmilingEyesWindows.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\GrinningFaceWithSweatApple.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\GrinningFaceWithSweatFacebook.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\GrinningFaceWithSweatGoogle.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\GrinningFaceWithSweatJoyPixels.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\GrinningFaceWithSweatSamsung.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\GrinningFaceWithSweatTwitter.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\GrinningFaceWithSweatWindows.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\GrinningSquintingFaceApple.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\GrinningSquintingFaceFacebook.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\GrinningSquintingFaceGoogle.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\GrinningSquintingFaceJoyPixels.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\GrinningSquintingFaceSamsung.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\GrinningSquintingFaceTwitter.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\GrinningSquintingFaceWindows.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\RollingOnTheFloorLaughingApple.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\RollingOnTheFloorLaughingFacebook.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\RollingOnTheFloorLaughingGoogle.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\RollingOnTheFloorLaughingJoyPixels.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\RollingOnTheFloorLaughingSamsung.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\RollingOnTheFloorLaughingTwitter.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\RollingOnTheFloorLaughingWindows.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\SlightlySmilingFaceApple.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\SlightlySmilingFaceFacebook.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\SlightlySmilingFaceGoogle.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\SlightlySmilingFaceJoyPixels.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\SlightlySmilingFaceSamsung.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\SlightlySmilingFaceTwitter.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\SlightlySmilingFaceWindows.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\SmilingFaceWithHaloApple.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\SmilingFaceWithHaloFacebook.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\SmilingFaceWithHaloGoogle.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\SmilingFaceWithHaloJoyPixels.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\SmilingFaceWithHaloSamsung.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\SmilingFaceWithHaloTwitter.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\SmilingFaceWithHaloWindows.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\SmilingFaceWithSmilingEyesApple.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\SmilingFaceWithSmilingEyesFacebook.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\SmilingFaceWithSmilingEyesGoogle.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\SmilingFaceWithSmilingEyesJoyPixels.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\SmilingFaceWithSmilingEyesSamsung.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\SmilingFaceWithSmilingEyesTwitter.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\SmilingFaceWithSmilingEyesWindows.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\UpsideDownFaceApple.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\UpsideDownFaceFacebook.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\UpsideDownFaceGoogle.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\UpsideDownFaceJoyPixels.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\UpsideDownFaceSamsung.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\UpsideDownFaceTwitter.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\UpsideDownFaceWindows.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\WinkingFaceApple.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\WinkingFaceFacebook.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\WinkingFaceGoogle.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\WinkingFaceJoyPixels.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\WinkingFaceSamsung.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\WinkingFaceTwitter.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + Resources\WinkingFaceWindows.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + \ No newline at end of file diff --git a/EmojiLib/MainForm.Designer.cs b/EmojiLib/MainForm.Designer.cs index e1615a7..9e13235 100644 --- a/EmojiLib/MainForm.Designer.cs +++ b/EmojiLib/MainForm.Designer.cs @@ -33,6 +33,13 @@ private void InitializeComponent() this.tabControlEmojis = new System.Windows.Forms.TabControl(); this.tabPageSmileys = new System.Windows.Forms.TabPage(); this.flowLayoutPanel = new System.Windows.Forms.FlowLayoutPanel(); + this.buttonStarStruck = new System.Windows.Forms.Button(); + this.buttonFaceBlowingAKiss = new System.Windows.Forms.Button(); + this.buttonKissingFace = new System.Windows.Forms.Button(); + this.buttonSmilingFace = new System.Windows.Forms.Button(); + this.buttonKissingFaceWithClosedEyes = new System.Windows.Forms.Button(); + this.buttonKissingFaceWithSmilingEyes = new System.Windows.Forms.Button(); + this.buttonSmilingFaceWithTear = new System.Windows.Forms.Button(); this.statusStrip = new System.Windows.Forms.StatusStrip(); this.labelInformation = new System.Windows.Forms.ToolStripStatusLabel(); this.toolStripContainer = new System.Windows.Forms.ToolStripContainer(); @@ -53,6 +60,8 @@ private void InitializeComponent() this.buttonWinkingFace = new System.Windows.Forms.Button(); this.buttonSmilingFaceWithSmilingEyes = new System.Windows.Forms.Button(); this.buttonSmilingFaceWithHalo = new System.Windows.Forms.Button(); + this.buttonSmilingFaceWithHearts = new System.Windows.Forms.Button(); + this.buttonSmilingFaceWithHeartEyes = new System.Windows.Forms.Button(); this.tabControlEmojis.SuspendLayout(); this.tabPageSmileys.SuspendLayout(); this.flowLayoutPanel.SuspendLayout(); @@ -72,7 +81,7 @@ private void InitializeComponent() this.tabControlEmojis.Name = "tabControlEmojis"; this.tabControlEmojis.SelectedIndex = 0; this.tabControlEmojis.ShowToolTips = true; - this.tabControlEmojis.Size = new System.Drawing.Size(351, 305); + this.tabControlEmojis.Size = new System.Drawing.Size(404, 320); this.tabControlEmojis.TabIndex = 0; // // tabPageSmileys @@ -82,7 +91,7 @@ private void InitializeComponent() this.tabPageSmileys.Location = new System.Drawing.Point(4, 22); this.tabPageSmileys.Name = "tabPageSmileys"; this.tabPageSmileys.Padding = new System.Windows.Forms.Padding(3); - this.tabPageSmileys.Size = new System.Drawing.Size(343, 279); + this.tabPageSmileys.Size = new System.Drawing.Size(396, 294); this.tabPageSmileys.TabIndex = 0; this.tabPageSmileys.Text = "Smileys"; this.tabPageSmileys.UseVisualStyleBackColor = true; @@ -90,6 +99,7 @@ private void InitializeComponent() // flowLayoutPanel // this.flowLayoutPanel.AutoScroll = true; + this.flowLayoutPanel.BackColor = System.Drawing.Color.Transparent; this.flowLayoutPanel.Controls.Add(this.buttonGrinningFace); this.flowLayoutPanel.Controls.Add(this.buttonGrinningFaceWithBigEyes); this.flowLayoutPanel.Controls.Add(this.buttonGrinningFaceWithSmilingEyes); @@ -103,13 +113,204 @@ private void InitializeComponent() this.flowLayoutPanel.Controls.Add(this.buttonWinkingFace); this.flowLayoutPanel.Controls.Add(this.buttonSmilingFaceWithSmilingEyes); this.flowLayoutPanel.Controls.Add(this.buttonSmilingFaceWithHalo); + this.flowLayoutPanel.Controls.Add(this.buttonSmilingFaceWithHearts); + this.flowLayoutPanel.Controls.Add(this.buttonSmilingFaceWithHeartEyes); + this.flowLayoutPanel.Controls.Add(this.buttonStarStruck); + this.flowLayoutPanel.Controls.Add(this.buttonFaceBlowingAKiss); + this.flowLayoutPanel.Controls.Add(this.buttonKissingFace); + this.flowLayoutPanel.Controls.Add(this.buttonSmilingFace); + this.flowLayoutPanel.Controls.Add(this.buttonKissingFaceWithClosedEyes); + this.flowLayoutPanel.Controls.Add(this.buttonKissingFaceWithSmilingEyes); + this.flowLayoutPanel.Controls.Add(this.buttonSmilingFaceWithTear); this.flowLayoutPanel.Dock = System.Windows.Forms.DockStyle.Fill; this.flowLayoutPanel.Location = new System.Drawing.Point(3, 3); this.flowLayoutPanel.Name = "flowLayoutPanel"; - this.flowLayoutPanel.Size = new System.Drawing.Size(337, 273); + this.flowLayoutPanel.Size = new System.Drawing.Size(390, 288); this.flowLayoutPanel.TabIndex = 1; this.flowLayoutPanel.TabStop = true; // + // buttonStarStruck + // + this.buttonStarStruck.AccessibleDescription = "star-struck"; + this.buttonStarStruck.AccessibleName = "star-struck"; + this.buttonStarStruck.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; + this.buttonStarStruck.BackgroundImage = global::EmojiLib.FaceAffection.StarStruckGoogle; + this.buttonStarStruck.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; + this.buttonStarStruck.FlatAppearance.BorderSize = 0; + this.buttonStarStruck.FlatAppearance.CheckedBackColor = System.Drawing.SystemColors.ControlDarkDark; + this.buttonStarStruck.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.ControlDark; + this.buttonStarStruck.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.ButtonFace; + this.buttonStarStruck.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.buttonStarStruck.Location = new System.Drawing.Point(96, 32); + this.buttonStarStruck.Margin = new System.Windows.Forms.Padding(0); + this.buttonStarStruck.Name = "buttonStarStruck"; + this.buttonStarStruck.Size = new System.Drawing.Size(32, 32); + this.buttonStarStruck.TabIndex = 15; + this.buttonStarStruck.Tag = "🤩"; + this.toolTip.SetToolTip(this.buttonStarStruck, "star-struck"); + this.buttonStarStruck.UseVisualStyleBackColor = true; + this.buttonStarStruck.Click += new System.EventHandler(this.ButtonStarStruck_Click); + this.buttonStarStruck.Enter += new System.EventHandler(this.SetStatusbar_Enter); + this.buttonStarStruck.Leave += new System.EventHandler(this.ClearStatusbar_Leave); + this.buttonStarStruck.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); + this.buttonStarStruck.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + // + // buttonFaceBlowingAKiss + // + this.buttonFaceBlowingAKiss.AccessibleDescription = "face blowing a kiss"; + this.buttonFaceBlowingAKiss.AccessibleName = "face blowing a kiss"; + this.buttonFaceBlowingAKiss.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; + this.buttonFaceBlowingAKiss.BackgroundImage = global::EmojiLib.FaceAffection.FaceBlowingAKissGoogle; + this.buttonFaceBlowingAKiss.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; + this.buttonFaceBlowingAKiss.FlatAppearance.BorderSize = 0; + this.buttonFaceBlowingAKiss.FlatAppearance.CheckedBackColor = System.Drawing.SystemColors.ControlDarkDark; + this.buttonFaceBlowingAKiss.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.ControlDark; + this.buttonFaceBlowingAKiss.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.ButtonFace; + this.buttonFaceBlowingAKiss.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.buttonFaceBlowingAKiss.Location = new System.Drawing.Point(128, 32); + this.buttonFaceBlowingAKiss.Margin = new System.Windows.Forms.Padding(0); + this.buttonFaceBlowingAKiss.Name = "buttonFaceBlowingAKiss"; + this.buttonFaceBlowingAKiss.Size = new System.Drawing.Size(32, 32); + this.buttonFaceBlowingAKiss.TabIndex = 16; + this.buttonFaceBlowingAKiss.Tag = "😘"; + this.toolTip.SetToolTip(this.buttonFaceBlowingAKiss, "face blowing a kiss"); + this.buttonFaceBlowingAKiss.UseVisualStyleBackColor = true; + this.buttonFaceBlowingAKiss.Click += new System.EventHandler(this.ButtonFaceBlowingAKiss_Click); + this.buttonFaceBlowingAKiss.Enter += new System.EventHandler(this.SetStatusbar_Enter); + this.buttonFaceBlowingAKiss.Leave += new System.EventHandler(this.ClearStatusbar_Leave); + this.buttonFaceBlowingAKiss.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); + this.buttonFaceBlowingAKiss.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + // + // buttonKissingFace + // + this.buttonKissingFace.AccessibleDescription = "kissing face"; + this.buttonKissingFace.AccessibleName = "kissing face"; + this.buttonKissingFace.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; + this.buttonKissingFace.BackgroundImage = global::EmojiLib.FaceAffection.KissingFaceGoogle; + this.buttonKissingFace.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; + this.buttonKissingFace.FlatAppearance.BorderSize = 0; + this.buttonKissingFace.FlatAppearance.CheckedBackColor = System.Drawing.SystemColors.ControlDarkDark; + this.buttonKissingFace.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.ControlDark; + this.buttonKissingFace.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.ButtonFace; + this.buttonKissingFace.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.buttonKissingFace.Location = new System.Drawing.Point(160, 32); + this.buttonKissingFace.Margin = new System.Windows.Forms.Padding(0); + this.buttonKissingFace.Name = "buttonKissingFace"; + this.buttonKissingFace.Size = new System.Drawing.Size(32, 32); + this.buttonKissingFace.TabIndex = 17; + this.buttonKissingFace.Tag = "😗"; + this.toolTip.SetToolTip(this.buttonKissingFace, "kissing face"); + this.buttonKissingFace.UseVisualStyleBackColor = true; + this.buttonKissingFace.Click += new System.EventHandler(this.ButtonKissingFace_Click); + this.buttonKissingFace.Enter += new System.EventHandler(this.SetStatusbar_Enter); + this.buttonKissingFace.Leave += new System.EventHandler(this.ClearStatusbar_Leave); + this.buttonKissingFace.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); + this.buttonKissingFace.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + // + // buttonSmilingFace + // + this.buttonSmilingFace.AccessibleDescription = "smiling face"; + this.buttonSmilingFace.AccessibleName = "smiling face"; + this.buttonSmilingFace.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; + this.buttonSmilingFace.BackgroundImage = global::EmojiLib.FaceAffection.SmilingFaceGoogle; + this.buttonSmilingFace.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; + this.buttonSmilingFace.FlatAppearance.BorderSize = 0; + this.buttonSmilingFace.FlatAppearance.CheckedBackColor = System.Drawing.SystemColors.ControlDarkDark; + this.buttonSmilingFace.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.ControlDark; + this.buttonSmilingFace.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.ButtonFace; + this.buttonSmilingFace.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.buttonSmilingFace.Location = new System.Drawing.Point(192, 32); + this.buttonSmilingFace.Margin = new System.Windows.Forms.Padding(0); + this.buttonSmilingFace.Name = "buttonSmilingFace"; + this.buttonSmilingFace.Size = new System.Drawing.Size(32, 32); + this.buttonSmilingFace.TabIndex = 18; + this.buttonSmilingFace.Tag = "☺"; + this.toolTip.SetToolTip(this.buttonSmilingFace, "smiling face"); + this.buttonSmilingFace.UseVisualStyleBackColor = true; + this.buttonSmilingFace.Click += new System.EventHandler(this.ButtonSmilingFace_Click); + this.buttonSmilingFace.Enter += new System.EventHandler(this.SetStatusbar_Enter); + this.buttonSmilingFace.Leave += new System.EventHandler(this.ClearStatusbar_Leave); + this.buttonSmilingFace.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); + this.buttonSmilingFace.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + // + // buttonKissingFaceWithClosedEyes + // + this.buttonKissingFaceWithClosedEyes.AccessibleDescription = "kissing face with closed eyes"; + this.buttonKissingFaceWithClosedEyes.AccessibleName = "kissing face with closed eyes"; + this.buttonKissingFaceWithClosedEyes.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; + this.buttonKissingFaceWithClosedEyes.BackgroundImage = global::EmojiLib.FaceAffection.KissingFaceWithClosedEyesGoogle; + this.buttonKissingFaceWithClosedEyes.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; + this.buttonKissingFaceWithClosedEyes.FlatAppearance.BorderSize = 0; + this.buttonKissingFaceWithClosedEyes.FlatAppearance.CheckedBackColor = System.Drawing.SystemColors.ControlDarkDark; + this.buttonKissingFaceWithClosedEyes.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.ControlDark; + this.buttonKissingFaceWithClosedEyes.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.ButtonFace; + this.buttonKissingFaceWithClosedEyes.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.buttonKissingFaceWithClosedEyes.Location = new System.Drawing.Point(224, 32); + this.buttonKissingFaceWithClosedEyes.Margin = new System.Windows.Forms.Padding(0); + this.buttonKissingFaceWithClosedEyes.Name = "buttonKissingFaceWithClosedEyes"; + this.buttonKissingFaceWithClosedEyes.Size = new System.Drawing.Size(32, 32); + this.buttonKissingFaceWithClosedEyes.TabIndex = 19; + this.buttonKissingFaceWithClosedEyes.Tag = "😚"; + this.toolTip.SetToolTip(this.buttonKissingFaceWithClosedEyes, "kissing face with closed eyes"); + this.buttonKissingFaceWithClosedEyes.UseVisualStyleBackColor = true; + this.buttonKissingFaceWithClosedEyes.Click += new System.EventHandler(this.ButtonKissingFaceWithClosedEyes_Click); + this.buttonKissingFaceWithClosedEyes.Enter += new System.EventHandler(this.SetStatusbar_Enter); + this.buttonKissingFaceWithClosedEyes.Leave += new System.EventHandler(this.ClearStatusbar_Leave); + this.buttonKissingFaceWithClosedEyes.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); + this.buttonKissingFaceWithClosedEyes.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + // + // buttonKissingFaceWithSmilingEyes + // + this.buttonKissingFaceWithSmilingEyes.AccessibleDescription = "kissing face with smiling eyes"; + this.buttonKissingFaceWithSmilingEyes.AccessibleName = "kissing face with smiling eyes"; + this.buttonKissingFaceWithSmilingEyes.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; + this.buttonKissingFaceWithSmilingEyes.BackgroundImage = global::EmojiLib.FaceAffection.KissingFaceWithSmilingEyesGoogle; + this.buttonKissingFaceWithSmilingEyes.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; + this.buttonKissingFaceWithSmilingEyes.FlatAppearance.BorderSize = 0; + this.buttonKissingFaceWithSmilingEyes.FlatAppearance.CheckedBackColor = System.Drawing.SystemColors.ControlDarkDark; + this.buttonKissingFaceWithSmilingEyes.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.ControlDark; + this.buttonKissingFaceWithSmilingEyes.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.ButtonFace; + this.buttonKissingFaceWithSmilingEyes.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.buttonKissingFaceWithSmilingEyes.Location = new System.Drawing.Point(256, 32); + this.buttonKissingFaceWithSmilingEyes.Margin = new System.Windows.Forms.Padding(0); + this.buttonKissingFaceWithSmilingEyes.Name = "buttonKissingFaceWithSmilingEyes"; + this.buttonKissingFaceWithSmilingEyes.Size = new System.Drawing.Size(32, 32); + this.buttonKissingFaceWithSmilingEyes.TabIndex = 20; + this.buttonKissingFaceWithSmilingEyes.Tag = "😙"; + this.toolTip.SetToolTip(this.buttonKissingFaceWithSmilingEyes, "kissing face with smiling eyes"); + this.buttonKissingFaceWithSmilingEyes.UseVisualStyleBackColor = true; + this.buttonKissingFaceWithSmilingEyes.Click += new System.EventHandler(this.ButtonKissingFaceWithSmilingEyes_Click); + this.buttonKissingFaceWithSmilingEyes.Enter += new System.EventHandler(this.SetStatusbar_Enter); + this.buttonKissingFaceWithSmilingEyes.Leave += new System.EventHandler(this.ClearStatusbar_Leave); + this.buttonKissingFaceWithSmilingEyes.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); + this.buttonKissingFaceWithSmilingEyes.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + // + // buttonSmilingFaceWithTear + // + this.buttonSmilingFaceWithTear.AccessibleDescription = "smiling face with tear"; + this.buttonSmilingFaceWithTear.AccessibleName = "smiling face with tear"; + this.buttonSmilingFaceWithTear.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; + this.buttonSmilingFaceWithTear.BackgroundImage = global::EmojiLib.FaceAffection.SmilingFaceWithTearGoogle; + this.buttonSmilingFaceWithTear.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; + this.buttonSmilingFaceWithTear.FlatAppearance.BorderSize = 0; + this.buttonSmilingFaceWithTear.FlatAppearance.CheckedBackColor = System.Drawing.SystemColors.ControlDarkDark; + this.buttonSmilingFaceWithTear.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.ControlDark; + this.buttonSmilingFaceWithTear.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.ButtonFace; + this.buttonSmilingFaceWithTear.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.buttonSmilingFaceWithTear.Location = new System.Drawing.Point(288, 32); + this.buttonSmilingFaceWithTear.Margin = new System.Windows.Forms.Padding(0); + this.buttonSmilingFaceWithTear.Name = "buttonSmilingFaceWithTear"; + this.buttonSmilingFaceWithTear.Size = new System.Drawing.Size(32, 32); + this.buttonSmilingFaceWithTear.TabIndex = 21; + this.buttonSmilingFaceWithTear.Tag = "🥲"; + this.toolTip.SetToolTip(this.buttonSmilingFaceWithTear, "smiling face with tear"); + this.buttonSmilingFaceWithTear.UseVisualStyleBackColor = true; + this.buttonSmilingFaceWithTear.Click += new System.EventHandler(this.ButtonSmilingFaceWithTear_Click); + this.buttonSmilingFaceWithTear.Enter += new System.EventHandler(this.SetStatusbar_Enter); + this.buttonSmilingFaceWithTear.Leave += new System.EventHandler(this.ClearStatusbar_Leave); + this.buttonSmilingFaceWithTear.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); + this.buttonSmilingFaceWithTear.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + // // statusStrip // this.statusStrip.Dock = System.Windows.Forms.DockStyle.None; @@ -118,7 +319,7 @@ private void InitializeComponent() this.statusStrip.Location = new System.Drawing.Point(0, 0); this.statusStrip.Name = "statusStrip"; this.statusStrip.ShowItemToolTips = true; - this.statusStrip.Size = new System.Drawing.Size(351, 22); + this.statusStrip.Size = new System.Drawing.Size(404, 22); this.statusStrip.TabIndex = 1; this.statusStrip.TabStop = true; this.statusStrip.Text = "statusStrip"; @@ -140,13 +341,13 @@ private void InitializeComponent() // toolStripContainer.ContentPanel // this.toolStripContainer.ContentPanel.Controls.Add(this.tabControlEmojis); - this.toolStripContainer.ContentPanel.Size = new System.Drawing.Size(351, 305); + this.toolStripContainer.ContentPanel.Size = new System.Drawing.Size(404, 320); this.toolStripContainer.Dock = System.Windows.Forms.DockStyle.Fill; this.toolStripContainer.Location = new System.Drawing.Point(0, 0); this.toolStripContainer.Name = "toolStripContainer"; - this.toolStripContainer.Size = new System.Drawing.Size(351, 351); + this.toolStripContainer.Size = new System.Drawing.Size(404, 366); this.toolStripContainer.TabIndex = 2; - this.toolStripContainer.Text = "toolStripContainer1"; + this.toolStripContainer.Text = "toolStripContainer"; // // toolStripContainer.TopToolStripPanel // @@ -161,7 +362,7 @@ private void InitializeComponent() this.menuStrip.Name = "menuStrip"; this.menuStrip.RenderMode = System.Windows.Forms.ToolStripRenderMode.System; this.menuStrip.ShowItemToolTips = true; - this.menuStrip.Size = new System.Drawing.Size(351, 24); + this.menuStrip.Size = new System.Drawing.Size(404, 24); this.menuStrip.TabIndex = 0; this.menuStrip.Text = "menuStrip"; // @@ -187,18 +388,19 @@ private void InitializeComponent() this.buttonGrinningFace.AccessibleDescription = "grinning face"; this.buttonGrinningFace.AccessibleName = "grinning face"; this.buttonGrinningFace.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.buttonGrinningFace.BackgroundImage = global::EmojiLib.Properties.Resources.GrinningFaceGoogle; + this.buttonGrinningFace.BackgroundImage = global::EmojiLib.FaceSmiling.GrinningFaceGoogle; this.buttonGrinningFace.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; this.buttonGrinningFace.FlatAppearance.BorderSize = 0; this.buttonGrinningFace.FlatAppearance.CheckedBackColor = System.Drawing.SystemColors.ControlDarkDark; this.buttonGrinningFace.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.ControlDark; - this.buttonGrinningFace.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; + this.buttonGrinningFace.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.ButtonFace; this.buttonGrinningFace.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.buttonGrinningFace.Location = new System.Drawing.Point(0, 0); this.buttonGrinningFace.Margin = new System.Windows.Forms.Padding(0); this.buttonGrinningFace.Name = "buttonGrinningFace"; this.buttonGrinningFace.Size = new System.Drawing.Size(32, 32); this.buttonGrinningFace.TabIndex = 0; + this.buttonGrinningFace.Tag = "😀"; this.toolTip.SetToolTip(this.buttonGrinningFace, "grinning face"); this.buttonGrinningFace.UseVisualStyleBackColor = true; this.buttonGrinningFace.Click += new System.EventHandler(this.ButtonGrinningFace_Click); @@ -212,18 +414,19 @@ private void InitializeComponent() this.buttonGrinningFaceWithBigEyes.AccessibleDescription = "grinning face with big eyes"; this.buttonGrinningFaceWithBigEyes.AccessibleName = "grinning face with big eyes"; this.buttonGrinningFaceWithBigEyes.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.buttonGrinningFaceWithBigEyes.BackgroundImage = global::EmojiLib.Properties.Resources.GrinningFaceWithBigEyesGoogle; + this.buttonGrinningFaceWithBigEyes.BackgroundImage = global::EmojiLib.FaceSmiling.GrinningFaceWithBigEyesGoogle; this.buttonGrinningFaceWithBigEyes.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; this.buttonGrinningFaceWithBigEyes.FlatAppearance.BorderSize = 0; this.buttonGrinningFaceWithBigEyes.FlatAppearance.CheckedBackColor = System.Drawing.SystemColors.ControlDarkDark; this.buttonGrinningFaceWithBigEyes.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.ControlDark; - this.buttonGrinningFaceWithBigEyes.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; + this.buttonGrinningFaceWithBigEyes.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.ButtonFace; this.buttonGrinningFaceWithBigEyes.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.buttonGrinningFaceWithBigEyes.Location = new System.Drawing.Point(32, 0); this.buttonGrinningFaceWithBigEyes.Margin = new System.Windows.Forms.Padding(0); this.buttonGrinningFaceWithBigEyes.Name = "buttonGrinningFaceWithBigEyes"; this.buttonGrinningFaceWithBigEyes.Size = new System.Drawing.Size(32, 32); this.buttonGrinningFaceWithBigEyes.TabIndex = 1; + this.buttonGrinningFaceWithBigEyes.Tag = "😃"; this.toolTip.SetToolTip(this.buttonGrinningFaceWithBigEyes, "grinning face with big eyes"); this.buttonGrinningFaceWithBigEyes.UseVisualStyleBackColor = true; this.buttonGrinningFaceWithBigEyes.Click += new System.EventHandler(this.ButtonGrinningFaceWithBigEyes_Click); @@ -237,18 +440,19 @@ private void InitializeComponent() this.buttonGrinningFaceWithSmilingEyes.AccessibleDescription = "grinning face with smiling eyes"; this.buttonGrinningFaceWithSmilingEyes.AccessibleName = "grinning face with smiling eyes"; this.buttonGrinningFaceWithSmilingEyes.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.buttonGrinningFaceWithSmilingEyes.BackgroundImage = global::EmojiLib.Properties.Resources.GrinningFaceWithSmilingEyesGoogle; + this.buttonGrinningFaceWithSmilingEyes.BackgroundImage = global::EmojiLib.FaceSmiling.GrinningFaceWithSmilingEyesGoogle; this.buttonGrinningFaceWithSmilingEyes.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; this.buttonGrinningFaceWithSmilingEyes.FlatAppearance.BorderSize = 0; this.buttonGrinningFaceWithSmilingEyes.FlatAppearance.CheckedBackColor = System.Drawing.SystemColors.ControlDarkDark; this.buttonGrinningFaceWithSmilingEyes.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.ControlDark; - this.buttonGrinningFaceWithSmilingEyes.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; + this.buttonGrinningFaceWithSmilingEyes.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.ButtonFace; this.buttonGrinningFaceWithSmilingEyes.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.buttonGrinningFaceWithSmilingEyes.Location = new System.Drawing.Point(64, 0); this.buttonGrinningFaceWithSmilingEyes.Margin = new System.Windows.Forms.Padding(0); this.buttonGrinningFaceWithSmilingEyes.Name = "buttonGrinningFaceWithSmilingEyes"; this.buttonGrinningFaceWithSmilingEyes.Size = new System.Drawing.Size(32, 32); this.buttonGrinningFaceWithSmilingEyes.TabIndex = 2; + this.buttonGrinningFaceWithSmilingEyes.Tag = "😄"; this.toolTip.SetToolTip(this.buttonGrinningFaceWithSmilingEyes, "grinning face with smiling eyes"); this.buttonGrinningFaceWithSmilingEyes.UseVisualStyleBackColor = true; this.buttonGrinningFaceWithSmilingEyes.Click += new System.EventHandler(this.ButtonGrinningFaceWithSmilingEyes_Click); @@ -262,18 +466,19 @@ private void InitializeComponent() this.buttonBeamingFaceWithSmilingEyes.AccessibleDescription = "beaming face with smiling eyes"; this.buttonBeamingFaceWithSmilingEyes.AccessibleName = "beaming face with smiling eyes"; this.buttonBeamingFaceWithSmilingEyes.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.buttonBeamingFaceWithSmilingEyes.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("buttonBeamingFaceWithSmilingEyes.BackgroundImage"))); + this.buttonBeamingFaceWithSmilingEyes.BackgroundImage = global::EmojiLib.FaceSmiling.BeamingFaceWithSmilingEyesGoogle; this.buttonBeamingFaceWithSmilingEyes.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; this.buttonBeamingFaceWithSmilingEyes.FlatAppearance.BorderSize = 0; this.buttonBeamingFaceWithSmilingEyes.FlatAppearance.CheckedBackColor = System.Drawing.SystemColors.ControlDarkDark; this.buttonBeamingFaceWithSmilingEyes.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.ControlDark; - this.buttonBeamingFaceWithSmilingEyes.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; + this.buttonBeamingFaceWithSmilingEyes.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.ButtonFace; this.buttonBeamingFaceWithSmilingEyes.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.buttonBeamingFaceWithSmilingEyes.Location = new System.Drawing.Point(96, 0); this.buttonBeamingFaceWithSmilingEyes.Margin = new System.Windows.Forms.Padding(0); this.buttonBeamingFaceWithSmilingEyes.Name = "buttonBeamingFaceWithSmilingEyes"; this.buttonBeamingFaceWithSmilingEyes.Size = new System.Drawing.Size(32, 32); this.buttonBeamingFaceWithSmilingEyes.TabIndex = 3; + this.buttonBeamingFaceWithSmilingEyes.Tag = "😁"; this.toolTip.SetToolTip(this.buttonBeamingFaceWithSmilingEyes, "beaming face with smiling eyes"); this.buttonBeamingFaceWithSmilingEyes.UseVisualStyleBackColor = true; this.buttonBeamingFaceWithSmilingEyes.Click += new System.EventHandler(this.ButtonBeamingFaceWithSmilingEyes_Click); @@ -287,18 +492,19 @@ private void InitializeComponent() this.buttonGrinningSquintingFace.AccessibleDescription = "grinning squinting face"; this.buttonGrinningSquintingFace.AccessibleName = "grinning squinting face"; this.buttonGrinningSquintingFace.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.buttonGrinningSquintingFace.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("buttonGrinningSquintingFace.BackgroundImage"))); + this.buttonGrinningSquintingFace.BackgroundImage = global::EmojiLib.FaceSmiling.GrinningSquintingFaceGoogle; this.buttonGrinningSquintingFace.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; this.buttonGrinningSquintingFace.FlatAppearance.BorderSize = 0; this.buttonGrinningSquintingFace.FlatAppearance.CheckedBackColor = System.Drawing.SystemColors.ControlDarkDark; this.buttonGrinningSquintingFace.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.ControlDark; - this.buttonGrinningSquintingFace.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; + this.buttonGrinningSquintingFace.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.ButtonFace; this.buttonGrinningSquintingFace.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.buttonGrinningSquintingFace.Location = new System.Drawing.Point(128, 0); this.buttonGrinningSquintingFace.Margin = new System.Windows.Forms.Padding(0); this.buttonGrinningSquintingFace.Name = "buttonGrinningSquintingFace"; this.buttonGrinningSquintingFace.Size = new System.Drawing.Size(32, 32); this.buttonGrinningSquintingFace.TabIndex = 4; + this.buttonGrinningSquintingFace.Tag = "😆"; this.toolTip.SetToolTip(this.buttonGrinningSquintingFace, "grinning squinting face"); this.buttonGrinningSquintingFace.UseVisualStyleBackColor = true; this.buttonGrinningSquintingFace.Click += new System.EventHandler(this.ButtonGrinningSquintingFace_Click); @@ -312,18 +518,19 @@ private void InitializeComponent() this.buttonGrinningFaceWithSweat.AccessibleDescription = "grinning face with sweat"; this.buttonGrinningFaceWithSweat.AccessibleName = "grinning face with sweat"; this.buttonGrinningFaceWithSweat.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.buttonGrinningFaceWithSweat.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("buttonGrinningFaceWithSweat.BackgroundImage"))); + this.buttonGrinningFaceWithSweat.BackgroundImage = global::EmojiLib.FaceSmiling.GrinningFaceWithSweatGoogle; this.buttonGrinningFaceWithSweat.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; this.buttonGrinningFaceWithSweat.FlatAppearance.BorderSize = 0; this.buttonGrinningFaceWithSweat.FlatAppearance.CheckedBackColor = System.Drawing.SystemColors.ControlDarkDark; this.buttonGrinningFaceWithSweat.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.ControlDark; - this.buttonGrinningFaceWithSweat.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; + this.buttonGrinningFaceWithSweat.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.ButtonFace; this.buttonGrinningFaceWithSweat.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.buttonGrinningFaceWithSweat.Location = new System.Drawing.Point(160, 0); this.buttonGrinningFaceWithSweat.Margin = new System.Windows.Forms.Padding(0); this.buttonGrinningFaceWithSweat.Name = "buttonGrinningFaceWithSweat"; this.buttonGrinningFaceWithSweat.Size = new System.Drawing.Size(32, 32); this.buttonGrinningFaceWithSweat.TabIndex = 5; + this.buttonGrinningFaceWithSweat.Tag = "😅"; this.toolTip.SetToolTip(this.buttonGrinningFaceWithSweat, "grinning face with sweat"); this.buttonGrinningFaceWithSweat.UseVisualStyleBackColor = true; this.buttonGrinningFaceWithSweat.Click += new System.EventHandler(this.ButtonGrinningFaceWithSweat_Click); @@ -337,18 +544,19 @@ private void InitializeComponent() this.buttonRollingOnTheFloorLaughing.AccessibleDescription = "rolling on the floor laughing"; this.buttonRollingOnTheFloorLaughing.AccessibleName = "rolling on the floor laughing"; this.buttonRollingOnTheFloorLaughing.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.buttonRollingOnTheFloorLaughing.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("buttonRollingOnTheFloorLaughing.BackgroundImage"))); + this.buttonRollingOnTheFloorLaughing.BackgroundImage = global::EmojiLib.FaceSmiling.RollingOnTheFloorLaughingGoogle; this.buttonRollingOnTheFloorLaughing.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; this.buttonRollingOnTheFloorLaughing.FlatAppearance.BorderSize = 0; this.buttonRollingOnTheFloorLaughing.FlatAppearance.CheckedBackColor = System.Drawing.SystemColors.ControlDarkDark; this.buttonRollingOnTheFloorLaughing.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.ControlDark; - this.buttonRollingOnTheFloorLaughing.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; + this.buttonRollingOnTheFloorLaughing.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.ButtonFace; this.buttonRollingOnTheFloorLaughing.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.buttonRollingOnTheFloorLaughing.Location = new System.Drawing.Point(192, 0); this.buttonRollingOnTheFloorLaughing.Margin = new System.Windows.Forms.Padding(0); this.buttonRollingOnTheFloorLaughing.Name = "buttonRollingOnTheFloorLaughing"; this.buttonRollingOnTheFloorLaughing.Size = new System.Drawing.Size(32, 32); this.buttonRollingOnTheFloorLaughing.TabIndex = 6; + this.buttonRollingOnTheFloorLaughing.Tag = "🤣"; this.toolTip.SetToolTip(this.buttonRollingOnTheFloorLaughing, "rolling on the floor laughing"); this.buttonRollingOnTheFloorLaughing.UseVisualStyleBackColor = true; this.buttonRollingOnTheFloorLaughing.Click += new System.EventHandler(this.ButtonRollingOnTheFloorLaughing_Click); @@ -362,18 +570,19 @@ private void InitializeComponent() this.buttonFaceWithTearsOfJoy.AccessibleDescription = "face with tears of joy"; this.buttonFaceWithTearsOfJoy.AccessibleName = "face with tears of joy"; this.buttonFaceWithTearsOfJoy.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.buttonFaceWithTearsOfJoy.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("buttonFaceWithTearsOfJoy.BackgroundImage"))); + this.buttonFaceWithTearsOfJoy.BackgroundImage = global::EmojiLib.FaceSmiling.FaceWithTearsOfJoyGoogle; this.buttonFaceWithTearsOfJoy.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; this.buttonFaceWithTearsOfJoy.FlatAppearance.BorderSize = 0; this.buttonFaceWithTearsOfJoy.FlatAppearance.CheckedBackColor = System.Drawing.SystemColors.ControlDarkDark; this.buttonFaceWithTearsOfJoy.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.ControlDark; - this.buttonFaceWithTearsOfJoy.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; + this.buttonFaceWithTearsOfJoy.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.ButtonFace; this.buttonFaceWithTearsOfJoy.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.buttonFaceWithTearsOfJoy.Location = new System.Drawing.Point(224, 0); this.buttonFaceWithTearsOfJoy.Margin = new System.Windows.Forms.Padding(0); this.buttonFaceWithTearsOfJoy.Name = "buttonFaceWithTearsOfJoy"; this.buttonFaceWithTearsOfJoy.Size = new System.Drawing.Size(32, 32); this.buttonFaceWithTearsOfJoy.TabIndex = 7; + this.buttonFaceWithTearsOfJoy.Tag = "😂"; this.toolTip.SetToolTip(this.buttonFaceWithTearsOfJoy, "face with tears of joy"); this.buttonFaceWithTearsOfJoy.UseVisualStyleBackColor = true; this.buttonFaceWithTearsOfJoy.Click += new System.EventHandler(this.ButtonFaceWithTearsOfJoy_Click); @@ -387,18 +596,19 @@ private void InitializeComponent() this.buttonSlightlySmilingFace.AccessibleDescription = "slightly smiling face"; this.buttonSlightlySmilingFace.AccessibleName = "slightly smiling face"; this.buttonSlightlySmilingFace.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.buttonSlightlySmilingFace.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("buttonSlightlySmilingFace.BackgroundImage"))); + this.buttonSlightlySmilingFace.BackgroundImage = global::EmojiLib.FaceSmiling.SlightlySmilingFaceGoogle; this.buttonSlightlySmilingFace.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; this.buttonSlightlySmilingFace.FlatAppearance.BorderSize = 0; this.buttonSlightlySmilingFace.FlatAppearance.CheckedBackColor = System.Drawing.SystemColors.ControlDarkDark; this.buttonSlightlySmilingFace.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.ControlDark; - this.buttonSlightlySmilingFace.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; + this.buttonSlightlySmilingFace.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.ButtonFace; this.buttonSlightlySmilingFace.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.buttonSlightlySmilingFace.Location = new System.Drawing.Point(256, 0); this.buttonSlightlySmilingFace.Margin = new System.Windows.Forms.Padding(0); this.buttonSlightlySmilingFace.Name = "buttonSlightlySmilingFace"; this.buttonSlightlySmilingFace.Size = new System.Drawing.Size(32, 32); this.buttonSlightlySmilingFace.TabIndex = 8; + this.buttonSlightlySmilingFace.Tag = "🙂"; this.toolTip.SetToolTip(this.buttonSlightlySmilingFace, "slightly smiling face"); this.buttonSlightlySmilingFace.UseVisualStyleBackColor = true; this.buttonSlightlySmilingFace.Click += new System.EventHandler(this.ButtonSlightlySmilingFace_Click); @@ -412,18 +622,19 @@ private void InitializeComponent() this.buttonUpsideDownFace.AccessibleDescription = "upside-down face"; this.buttonUpsideDownFace.AccessibleName = "upside-down face"; this.buttonUpsideDownFace.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.buttonUpsideDownFace.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("buttonUpsideDownFace.BackgroundImage"))); + this.buttonUpsideDownFace.BackgroundImage = global::EmojiLib.FaceSmiling.UpsideDownFaceGoogle; this.buttonUpsideDownFace.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; this.buttonUpsideDownFace.FlatAppearance.BorderSize = 0; this.buttonUpsideDownFace.FlatAppearance.CheckedBackColor = System.Drawing.SystemColors.ControlDarkDark; this.buttonUpsideDownFace.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.ControlDark; - this.buttonUpsideDownFace.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; + this.buttonUpsideDownFace.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.ButtonFace; this.buttonUpsideDownFace.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.buttonUpsideDownFace.Location = new System.Drawing.Point(288, 0); this.buttonUpsideDownFace.Margin = new System.Windows.Forms.Padding(0); this.buttonUpsideDownFace.Name = "buttonUpsideDownFace"; this.buttonUpsideDownFace.Size = new System.Drawing.Size(32, 32); this.buttonUpsideDownFace.TabIndex = 9; + this.buttonUpsideDownFace.Tag = "🙃"; this.toolTip.SetToolTip(this.buttonUpsideDownFace, "upside-down face"); this.buttonUpsideDownFace.UseVisualStyleBackColor = true; this.buttonUpsideDownFace.Click += new System.EventHandler(this.ButtonUpsideDownFace_Click); @@ -437,18 +648,19 @@ private void InitializeComponent() this.buttonWinkingFace.AccessibleDescription = "winking face"; this.buttonWinkingFace.AccessibleName = "winking face"; this.buttonWinkingFace.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.buttonWinkingFace.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("buttonWinkingFace.BackgroundImage"))); + this.buttonWinkingFace.BackgroundImage = global::EmojiLib.FaceSmiling.WinkingFaceGoogle; this.buttonWinkingFace.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; this.buttonWinkingFace.FlatAppearance.BorderSize = 0; this.buttonWinkingFace.FlatAppearance.CheckedBackColor = System.Drawing.SystemColors.ControlDarkDark; this.buttonWinkingFace.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.ControlDark; - this.buttonWinkingFace.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; + this.buttonWinkingFace.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.ButtonFace; this.buttonWinkingFace.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.buttonWinkingFace.Location = new System.Drawing.Point(0, 32); + this.buttonWinkingFace.Location = new System.Drawing.Point(320, 0); this.buttonWinkingFace.Margin = new System.Windows.Forms.Padding(0); this.buttonWinkingFace.Name = "buttonWinkingFace"; this.buttonWinkingFace.Size = new System.Drawing.Size(32, 32); this.buttonWinkingFace.TabIndex = 10; + this.buttonWinkingFace.Tag = "😉"; this.toolTip.SetToolTip(this.buttonWinkingFace, "winking face"); this.buttonWinkingFace.UseVisualStyleBackColor = true; this.buttonWinkingFace.Click += new System.EventHandler(this.ButtonWinkingFace_Click); @@ -462,18 +674,19 @@ private void InitializeComponent() this.buttonSmilingFaceWithSmilingEyes.AccessibleDescription = "smiling face with smiling eyes"; this.buttonSmilingFaceWithSmilingEyes.AccessibleName = "smiling face with smiling eyes"; this.buttonSmilingFaceWithSmilingEyes.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.buttonSmilingFaceWithSmilingEyes.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("buttonSmilingFaceWithSmilingEyes.BackgroundImage"))); + this.buttonSmilingFaceWithSmilingEyes.BackgroundImage = global::EmojiLib.FaceSmiling.SmilingFaceWithSmilingEyesGoogle; this.buttonSmilingFaceWithSmilingEyes.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; this.buttonSmilingFaceWithSmilingEyes.FlatAppearance.BorderSize = 0; this.buttonSmilingFaceWithSmilingEyes.FlatAppearance.CheckedBackColor = System.Drawing.SystemColors.ControlDarkDark; this.buttonSmilingFaceWithSmilingEyes.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.ControlDark; - this.buttonSmilingFaceWithSmilingEyes.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; + this.buttonSmilingFaceWithSmilingEyes.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.ButtonFace; this.buttonSmilingFaceWithSmilingEyes.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.buttonSmilingFaceWithSmilingEyes.Location = new System.Drawing.Point(32, 32); + this.buttonSmilingFaceWithSmilingEyes.Location = new System.Drawing.Point(352, 0); this.buttonSmilingFaceWithSmilingEyes.Margin = new System.Windows.Forms.Padding(0); this.buttonSmilingFaceWithSmilingEyes.Name = "buttonSmilingFaceWithSmilingEyes"; this.buttonSmilingFaceWithSmilingEyes.Size = new System.Drawing.Size(32, 32); this.buttonSmilingFaceWithSmilingEyes.TabIndex = 11; + this.buttonSmilingFaceWithSmilingEyes.Tag = "😊"; this.toolTip.SetToolTip(this.buttonSmilingFaceWithSmilingEyes, "smiling face with smiling eyes"); this.buttonSmilingFaceWithSmilingEyes.UseVisualStyleBackColor = true; this.buttonSmilingFaceWithSmilingEyes.Click += new System.EventHandler(this.ButtonSmilingFaceWithSmilingEyes_Click); @@ -487,18 +700,19 @@ private void InitializeComponent() this.buttonSmilingFaceWithHalo.AccessibleDescription = "smiling face with halo"; this.buttonSmilingFaceWithHalo.AccessibleName = "smiling face with halo"; this.buttonSmilingFaceWithHalo.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.buttonSmilingFaceWithHalo.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("buttonSmilingFaceWithHalo.BackgroundImage"))); + this.buttonSmilingFaceWithHalo.BackgroundImage = global::EmojiLib.FaceSmiling.SmilingFaceWithHaloGoogle; this.buttonSmilingFaceWithHalo.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; this.buttonSmilingFaceWithHalo.FlatAppearance.BorderSize = 0; this.buttonSmilingFaceWithHalo.FlatAppearance.CheckedBackColor = System.Drawing.SystemColors.ControlDarkDark; this.buttonSmilingFaceWithHalo.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.ControlDark; - this.buttonSmilingFaceWithHalo.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.Control; + this.buttonSmilingFaceWithHalo.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.ButtonFace; this.buttonSmilingFaceWithHalo.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.buttonSmilingFaceWithHalo.Location = new System.Drawing.Point(64, 32); + this.buttonSmilingFaceWithHalo.Location = new System.Drawing.Point(0, 32); this.buttonSmilingFaceWithHalo.Margin = new System.Windows.Forms.Padding(0); this.buttonSmilingFaceWithHalo.Name = "buttonSmilingFaceWithHalo"; this.buttonSmilingFaceWithHalo.Size = new System.Drawing.Size(32, 32); this.buttonSmilingFaceWithHalo.TabIndex = 12; + this.buttonSmilingFaceWithHalo.Tag = "😇"; this.toolTip.SetToolTip(this.buttonSmilingFaceWithHalo, "smiling face with halo"); this.buttonSmilingFaceWithHalo.UseVisualStyleBackColor = true; this.buttonSmilingFaceWithHalo.Click += new System.EventHandler(this.ButtonSmilingFaceWithHalo_Click); @@ -507,11 +721,62 @@ private void InitializeComponent() this.buttonSmilingFaceWithHalo.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); this.buttonSmilingFaceWithHalo.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); // + // buttonSmilingFaceWithHearts + // + this.buttonSmilingFaceWithHearts.AccessibleDescription = "smiling face with hearts"; + this.buttonSmilingFaceWithHearts.AccessibleName = "smiling face with hearts"; + this.buttonSmilingFaceWithHearts.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; + this.buttonSmilingFaceWithHearts.BackgroundImage = global::EmojiLib.FaceAffection.SmilingFaceWithHeartsGoogle; + this.buttonSmilingFaceWithHearts.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; + this.buttonSmilingFaceWithHearts.FlatAppearance.BorderSize = 0; + this.buttonSmilingFaceWithHearts.FlatAppearance.CheckedBackColor = System.Drawing.SystemColors.ControlDarkDark; + this.buttonSmilingFaceWithHearts.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.ControlDark; + this.buttonSmilingFaceWithHearts.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.ButtonFace; + this.buttonSmilingFaceWithHearts.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.buttonSmilingFaceWithHearts.Location = new System.Drawing.Point(32, 32); + this.buttonSmilingFaceWithHearts.Margin = new System.Windows.Forms.Padding(0); + this.buttonSmilingFaceWithHearts.Name = "buttonSmilingFaceWithHearts"; + this.buttonSmilingFaceWithHearts.Size = new System.Drawing.Size(32, 32); + this.buttonSmilingFaceWithHearts.TabIndex = 13; + this.buttonSmilingFaceWithHearts.Tag = "🥰"; + this.toolTip.SetToolTip(this.buttonSmilingFaceWithHearts, "smiling face with hearts"); + this.buttonSmilingFaceWithHearts.UseVisualStyleBackColor = true; + this.buttonSmilingFaceWithHearts.Click += new System.EventHandler(this.ButtonSmilingFaceWithHearts_Click); + this.buttonSmilingFaceWithHearts.Enter += new System.EventHandler(this.SetStatusbar_Enter); + this.buttonSmilingFaceWithHearts.Leave += new System.EventHandler(this.ClearStatusbar_Leave); + this.buttonSmilingFaceWithHearts.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); + this.buttonSmilingFaceWithHearts.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + // + // buttonSmilingFaceWithHeartEyes + // + this.buttonSmilingFaceWithHeartEyes.AccessibleDescription = "smiling face with heart-eyes"; + this.buttonSmilingFaceWithHeartEyes.AccessibleName = "smiling face with heart-eyes"; + this.buttonSmilingFaceWithHeartEyes.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; + this.buttonSmilingFaceWithHeartEyes.BackgroundImage = global::EmojiLib.FaceAffection.SmilingFaceWithHeartEyesGoogle; + this.buttonSmilingFaceWithHeartEyes.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; + this.buttonSmilingFaceWithHeartEyes.FlatAppearance.BorderSize = 0; + this.buttonSmilingFaceWithHeartEyes.FlatAppearance.CheckedBackColor = System.Drawing.SystemColors.ControlDarkDark; + this.buttonSmilingFaceWithHeartEyes.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.ControlDark; + this.buttonSmilingFaceWithHeartEyes.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.ButtonFace; + this.buttonSmilingFaceWithHeartEyes.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.buttonSmilingFaceWithHeartEyes.Location = new System.Drawing.Point(64, 32); + this.buttonSmilingFaceWithHeartEyes.Margin = new System.Windows.Forms.Padding(0); + this.buttonSmilingFaceWithHeartEyes.Name = "buttonSmilingFaceWithHeartEyes"; + this.buttonSmilingFaceWithHeartEyes.Size = new System.Drawing.Size(32, 32); + this.buttonSmilingFaceWithHeartEyes.TabIndex = 14; + this.buttonSmilingFaceWithHeartEyes.Tag = "😍"; + this.buttonSmilingFaceWithHeartEyes.UseVisualStyleBackColor = true; + this.buttonSmilingFaceWithHeartEyes.Click += new System.EventHandler(this.ButtonSmilingFaceWithHeartEyes_Click); + this.buttonSmilingFaceWithHeartEyes.Enter += new System.EventHandler(this.SetStatusbar_Enter); + this.buttonSmilingFaceWithHeartEyes.Leave += new System.EventHandler(this.ClearStatusbar_Leave); + this.buttonSmilingFaceWithHeartEyes.MouseEnter += new System.EventHandler(this.SetStatusbar_Enter); + this.buttonSmilingFaceWithHeartEyes.MouseLeave += new System.EventHandler(this.ClearStatusbar_Leave); + // // MainForm // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.ClientSize = new System.Drawing.Size(351, 351); + this.ClientSize = new System.Drawing.Size(404, 366); this.Controls.Add(this.toolStripContainer); this.DoubleBuffered = true; this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); @@ -564,6 +829,15 @@ private void InitializeComponent() private System.Windows.Forms.Button buttonWinkingFace; private System.Windows.Forms.Button buttonSmilingFaceWithSmilingEyes; private System.Windows.Forms.Button buttonSmilingFaceWithHalo; + private System.Windows.Forms.Button buttonSmilingFaceWithHearts; + private System.Windows.Forms.Button buttonSmilingFaceWithHeartEyes; + private System.Windows.Forms.Button buttonStarStruck; + private System.Windows.Forms.Button buttonFaceBlowingAKiss; + private System.Windows.Forms.Button buttonKissingFace; + private System.Windows.Forms.Button buttonSmilingFace; + private System.Windows.Forms.Button buttonKissingFaceWithClosedEyes; + private System.Windows.Forms.Button buttonKissingFaceWithSmilingEyes; + private System.Windows.Forms.Button buttonSmilingFaceWithTear; } } diff --git a/EmojiLib/MainForm.cs b/EmojiLib/MainForm.cs index f9c45b8..2a00c37 100644 --- a/EmojiLib/MainForm.cs +++ b/EmojiLib/MainForm.cs @@ -138,11 +138,13 @@ private void Exit_Click(object sender, EventArgs e) Close(); } - private void ShowEmojiInfo(string code, string shortName, Image appleVersion, Image googleVersion, Image facebookVersion, Image windowsVersion, Image twitterVersion, Image joypixelsVersion, Image samsungVersion) + private void ShowEmojiInfo(string code, string shortName, string group, string subGroup, object tag, Image appleVersion, Image googleVersion, Image facebookVersion, Image windowsVersion, Image twitterVersion, Image joypixelsVersion, Image samsungVersion) { EmojiInfoForm emojiInfo = new EmojiInfoForm(); emojiInfo.SetCode(code); emojiInfo.SetShortName(shortName); + emojiInfo.SetGroup(group); + emojiInfo.SetSubGroup(subGroup); emojiInfo.SetAppleImageVersion(appleVersion); emojiInfo.SetGoogleImageVersion(googleVersion); emojiInfo.SetFacebookImageVersion(facebookVersion); @@ -155,170 +157,331 @@ private void ShowEmojiInfo(string code, string shortName, Image appleVersion, Im private void ButtonGrinningFace_Click(object sender, EventArgs e) { - ShowEmojiInfo("U+1F600", "grinning face", - Properties.Resources.GrinningFaceApple, - Properties.Resources.GrinningFaceGoogle, - Properties.Resources.GrinningFaceFacebook, - Properties.Resources.GrinningFaceWindows, - Properties.Resources.GrinningFaceTwitter, - Properties.Resources.GrinningFaceJoyPixels, - Properties.Resources.GrinningFaceSamsung + ShowEmojiInfo("U+1F600", buttonGrinningFace.AccessibleName, + Properties.Resources.smileysAndEmotion, Properties.Resources.faceSmiling, + buttonGrinningFace.Tag, + FaceSmiling.GrinningFaceApple, + FaceSmiling.GrinningFaceGoogle, + FaceSmiling.GrinningFaceFacebook, + FaceSmiling.GrinningFaceWindows, + FaceSmiling.GrinningFaceTwitter, + FaceSmiling.GrinningFaceJoyPixels, + FaceSmiling.GrinningFaceSamsung ); } private void ButtonGrinningFaceWithBigEyes_Click(object sender, EventArgs e) { - ShowEmojiInfo("U+1F603", "grinning face with big eyes", - Properties.Resources.GrinningFaceWithBigEyesApple, - Properties.Resources.GrinningFaceWithBigEyesGoogle, - Properties.Resources.GrinningFaceWithBigEyesFacebook, - Properties.Resources.GrinningFaceWithBigEyesWindows, - Properties.Resources.GrinningFaceWithBigEyesTwitter, - Properties.Resources.GrinningFaceWithBigEyesJoyPixels, - Properties.Resources.GrinningFaceWithBigEyesSamsung + ShowEmojiInfo("U+1F603", buttonGrinningFaceWithBigEyes.AccessibleName, + Properties.Resources.smileysAndEmotion, Properties.Resources.faceSmiling, + buttonGrinningFaceWithBigEyes.Tag, + FaceSmiling.GrinningFaceWithBigEyesApple, + FaceSmiling.GrinningFaceWithBigEyesGoogle, + FaceSmiling.GrinningFaceWithBigEyesFacebook, + FaceSmiling.GrinningFaceWithBigEyesWindows, + FaceSmiling.GrinningFaceWithBigEyesTwitter, + FaceSmiling.GrinningFaceWithBigEyesJoyPixels, + FaceSmiling.GrinningFaceWithBigEyesSamsung ); } private void ButtonGrinningFaceWithSmilingEyes_Click(object sender, EventArgs e) { - ShowEmojiInfo("U+1F604", "grinning face with smiling eyes", - Properties.Resources.GrinningFaceWithSmilingEyesApple, - Properties.Resources.GrinningFaceWithSmilingEyesGoogle, - Properties.Resources.GrinningFaceWithSmilingEyesFacebook, - Properties.Resources.GrinningFaceWithSmilingEyesWindows, - Properties.Resources.GrinningFaceWithSmilingEyesTwitter, - Properties.Resources.GrinningFaceWithSmilingEyesJoyPixels, - Properties.Resources.GrinningFaceWithSmilingEyesSamsung + ShowEmojiInfo("U+1F604", buttonGrinningFaceWithSmilingEyes.AccessibleName, + Properties.Resources.smileysAndEmotion, Properties.Resources.faceSmiling, + buttonGrinningFaceWithSmilingEyes.Tag, + FaceSmiling.GrinningFaceWithSmilingEyesApple, + FaceSmiling.GrinningFaceWithSmilingEyesGoogle, + FaceSmiling.GrinningFaceWithSmilingEyesFacebook, + FaceSmiling.GrinningFaceWithSmilingEyesWindows, + FaceSmiling.GrinningFaceWithSmilingEyesTwitter, + FaceSmiling.GrinningFaceWithSmilingEyesJoyPixels, + FaceSmiling.GrinningFaceWithSmilingEyesSamsung ); } private void ButtonBeamingFaceWithSmilingEyes_Click(object sender, EventArgs e) { - ShowEmojiInfo("U+1F601", "beaming face with smiling eyes", - Properties.Resources.BeamingFaceWithSmilingEyesApple, - Properties.Resources.BeamingFaceWithSmilingEyesGoogle, - Properties.Resources.BeamingFaceWithSmilingEyesFacebook, - Properties.Resources.BeamingFaceWithSmilingEyesWindows, - Properties.Resources.BeamingFaceWithSmilingEyesTwitter, - Properties.Resources.BeamingFaceWithSmilingEyesJoyPixels, - Properties.Resources.BeamingFaceWithSmilingEyesSamsung + ShowEmojiInfo("U+1F601", buttonBeamingFaceWithSmilingEyes.AccessibleName, + Properties.Resources.smileysAndEmotion, Properties.Resources.faceSmiling, + buttonBeamingFaceWithSmilingEyes.Tag, + FaceSmiling.BeamingFaceWithSmilingEyesApple, + FaceSmiling.BeamingFaceWithSmilingEyesGoogle, + FaceSmiling.BeamingFaceWithSmilingEyesFacebook, + FaceSmiling.BeamingFaceWithSmilingEyesWindows, + FaceSmiling.BeamingFaceWithSmilingEyesTwitter, + FaceSmiling.BeamingFaceWithSmilingEyesJoyPixels, + FaceSmiling.BeamingFaceWithSmilingEyesSamsung ); } private void ButtonGrinningSquintingFace_Click(object sender, EventArgs e) { - ShowEmojiInfo("U+1F606", "grinning squinting face", - Properties.Resources.GrinningSquintingFaceApple, - Properties.Resources.GrinningSquintingFaceGoogle, - Properties.Resources.GrinningSquintingFaceFacebook, - Properties.Resources.GrinningSquintingFaceWindows, - Properties.Resources.GrinningSquintingFaceTwitter, - Properties.Resources.GrinningSquintingFaceJoyPixels, - Properties.Resources.GrinningSquintingFaceSamsung + ShowEmojiInfo("U+1F606", buttonGrinningSquintingFace.AccessibleName, + Properties.Resources.smileysAndEmotion, Properties.Resources.faceSmiling, + buttonGrinningSquintingFace.Tag, + FaceSmiling.GrinningSquintingFaceApple, + FaceSmiling.GrinningSquintingFaceGoogle, + FaceSmiling.GrinningSquintingFaceFacebook, + FaceSmiling.GrinningSquintingFaceWindows, + FaceSmiling.GrinningSquintingFaceTwitter, + FaceSmiling.GrinningSquintingFaceJoyPixels, + FaceSmiling.GrinningSquintingFaceSamsung ); } private void ButtonGrinningFaceWithSweat_Click(object sender, EventArgs e) { - ShowEmojiInfo("U+1F605", "grinning face with sweat", - Properties.Resources.GrinningFaceWithSweatApple, - Properties.Resources.GrinningFaceWithSweatGoogle, - Properties.Resources.GrinningFaceWithSweatFacebook, - Properties.Resources.GrinningFaceWithSweatWindows, - Properties.Resources.GrinningFaceWithSweatTwitter, - Properties.Resources.GrinningFaceWithSweatJoyPixels, - Properties.Resources.GrinningFaceWithSweatSamsung + ShowEmojiInfo("U+1F605", buttonGrinningFaceWithSweat.AccessibleName, + Properties.Resources.smileysAndEmotion, Properties.Resources.faceSmiling, + buttonGrinningFaceWithSweat.Tag, + FaceSmiling.GrinningFaceWithSweatApple, + FaceSmiling.GrinningFaceWithSweatGoogle, + FaceSmiling.GrinningFaceWithSweatFacebook, + FaceSmiling.GrinningFaceWithSweatWindows, + FaceSmiling.GrinningFaceWithSweatTwitter, + FaceSmiling.GrinningFaceWithSweatJoyPixels, + FaceSmiling.GrinningFaceWithSweatSamsung ); } private void ButtonRollingOnTheFloorLaughing_Click(object sender, EventArgs e) { - ShowEmojiInfo("U+1F923", "rolling on the floor laughing", - Properties.Resources.RollingOnTheFloorLaughingApple, - Properties.Resources.RollingOnTheFloorLaughingGoogle, - Properties.Resources.RollingOnTheFloorLaughingFacebook, - Properties.Resources.RollingOnTheFloorLaughingWindows, - Properties.Resources.RollingOnTheFloorLaughingTwitter, - Properties.Resources.RollingOnTheFloorLaughingJoyPixels, - Properties.Resources.RollingOnTheFloorLaughingSamsung + ShowEmojiInfo("U+1F923", buttonRollingOnTheFloorLaughing.AccessibleName, + Properties.Resources.smileysAndEmotion, Properties.Resources.faceSmiling, + buttonRollingOnTheFloorLaughing.Tag, + FaceSmiling.RollingOnTheFloorLaughingApple, + FaceSmiling.RollingOnTheFloorLaughingGoogle, + FaceSmiling.RollingOnTheFloorLaughingFacebook, + FaceSmiling.RollingOnTheFloorLaughingWindows, + FaceSmiling.RollingOnTheFloorLaughingTwitter, + FaceSmiling.RollingOnTheFloorLaughingJoyPixels, + FaceSmiling.RollingOnTheFloorLaughingSamsung ); } private void ButtonFaceWithTearsOfJoy_Click(object sender, EventArgs e) { - ShowEmojiInfo("U+1F602", "face with tears of joy", - Properties.Resources.FaceWithTearsOfJoyApple, - Properties.Resources.FaceWithTearsOfJoyGoogle, - Properties.Resources.FaceWithTearsOfJoyFacebook, - Properties.Resources.FaceWithTearsOfJoyWindows, - Properties.Resources.FaceWithTearsOfJoyTwitter, - Properties.Resources.FaceWithTearsOfJoyJoyPixels, - Properties.Resources.FaceWithTearsOfJoySamsung + ShowEmojiInfo("U+1F602", buttonFaceWithTearsOfJoy.AccessibleName, + Properties.Resources.smileysAndEmotion, Properties.Resources.faceSmiling, + buttonFaceWithTearsOfJoy.Tag, + FaceSmiling.FaceWithTearsOfJoyApple, + FaceSmiling.FaceWithTearsOfJoyGoogle, + FaceSmiling.FaceWithTearsOfJoyFacebook, + FaceSmiling.FaceWithTearsOfJoyWindows, + FaceSmiling.FaceWithTearsOfJoyTwitter, + FaceSmiling.FaceWithTearsOfJoyJoyPixels, + FaceSmiling.FaceWithTearsOfJoySamsung ); } private void ButtonSlightlySmilingFace_Click(object sender, EventArgs e) { - ShowEmojiInfo("U+1F642", "slightly smiling face", - Properties.Resources.SlightlySmilingFaceApple, - Properties.Resources.SlightlySmilingFaceGoogle, - Properties.Resources.SlightlySmilingFaceFacebook, - Properties.Resources.SlightlySmilingFaceWindows, - Properties.Resources.SlightlySmilingFaceTwitter, - Properties.Resources.SlightlySmilingFaceJoyPixels, - Properties.Resources.SlightlySmilingFaceSamsung + ShowEmojiInfo("U+1F642", buttonSlightlySmilingFace.AccessibleName, + Properties.Resources.smileysAndEmotion, Properties.Resources.faceSmiling, + buttonSlightlySmilingFace.Tag, + FaceSmiling.SlightlySmilingFaceApple, + FaceSmiling.SlightlySmilingFaceGoogle, + FaceSmiling.SlightlySmilingFaceFacebook, + FaceSmiling.SlightlySmilingFaceWindows, + FaceSmiling.SlightlySmilingFaceTwitter, + FaceSmiling.SlightlySmilingFaceJoyPixels, + FaceSmiling.SlightlySmilingFaceSamsung ); } private void ButtonUpsideDownFace_Click(object sender, EventArgs e) { - ShowEmojiInfo("U+1F643", "upside-down face", - Properties.Resources.UpsideDownFaceApple, - Properties.Resources.UpsideDownFaceGoogle, - Properties.Resources.UpsideDownFaceFacebook, - Properties.Resources.UpsideDownFaceWindows, - Properties.Resources.UpsideDownFaceTwitter, - Properties.Resources.UpsideDownFaceJoyPixels, - Properties.Resources.UpsideDownFaceSamsung + ShowEmojiInfo("U+1F643", buttonUpsideDownFace.AccessibleName, + Properties.Resources.smileysAndEmotion, Properties.Resources.faceSmiling, + buttonUpsideDownFace.Tag, + FaceSmiling.UpsideDownFaceApple, + FaceSmiling.UpsideDownFaceGoogle, + FaceSmiling.UpsideDownFaceFacebook, + FaceSmiling.UpsideDownFaceWindows, + FaceSmiling.UpsideDownFaceTwitter, + FaceSmiling.UpsideDownFaceJoyPixels, + FaceSmiling.UpsideDownFaceSamsung ); } private void ButtonWinkingFace_Click(object sender, EventArgs e) { - ShowEmojiInfo("U+1F609", "winking face", - Properties.Resources.WinkingFaceApple, - Properties.Resources.WinkingFaceGoogle, - Properties.Resources.WinkingFaceFacebook, - Properties.Resources.WinkingFaceWindows, - Properties.Resources.WinkingFaceTwitter, - Properties.Resources.WinkingFaceJoyPixels, - Properties.Resources.WinkingFaceSamsung + ShowEmojiInfo("U+1F609", buttonWinkingFace.AccessibleName, + Properties.Resources.smileysAndEmotion, Properties.Resources.faceSmiling, + buttonWinkingFace.Tag, + FaceSmiling.WinkingFaceApple, + FaceSmiling.WinkingFaceGoogle, + FaceSmiling.WinkingFaceFacebook, + FaceSmiling.WinkingFaceWindows, + FaceSmiling.WinkingFaceTwitter, + FaceSmiling.WinkingFaceJoyPixels, + FaceSmiling.WinkingFaceSamsung ); } private void ButtonSmilingFaceWithSmilingEyes_Click(object sender, EventArgs e) { - ShowEmojiInfo("U+1F60A", "smiling face with smiling eyes", - Properties.Resources.SmilingFaceWithSmilingEyesApple, - Properties.Resources.SmilingFaceWithSmilingEyesGoogle, - Properties.Resources.SmilingFaceWithSmilingEyesFacebook, - Properties.Resources.SmilingFaceWithSmilingEyesWindows, - Properties.Resources.SmilingFaceWithSmilingEyesTwitter, - Properties.Resources.SmilingFaceWithSmilingEyesJoyPixels, - Properties.Resources.SmilingFaceWithSmilingEyesSamsung + ShowEmojiInfo("U+1F60A", buttonSmilingFaceWithSmilingEyes.AccessibleName, + Properties.Resources.smileysAndEmotion, Properties.Resources.faceSmiling, + buttonSmilingFaceWithSmilingEyes.Tag, + FaceSmiling.SmilingFaceWithSmilingEyesApple, + FaceSmiling.SmilingFaceWithSmilingEyesGoogle, + FaceSmiling.SmilingFaceWithSmilingEyesFacebook, + FaceSmiling.SmilingFaceWithSmilingEyesWindows, + FaceSmiling.SmilingFaceWithSmilingEyesTwitter, + FaceSmiling.SmilingFaceWithSmilingEyesJoyPixels, + FaceSmiling.SmilingFaceWithSmilingEyesSamsung ); } private void ButtonSmilingFaceWithHalo_Click(object sender, EventArgs e) { - ShowEmojiInfo("U+1F607", "smiling face with halo", - Properties.Resources.SmilingFaceWithHaloApple, - Properties.Resources.SmilingFaceWithHaloGoogle, - Properties.Resources.SmilingFaceWithHaloFacebook, - Properties.Resources.SmilingFaceWithHaloWindows, - Properties.Resources.SmilingFaceWithHaloTwitter, - Properties.Resources.SmilingFaceWithHaloJoyPixels, - Properties.Resources.SmilingFaceWithHaloSamsung + ShowEmojiInfo("U+1F607", buttonSmilingFaceWithHalo.AccessibleName, + Properties.Resources.smileysAndEmotion, Properties.Resources.faceSmiling, + buttonSmilingFaceWithHalo.Tag, + FaceSmiling.SmilingFaceWithHaloApple, + FaceSmiling.SmilingFaceWithHaloGoogle, + FaceSmiling.SmilingFaceWithHaloFacebook, + FaceSmiling.SmilingFaceWithHaloWindows, + FaceSmiling.SmilingFaceWithHaloTwitter, + FaceSmiling.SmilingFaceWithHaloJoyPixels, + FaceSmiling.SmilingFaceWithHaloSamsung + ); + } + + private void ButtonSmilingFaceWithHearts_Click(object sender, EventArgs e) + { + ShowEmojiInfo("U+1F970", buttonSmilingFaceWithHearts.AccessibleName, + Properties.Resources.smileysAndEmotion, Properties.Resources.faceAffection, + buttonSmilingFaceWithHearts.Tag, + FaceAffection.SmilingFaceWithHeartsApple, + FaceAffection.SmilingFaceWithHeartsGoogle, + FaceAffection.SmilingFaceWithHeartsFacebook, + FaceAffection.SmilingFaceWithHeartsWindows, + FaceAffection.SmilingFaceWithHeartsTwitter, + FaceAffection.SmilingFaceWithHeartsJoyPixels, + FaceAffection.SmilingFaceWithHeartsSamsung + ); + } + + private void ButtonSmilingFaceWithHeartEyes_Click(object sender, EventArgs e) + { + ShowEmojiInfo("U+1F60D", buttonSmilingFaceWithHeartEyes.AccessibleName, + Properties.Resources.smileysAndEmotion, Properties.Resources.faceAffection, + buttonSmilingFaceWithHeartEyes.Tag, + FaceAffection.SmilingFaceWithHeartEyesApple, + FaceAffection.SmilingFaceWithHeartEyesGoogle, + FaceAffection.SmilingFaceWithHeartEyesFacebook, + FaceAffection.SmilingFaceWithHeartEyesWindows, + FaceAffection.SmilingFaceWithHeartEyesTwitter, + FaceAffection.SmilingFaceWithHeartEyesJoyPixels, + FaceAffection.SmilingFaceWithHeartEyesSamsung + ); + } + + private void ButtonStarStruck_Click(object sender, EventArgs e) + { + ShowEmojiInfo("U+1F929", buttonStarStruck.AccessibleName, + Properties.Resources.smileysAndEmotion, Properties.Resources.faceAffection, + buttonStarStruck.Tag, + FaceAffection.StarStruckApple, + FaceAffection.StarStruckGoogle, + FaceAffection.StarStruckFacebook, + FaceAffection.StarStruckWindows, + FaceAffection.StarStruckTwitter, + FaceAffection.StarStruckJoyPixels, + FaceAffection.StarStruckSamsung + ); + } + + private void ButtonFaceBlowingAKiss_Click(object sender, EventArgs e) + { + ShowEmojiInfo("U+1F618", buttonFaceBlowingAKiss.AccessibleName, + Properties.Resources.smileysAndEmotion, Properties.Resources.faceAffection, + buttonFaceBlowingAKiss.Tag, + FaceAffection.FaceBlowingAKissApple, + FaceAffection.FaceBlowingAKissGoogle, + FaceAffection.FaceBlowingAKissFacebook, + FaceAffection.FaceBlowingAKissWindows, + FaceAffection.FaceBlowingAKissTwitter, + FaceAffection.FaceBlowingAKissJoyPixels, + FaceAffection.FaceBlowingAKissSamsung + ); + } + + private void ButtonKissingFace_Click(object sender, EventArgs e) + { + ShowEmojiInfo("U+1F617", buttonKissingFace.AccessibleName, + Properties.Resources.smileysAndEmotion, Properties.Resources.faceAffection, + buttonKissingFace.Tag, + FaceAffection.KissingFaceApple, + FaceAffection.KissingFaceGoogle, + FaceAffection.KissingFaceFacebook, + FaceAffection.KissingFaceWindows, + FaceAffection.KissingFaceTwitter, + FaceAffection.KissingFaceJoyPixels, + FaceAffection.KissingFaceSamsung + ); + } + + private void ButtonSmilingFace_Click(object sender, EventArgs e) + { + ShowEmojiInfo("U+263A", buttonSmilingFace.AccessibleName, + Properties.Resources.smileysAndEmotion, Properties.Resources.faceAffection, + buttonSmilingFace.Tag, + FaceAffection.SmilingFaceApple, + FaceAffection.SmilingFaceGoogle, + FaceAffection.SmilingFaceFacebook, + FaceAffection.SmilingFaceWindows, + FaceAffection.SmilingFaceTwitter, + FaceAffection.SmilingFaceJoyPixels, + FaceAffection.SmilingFaceSamsung + ); + } + + private void ButtonKissingFaceWithClosedEyes_Click(object sender, EventArgs e) + { + ShowEmojiInfo("U+1F61A", buttonKissingFaceWithClosedEyes.AccessibleName, + Properties.Resources.smileysAndEmotion, Properties.Resources.faceAffection, + buttonKissingFaceWithClosedEyes.Tag, + FaceAffection.KissingFaceWithClosedEyesApple, + FaceAffection.KissingFaceWithClosedEyesGoogle, + FaceAffection.KissingFaceWithClosedEyesFacebook, + FaceAffection.KissingFaceWithClosedEyesWindows, + FaceAffection.KissingFaceWithClosedEyesTwitter, + FaceAffection.KissingFaceWithClosedEyesJoyPixels, + FaceAffection.KissingFaceWithClosedEyesSamsung + ); + } + + private void ButtonKissingFaceWithSmilingEyes_Click(object sender, EventArgs e) + { + ShowEmojiInfo("U+1F619", buttonKissingFaceWithSmilingEyes.AccessibleName, + Properties.Resources.smileysAndEmotion, Properties.Resources.faceAffection, + buttonKissingFaceWithSmilingEyes.Tag, + FaceAffection.KissingFaceWithSmilingEyesApple, + FaceAffection.KissingFaceWithSmilingEyesGoogle, + FaceAffection.KissingFaceWithSmilingEyesFacebook, + FaceAffection.KissingFaceWithSmilingEyesWindows, + FaceAffection.KissingFaceWithSmilingEyesTwitter, + FaceAffection.KissingFaceWithSmilingEyesJoyPixels, + FaceAffection.KissingFaceWithSmilingEyesSamsung + ); + } + + private void ButtonSmilingFaceWithTear_Click(object sender, EventArgs e) + { + ShowEmojiInfo("U+1F972", buttonSmilingFaceWithTear.AccessibleName, + Properties.Resources.smileysAndEmotion, Properties.Resources.faceAffection, + buttonSmilingFaceWithTear.Tag, + null, + FaceAffection.SmilingFaceWithTearGoogle, + null, + null, + null, + FaceAffection.SmilingFaceWithTearJoyPixels, + null ); } } diff --git a/EmojiLib/MainForm.resx b/EmojiLib/MainForm.resx index d50efb9..caf1889 100644 --- a/EmojiLib/MainForm.resx +++ b/EmojiLib/MainForm.resx @@ -117,474 +117,19 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 229, 17 + 17, 17 127, 17 - - 229, 17 - - - 229, 17 - - - - - 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 - gg== - - - - - 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 - +xf9BDGAsFHCmwAAAABJRU5ErkJggg== - - - - - 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 - QmCC - - - - - iVBORw0KGgoAAAANSUhEUgAAAEgAAABICAYAAABV7bNHAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 - YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAADAlJREFUeF7tnF2o - ZmUVx08WBOFlNk0NjZlEHxdRCE6BBKZ5UeEY3gRlXxNBp8imi5C8MBKDEmm60QaSqLzw4kRigdHHxRQW - REHThRdmSZQMhDNp2WRJu/f3nOf/tvba6/nY7/ueA8IMbM575rxf+7f/67/Wej72C667+d1bF/5VCADo - wlFmsK9w/nTX4YufPHHRoSdPbB1ZHNtnT2zdtjhO5uOBR+48+OBXPnfXPdceO3uvjncc+9stH/rkr9/M - 63j9fl/MPQe0C2UJ5IHF49OL4x+LY7DHQ3e8Z/jE8QeHaz/21OS4YfuP//3SrV/8NwCBuvt+Fx3aD1h7 - Bigr5ejihIByxgM5d/fW8NS9Lx6evv9FA3CAAJwbP/uvySFoQMrvA+CHBWsvlbVxQFkx25yAVQpAgHH+ - B5cM//nl4eG5310+PPfY64fHfnX9CM4Hbx0GfwANSEAEpoN9Jl+Eo3uhqo0BymCkmGUIoRKgCMjw5zcO - OgB0+5d30skDIYKj/xMkwvDsTy9LsIFuYCVVLY6jm1TURgBx5bLcl6HECTz7k0NJJRaKffyLhz69VE8N - joWEilAd7wN04HMRLKisqCOb8Ki1AWGY+QulL8mXbYFJJzdDPQKkMAOsVyKf6UARegtDX8/M1wKEnHNW - SnBQDVc1UoxX0lz1AIkwQ0EWkN6Xn1KUDb111bQyoAznUcDwhZLPVMJpVe+xoScFKcSslyVA+SAJcLFM - 2FFaHF0l5FYClOEkvwEO8rYA/nr6DcMffv66gZ+Rmmzm6vEeqQdAmLR935GCBIkMuTickfN9Z0OaDcjD - 4WrZK3nfVy8brrvqlcMVbzo8fP5Tl4aQvvOtO7syl89ghNdbrnzv5H2tepQt089s4ibkZkOaBShXxMg1 - KcfCAdJvvv/aBOallxwYXnbg5cPBgweHr33h1RNDJbW/9V3fSAcnXVKRikaFFnB4T46bbnzVEv4IUPYi - AeI7Ev6rQuoGlFM5VXEYVgBCPToBfgKKE7HeRHjZE+Wxh2TBAAeAhJZ9bx5LoRMFZfUAR4eDxEXuKgO6 - AFF45TonGR8fFnkLgKQcASLcrGegKH+iKMn6jFoLwH3vx+eHZ54+O+zs7ExeJ4UuAeXqXOrhpwDhk9a4 - d7NbuwToAmR9J6XyQrb64bcvH15z6aHliQCLkCP0AIpxA8xC5CQBZJtU1ELfldJ5/hcB4n34PD53BClQ - EIB8rcRFb2W2JqDcdFLCp0LM1jkeFEoBAKEllegEohDUc+RFeBNQlJ6f+dlnloBOnToVKghIfCbwVQtZ - /0FBgsPP8zuv8H5UDbUmIBtaPp1HYYYv2BDiBAg9wfPq4eTIangTJ8gJyVCffeSbTUD6LD43Ci0LCDgc - /7zvwPIiEGq13q0KKGetVAzWQsuCIpx8mOE7QIrCj/Cwr+ciSK1/f+J0NyCFslfPCNDCOwXIZDWa3GJ9 - VAUk9UQp3YaXfRwphUzG4dUDOB+mJAAAcZUxZ/0rhZhVq1WRNecUWhmOAPWqqAjIq6fUkfsWgt/5ooIh - I/XqsXWMLTSVac5995olHB70ALIqKgECjA5XG4VeVAPEoFdYELZ6Lp/NuMoWmM1sI8CL7KMvbQ26FxCf - Qyjb+kcGbf3HQlJCKGW0EJDNXD3eU8pmPqQUDlFoAapk0AAq1UFRYcqAWpS9bHgFKloUj9O6qAAoDWOk - UUHfTpS8x3fWhJlN91JRFFp6rfyHcsIadC8gW3eVzNmqh8dmDCk06xAQ0zDLuqdzCMN7VKto9M8HvPUf - a9AAohTwFXj0u8qKXkDOrCeF4wRQDq/UkPqWIvKekh/5qhmTLoWWhk91Nb3/AIjKuhcQ6vXFYRRePsyi - migANA2vXjA+/JTNuKqlrCUlccVlmLZAVCq76QPvn4RsBEwNMj5USu+VMFvUfGMfmgBS7ePbip40H4UZ - J1HKWvb58h+ymPcfwq0HkEqKr191cSoILSAPxf7ufGiU7keActeehjTwgxKUklF7pRFmKIfUWwPc8h+A - MSxSyopSEm0LcB6//iWzABkfmhj1CFDJf1p1Tw0klbV//eT3Sv2jGggV1jzoo2+7cnjiI1cPv3/7VgLE - Sas5rfmPlFSqhxygNIeexpp9eo8qZpvaa39vKVH+k8a3TYNaG+pQ2YD5A+cvxz8+AqQJyx44QFKB6gtG - D2hZ//jpm16jjtJ3CaT+X+nd918CRAbzNZXUJDjnbjm+KUAn7RiRB7RsL0rzWy0v6TFz72G19C6DjvyH - sPvRh983AGdfAI0ymCsQWxW0VQlDHhh0D6xWesegAeEBEVoWTggoj/3UMlhQC5UVpAq6p/+KPAeIZCxN - +TTNefF8O7zh07taDDsSIO+xoRUpiBPv9R/nQfMBtU4UWGQrCkNOBr9IYzONNoW/K7z88EbNfyL1AIns - ZbPYvgFqhYrqHRlnBCiCVeveAYT/+PqH947UYwGdufmFST0rAhr1YyOTroVYKYvRlPqZipqC7PvUuvdS - eHERbnvn1UtjVniR5lEPhwD1eI86ejN4tl3MYnM8iJCS33gD7Qmx3vDqMWdr0ABKjfYMg+6upGtZzIaZ - 9Rs7WlgLMR+mPdnLh5fGe1CLlKOf6/iP6cUoksu92OKPzTqIFE5/VSv7Swqy4aXiMBocK43/ACjyn3XC - yw2aTUYVw0qaeIwKxchv7ARhr4J4757iMBqRjPxHPdiq4WXajJN+jqyrF7P1TVTR+mmdlgdp7qvWe/na - R3P9EaB1wmvWiGLu5tNEoR1N1PBpCY7SvP7eymK13qs29sP7e0BWPXOzlwuvcO1QczwI9aCQqFnUnDim - bduBGiBb+0RDq8x/Reqxzak1aKue1MHPzF4mvffNavgRRU7ez4pqwYBWbWjhlE6iNMRKJqvVPq2RQ2/S - kXpWBUSJE630iMakR2NCKEgLEviCqMMPoUYTheEYtDHnqLVg7qumHpvmyVzrek9ryidtFfPU/KSh7bMI - KU5cylFt4xdFlRQkc8bj/MBYbVjDlhTqwwRnmbnMwoTeCtqE18OlFR6leTF21KRRNqV7lBQNnwLJTxIC - iCKPuSw7DCJzJgxWnfcCFuPOvq2Y23u5Reej9qLYaugPeeFCGnotLbfTiSePWkzJ+MJRi6IEyVbO0bx7 - NOZTmhhEyaOufT31hOYsFsXFC+rLSkWjALHwiSVz0cJMu3XApnY77tMyZg8JDyTMUJG2PWhpS29oWfW0 - luG1lr9MVOS7ei0KZ8GllvZq5060jcmrB4XVjDlSEWqjUe6dGPTgWqm9GWI8Ic+RpTn6aAGVFMSawtp2 - JruNiczlV431hpaaYgund2KwMklY9J5miPGEniV4PavmtYKVRZoyZ0DhXa3JQFtb4T2UFHPm3Qtwhtba - xC5AGRIdfloKE21Y6QFk10Br3XNk7CVT5v9VXvSu+4n8qGdFmS97mqtcbail+sVtXJm7Y5CQY56r13cI - KeosLYqas6ylsNyOi90MrW4F7aoobeVOa6W9H/UCsirCzEvjSYScKmbqK4pSu2J+FUAua02GNGqLyZsK - crXRZCPLKoC0a8f6i1Zm4DMWTGtReKv3cgXh4iK3tx90ZbGIqjVt7RObA8iriDAjhPAXoGDAyxXzZtdO - uCizozicwunbwLIyIJ/ZgLQqIIpLzcCqhaHGWh55v0UxvBrTOg5O9+6e2SZdUVLypLmAUBFpn9f56ewW - oFF6ryjIbRfne3Ztfeoa7mjtfvm/J6Wt4CfJSD373v3uQQtoBCbYENezKDyY30q1zjpwwuGOXkCqttPN - SDpuDOAB+U6/pB6/5yuqngknf5OB3V5yniFvVEF6M+7Mcs2xc7/theR3LtfU0+M/DgyThmmH86buvtCd - 5mvKWgDaVjtRu8WEnoN6VvWfYLeOVsdyI4GNqGatLBaB4mql+/3kW9vU7uCC92j9IN5i93iVtlLS4jBc - EoQScDKYrSObUs3GAekNUZLCzd8HSPcA0mJJVeWECCeuW+UIhGAEIQQU2oXTz8vb42RP2o7vIpXuOsUQ - CqmXsabJjZYsQPOY5z1KVspQ9uRWOHti0nOyni0RclXOolF/qy7dsovbdzE2znPSHaf2IoRa338jJt36 - kOfz3y8AatwF8H++VqlXuaXffAAAAABJRU5ErkJggg== - - - - - iVBORw0KGgoAAAANSUhEUgAAAEgAAABICAYAAABV7bNHAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 - YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAACmpJREFUeF7tnEmI - XUUUhp/DRtxJMGZhxAGcUMhC3YgiiSiOEBDFhW6iLgQ1IihOCAquJLagLkTBgJqdC1Ej4kIQF1k4ICLE - CSG4EJJ2xA4K1/vVq/96br0aX3enI3aguK/zajj113+GOrfqHXPVfddN1v9lEACg9ZLGYB2cAkHWATqa - Afr+mTNPOLgwOSlXqENZKzNwxBjkwTjj0MJkaw/Izr7s6j+/1T/39WV/ouyjTl9206Z/3tI/LwLQIwXY - qgLkQWFCTA4wAOLgwWcn3VxlYbLU9/OjBxWAAeyM1QRrVQBCaAPKCJDF5yfdLy8f58qve47v/njnRFeW - PtoYffId9ahP2xGwPWACC2athiquKEACxjNlSZNhYgIDIP764rTu72/P6boD5xcL9VRoJyBnAOuZiSqi - wisJ1IoA5I0sdmV/DJQWQFpAs2ANzPJAwaiVUL1lA8SKefviGCO2IHyJJfb71GcLWKw//o8FQBVhlQEK - e8eiLcugzw2QN8AY3x8lFGpUA0wNS0rAxPoQUIOtmhp1PODchnwugLxK7eqfjjWsHCuYY0yOISlmtAKp - +gDFYhk2ES5snUflmgFiNdyqeFeNIAiUmkxJzcJ2NfVrwKYOi2bYtJ+woBWkJoBgjrM3BXBSk6yxMynV - qgEuBjYqL5AwB60gVQPkwRmYE1OpeSbBpFqBExDheKnxAWkw4L2nbVG3KoC8QR5sTsne1KpNCdBWL5ez - WZZJPrisCgOqAPIhvYuIsTk1E6OO4hQAtXaqRgVzk5W3UgReC2Sgbmx9iiFAESAfHe+Tt4oZZCugjUns - 1oDJ1HqlkurQlw1I5UVzzkKqPLSdblN2lox2FqBBtXwAyArkvNVMsObbMYESsCVWWrtDX7G9WW24MYQA - 081zVtWyAPnUhFOtnN2ZiTsKEXUNGKU6UmEmG25iw9Aj7At5jWfbndu7JQGikeKdHAO0muEerDaiLqlT - yculgErJHFE1NrnJIDIJUMiemGohnN3/8DkFTIkRtfYpp+Ijd+4j/JRdsgsLEVIsSgLU6+aunGFGUFFV - G9SSkaxhQ22gmAJc6o5MlJxMMtg+CRe1RVGAvOdyqYvQ+4QuVTma5TBkOW1TzIZNoVPJ2aKUR4sC5OOe - JVYg57liAeGn753dvfbcmd3O2za7svDI6d3br57V/fT5hdVuvsQ0+qJP+rbjMHYL2NQ1Ho3c+ExclGLQ - oF61AyI0wp537rndpk2buo0bT+k2bDjZPfl7+5Wb3aRy24rSWHxPH/RFnxQ7BmMjQ7gYuX4hAJqSUrMZ - gHwqwwWGJfUSg1g5K7SEt08mwgRY9RIQKbWBmfQh0GPjaDGQqSbDYF1+TM1iAF2kJFiNeok5JaHFKp5M - NJcQi7EM5tSAo3FYsBomWTWLebMZgKz9qfFKTDZcSQsWn8O/Y8Ln3DwTpU24CGG/oRywtSZ8MNuPGTsU - Y9DOmHuPrWpKcCYDcDKkl18wtUl2Ai0soh/blr7oUw5ATiGsk1qIUMUDdz9Kz8YAcga6tGv/4sNbuzdf - um+G9ggdUju0Udij2tWFAdSljVWf0MYwJvUEEiCiksiIrDm7h6a4nQAvNYO92Qggu70AoJCeCMGATzz5 - 1uGb7/m627bj5+7ibU8NQuFBUoJYkFj9mBHNtaVNyQDT3oKEbMiIrMiM7LFwYzDU0yT/aNsxAsimVOXB - GJQVeOHFF9xADEi5/u7fXeH/LrvpA1eol/Mcil9yHiaWLUQG2tTEU8ggeSQjT8mNvMzFsioAaJS3TgIE - g1LA3PTA4e72R7uhMDgrVOM1Ui68xpimwLNtkQFZkMnKiMwpoGjj9pRTBuUBIh358f23jtSIwUJQNLgG - ZVVaJlkTo8wTL9EvsojlFiR9Zi6WUQDKnIsA3XjXD1da+8LkU8BYgKBtSb1WArxc7GS/QxZkQv4YQBYo - LbDs1PMPPz7KMg4qtnXHzzu27Vj8RsiXgGEQrQSgzrvaua1HjUqlVFZqVjuPf9Vv8RuwUCrWAWTBqekw - VC+8gxLoGDwVJq/SyqAS4LZvO6ZeFCBTTs1izIqBNOlZs0XMaQGHAeRCP3l28+jcTngGCINvzwLpTJBA - VWoi9rR19Vn96dxQLD+NTPK6OTULv/vXPqFNi1smV9/x09OtSIfq9evb27tfXtngElQqc50gMyfPZg5L - FU6l2bGRBZla1MwCJSaBDQxydqeVPYoxvvzq2+6P3xa7vw99OZQ/P1voVBDUloN7zu9sYTK5EtYP+7Nj - WRmQCdkkZwuLpB1g0wM0DfpaOhANaYMgtf+oa4udUO5z2K52POppsq0EUBgwF0CiIKE8MYdY1CL4atYV - e5BN241WEmiOzQCJPYTzyh7yvPPOu9YULAsKsljZkLXVjBgGtdkgy54wY8jfCHbNtTc6sPbufW/V2CVA - GIOxGFOg2DQsu/pWFllP1uTFYuxJpT2VYhVgjz3w4GGBJuCkmqGNsX9Th0IbgUFfAoT+LSAxeajTwqLQ - ixEHvVsy1gKH2ALhUsCESSubWNdEEFjA0VepqL59EaBMZSnVqzaMobgoZ7BNsNhj0sdBRNLswew2Q3sw - 7YDtfoUIlSAsliWsAU1JLwkOaKUSpm1rxwkzmMgukOT+mWM4T7AAE3eXTnsOH1GDmouLbNFGjk2gol2b - mJpHYJv5S7UvsaN2XBJ5S3tPdbIzB7shH8/VRc+OOaO9mP4go8iX7M2IIpWFgzEawD4ZuFbItagHwOSl - CTbdwnqQeDInGIU9Y65+P7olfEefPf5CflavgNzBBAYwhYGXA5K1I7nP84KLGRgWN5B92cdfYJU9QKVE - /kqAJNVhAqzw/Vdc2j13w7Wjwv/xnXLRrepWA46/UzL/ASpAskfwQP3P16dU5cnumid7KTEpNxG9aWDy - b2y/oiOLd+ihe7OFOtSljeKcHKOkVmIO8lmZzWnX5R/Bk22yhzgFkgbWE5Aw3CnvxuSYZA0oKdBomwJK - C8NCAU4on1tIc5fDX1FY/iFOgeQvhgwXVqIC9CAhnN7Ty64AGiwosaX2e/oKVU8vElmoFDjm1D1vUKvu - bxRPuRqAOGU/HCRPMUkqJzYh+PuXTLrvth7ryoHbTnalFgzVUzv1Q5/0rRMdKdaIOcGVhOp7G9UAeXs0 - A1JqxRAMocOJaYIhYKoXPsP69m/qMkZOhlG2sfGU/ShQLJ0XnmGSv+mj9GqM1tY+4QVLYOXAsIC6swMJ - VbJjhvfHWq4gRAPFFpDcGcYGkKzgonuMLfyfVUXVsaDUgDNK2fbv+uYBZy4G2ajbG+7RNUxWLcemlAGN - pV1VV+FEql8B5voY3zpcmwt1lmk+2ubew+gS7zxAtQIbqlPAmrW9khmAxK8ncD/UHd0L71GUVKIVmIEx - /np5AAxHWFD/qts8JbPS5MVKnfmoewpUwCj7rsyqRC04gwrGQPFnewhDsDVH3bVwC5x+ggJGcTvRXvq1 - zNJ7LLlh/diAfdp3XdH3bf+1HxYIGbb+0xQNP86U+HETrmz/f3/cpGSz1n8ep4FhJTDX6vsV9WJrNYnV - HHcdoKP5J7pWc+VXqu9/AOnJejLtCNaSAAAAAElFTkSuQmCC - - - - - iVBORw0KGgoAAAANSUhEUgAAAEgAAABICAYAAABV7bNHAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 - YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAABnNJREFUeF7tnLuO - 1TAQhpeCggcAsVzERUgUNFS0lNsgLT0lL8AW8Ag0VNBugWig5AFot0K8ADUtICEhBAUc9jf+w2SO7+Oc - C2QlK8meeGx/mYvt2Dmx9+DOzvyXIABAc4ozmOFkFGTlgD493bnk0/7x8cCnw+NjKPF33OvyrVrbJwek - YADC0XH6iPT52c6iJPF+nxcyAM5BmxrYJIAElAFICMSX5ycXTF9fn1og4ZpH/hbK66EBNsqYDFZXQB4M - nq7TEtkwNhyN//72iks/318f0q8PN9w5j/I33i8hStkCFsruqlVdAEkwISiEgcZbE8FBJjVNwcLD6QbK - DMir95GsJCr+482FQSOsUFL5AQxlQUMDoPatPqoZkNca2P9gSjSfKYHEZAMUtEqC8qaHOjabXRMgrTWo - VE8zsgAOaZT3iU2QqgF5+x5pDZ2rpWG986JO0GiandemapOrAiThQGtg+70b1lMetUlBOqjxS8WANByY - VM/GTClL+iavScWQigBtMxyCD0AqMrcsIO+Qnc+BWW2ivynVvhZISUA+lLs+DiNVaWU29T5AEj4Jncpk - dMsBOqSwTXfINQ8EbRGQDlNOOwpImhbCZU0FNv1e2QXIhf8gIG1a2+x3Yg9L+aOjmBbFAB38i6alYdHU - Ulq0BOh/0B6CgmVw7BYbjoQAYfLJhfUejlnP+fTwTz1l5rQoBMhFLmufB4148eTK4uH9i4t7dy+647tX - fybJWiEhL2RImSjDKlNo0VJEGwHy5uW0xxK5UOHHjy4vrl3dXZw+8zfhurVBBB6SibIskDio9b5o1C/S - gAbnbBlrAQIasrs7ToCF/0ELarUIeWIyCb5WphyGiH7RaAiiAZnNC08SJkUYIUgwkdrG5GTi91YtUs56 - ZGYDIBm9LOaFJ33r5rkl7SEogNu7fd5NsJVCwr3Ik4KOMmtk6rKFmY2GHxqQOXrFTGFKQJANM2sxXYJS - 0WzwQxLQPu3Q8iSQd9UaBEAo0wJIDWIHPyQBOQdtDe8oaAp/USLT8mCVHxom1CQgs4OmuiKKaefM69aI - kzJd+CaUWerTYveF+kNLgCwOWoZNRCpA0f2g1j5LrG+FMlCWRXtQbzXCHyKZBOQmxnoAQoGoMJ4qTAMR - CMfWTqIcO4VkWuFQvoxkHN1PBkg2qvc7M74kbO33xExsLYCsfmGV+WdAmcUTM6AZkG15TU6DXD8IN/V2 - fqv0I61llYT5aEdRA8tdxyqZy5f7vbXxJfliI/rkUCNX4djv/L8+ytAvK50qJyZriv+LnnRwqLE0WJ2i - Euy1btqxZLCKdcjDdIecGF/3OWHqeuj/W65LpjsAaBhuyMrUFCw1Q2sJZabkxWCU5LU8yOyEGcYex4AG - R62X6dYWjtE3xk1IOLfKk+VzWTDL4NuS2jryfvWWNTzl6gGN/FCsQN3Y0DVG7RjJY3oDk1kcrLbCQhkE - gtE7ZPINB65b4SCfWsyQnLQf/BD7Q3xaPMqBIsHII88JSE55cGoUo3s0itqFhjOhsvKa79aQhzOVnEKh - bE6hsG66zrnr4tc+ITPTjc8VxkqikbGJdtlAQkPjCYHaEZt00/Pb1MrSh6gfcmopTPLVs9w2kAMT+p1v - OGJvIySAkns0MM5Dt9SNeZT2LC3Lyy5egMpDGI8l5zIPNSmnDbW/Q9uoOaG66XqHruUKfUTw0BKY7PIX - biuAMCZCkv9LnX97edb5HOlDaoFQwyCD7/lLy4/dl9Met101RE2+ROQqD2tl6Hx1BEqZlvRVPcGwLSXL - 8IqW4HHRuBUSNImg5MoPOmWEbSZ2DWS0Y/mU01of5BfjLmzuiy4JLl7ECYEQbEloUCg/ZMvQjvNUeTE5 - JXWTfgcahDXgTYs4fcgfhh8QVlKBTb9H7QayLQNm71pueeqhSeuEWLNGOuqktcrJJcF8Pb3ORraUHdhH - 1mcrAmHpbVDbpkmt26KyezWkNm0jpFbNWXqzWrqHapvMrcce1ioNEuaGpcKjjbybZHKRDb6r2ZIpIKEL - MNrUu24HHgCDTqBpi3iTBim/tKRNqwalwfgOIPo4RZGquaNY4ZegTe6LC9Lued7b/DKfrNisDwsobRpA - yc6lhsYGEpwEGDqX94cegF8A3hVMcxQr0So/GwDTS37cJNTY0v8JKNvzcZPE1Am/FTR/HienYV67YIrz - B5ZysLbhd3OY34ZGWuo4A8p85O03sxGBF+BjoJ0AAAAASUVORK5CYII= - - - - - iVBORw0KGgoAAAANSUhEUgAAAEgAAABICAYAAABV7bNHAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 - YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAABoZJREFUeF7tnL+O - 5TQUxgeJFwDBrmakQQhRINFT0tLMG/AEVEPNM9BAOTQ0dDSrbbfiDZC2oKCjZiUaEEIo3M/4s07OPbaP - HSebO8pIVuYmzon98/ljO3be+OzLu6vjr0AAgI6UZ3DAqSjI5oB+/+bq9pTuYro/HZEeMonXkR/33W6t - 7asDEkAI4uXp3CukV99eTZ7E/Kcj7gVMyArQ1ga2CiABBZUJQCwQf3z/5uRJ1r0RGoGtBmsooAgGrXsG - hSD+evZk+vun96Z/fv4wpH9//Sik6bePZ4nnmQ/34F7KkdAirBdRs4Zq1RBAEowsOCpDIBYEDcXzm+Ak - MAULjYNGGgJqMaBYmJcaDCowCkoJHJ6BZ6ExFCho1N1SH9UNKGoNfEzyLyjkVmAsk9SgoumhjN3a1AUo - RpCkNa8TjBNUtzY1A4omlbQGPmYLU/L4J5kHzh1lo9nFwNFsck2AJBxqTWvBt8xP/yQgof913+KX3IA0 - HLTQlpVd8izpm6JfckNyAbpkOASLBmWki5Bc5lYFFB1y8Dl4wCVpjtY6pUnoL1UhFQHFUB6i1aXDISxA - Ej4J0a3YBagBeqAwCF7iB/Z0r4L0UHLaWUDStPYaynuhI7p5/ZEJKJrWi8dkWhqmctpZU8sBun+MpqUh - sSNZimpngLT27LGX3Gta1rBEmJqpRRYgTD6FsL6VY+YUhj6OAlGSQ4ed0yILUIhcILuW9nAI8Py7D6av - v3p/+uLz27OE80jIs+YMgfJFZxFtBiiaV9Ae2OfoFkRhUGEA+fSTm+nm5np68vQ6Hd96+3qSideQF/fg - 3jU6qsIXofM46xdpQMk5jywINIZgCAWVJwCcq51nHoIaqd2oq+g8zsZpGtBw88LDYSoSACvbepRQIXNU - I6p+0czMEiA5rBhlXqgAWlyaUiuUUn7IHgVJmNksmmlAw6JXCQ414Z13z81MAkE+5rHMEXlHQVLRLPkh - CeiOdjiiVeBztF8hGDhdOl5GKuSXiVFMO3RpZoSG+5YGFOWH0ihfAgoOekR4h02jYohIViT65cf//YfH - 0SIP8uIedgkYAaFdeAbOLwWk/FBy1BLQUAfNqDW6L4OKABblM6oNBpQc9RmgkSN3j4aMqNhSGbg/F8kk - oDB6HxXBRhR6axkyknGO6AAk1gQcgNQCCamhMLEDUAEQYB2ARmuQjEKe/7d2qow+fK6njLnI6jGx0A9a - EuZbCzgqf2/DaFhidjHfD9I9aQqpHXtbcQkkqUG18uWuU4anH5SGGnIsZlWgdE4XxFOJNfJYMksmqWYW - zaHGbLBqzRNL2tZ1CaekGd57c2WwKtpbXpbTM1jFOuQ03ZGrRMt5DjA5MsdvDdErj1ByMr1ycvnUKyBz - ugOA0nBjyQM5i6jnnfEbg8xe2bjXksnZxV65OoLJeenslKtcogsB/C3P5/6Xc0FyvhlTE6ggNUnKtZ4h - 5ROOnDiT/2vwnnLKOlkRLGz0kS/usQ5IvlHlGmUNh+dZKXmdM4mYq7GmSwGJs4D6vhwkytSzihK+lJmT - mzuvFjPMlsRYr33CchfYpATk/R/aAS3JVQaVwnW5mLwmG3lLMtEY1MyaLOu60J7yax9o00mL0sRZSyX4 - YAAqTbQDXGtlPNDxTM5UtkBSi6rKLw4joPTqmavkIcSTODVaam0NqCbXI1NrUE2mvF5bwFBdvEBhKCg1 - yjoyX621CUgWMidb5oGPKfkgaqW3vHxm8+KFqEXJWbdqEQqIsFvyQbje0sqUmTNdaFCPTM8iquoCKjps - FJKwakepRXxNwyM0Addb5OF5SNQiLVNqT61s8rpnraJrCR537bCgniMgyHdafA+G8577rTwjZXq056wf - pBczMqLxfZm3Yn/+8DRAwJGvaHDkea8cmW+UTMhByi1W0Axqq1zT8IOQ+IBLPnpM6+ytRm4prLWz55HA - Wb6QnND0Dh/Y76VBkhvuhm5FeCyQ1I6f6hYEt4npwSznjC7FJ/VqThcgdiKxOY0tsmdzMzb7ujWnG5AY - r4XJtT2Cymzw7dq3Wt0OVYhu6ALMNvW+brMzwGCH4fabepVfwuh/ti18a1AaDJ6P6WPPfrDa9sxuDVKQ - oE3hiwvS7AhqDT9lQRFg9vNhgQwotF7xex2t/SjrkxQqdO/30xTGGI6fwCl+3ERrW8vv2Nm7rI+bWPYc - 11/DTx2fx6k5vNhFCB9KimO84wNLHmh7zjMkiu25gkvLdgCqfOTtP9OChbbA66c9AAAAAElFTkSuQmCC - - - - - iVBORw0KGgoAAAANSUhEUgAAAEgAAABICAYAAABV7bNHAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 - YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAB0NJREFUeF7tnDGL - JUUQx1fwKxzecSh6KieYXWjmJcJitJlsbrCRH0D2Kxy6iaksxiL4CeQwNDA20lQFEwVF3s1/7P9QU6+6 - q7p75u08eQvNezs9013966rq7nrd89IHn3x4dvorEACgU8ozOMFxFOSggH777OxeSk+Gz4shXQ3pekg3 - Q7pVCdeQh3twL565d2htXx1QAnKeGgsIz4f06++fn+2iCfenhGdRBsChzNWBrQIoQUGvQwuyQP748uVd - JFkgBTDUsRqsRQENgj5KJrEHhSD++uaV3d/fvbb758e3xvTvT++MaffLu7PE67wPz+BZliOhCVgwx0dL - muEigBIYqP1zKTgaI4FoCK3/A5oEpmChcwBqEfPrApRM6dICgwZYmtEKJfccYaEzDFAXvdrUDChpDRzm - 5HAh5KHAWCaJuiWoZHrwUc1m1wQoOcXJnO4STBAUzO5JizZVA0r2PWkNfMwhTKnWNGF6kI1ml7Sp2uSq - AGk4UOlawQ95PzoOMipIVzWaFAYk4dCkDtnYnrqkb0qaFIYUAqThQH0jAqMHOY+J3L/mPQakkLm5gJJD - Hn0ONMeDQyhyUrcVjVOQQo67CCgN5eNoFWmkdox60rgFZ658EiAVJ5QeoFs20nPIeg6i10/QqDVNqKZs - Bem65LSzgAayWGyOpuUN5bJCDWZLcyRChCZzQpmc9nkOkgkoLSEm0yr5HeTpab40yS2YlaVdUu6hvVgR - mKaWA3QVMS3ZE1JzPI2rMYc17+VEsjSJ3AOktaekAZZpbcnXeHCVqZkO2wI0+Z6SY7a055jgEB47OadF - FqBx5IJfKWmPBnQsZqW1Svsi7axngNK8Zxq5PBXl0B6ZQHpl3WW+8kWz0IgGNDlnb8Ysh8xc437+/vHu - h6/fHBO+rzGioUyU/e0Xb+yeffr6mPC9pi60VSxoL6UWaUAh8/J6G8JByPffe7h7/PaDMeE7hI+Cj9QB - 8B9/9OpUz/37D3ZIqA/1e2UwX5nZjQlIjl69zhbCQUgKLD8BqaZ3rUYSTK4O1FcDCHUIM5uNZpMGIeLG - mbO3rCj1DNQd2mLBYe+igdHelfehbAAugWnVVDWaTdFHCeiCdthjBiXtITQ0shYQ4MCccuCRh7pxX23Z - uF/5oWnpIQFdR4Z3r3IImWsEr6MxXjkyHxqX00poE4C3gsn4oSmgJgHdLAEIwi4JyDNZmi2g94BSs+rJ - UUtAi4xgEQ2KmhiEjgCXHQJNa/FxCtAtRzIJaFy9945gXo/XDMEQuuR3SgNB7SimR7LVAHm9jgbXDALQ - IGgFEs2IE0LOgSz/hGs1fglyy6F+NUDoCWs4huagQTVCoyzOlDkT15sd8D9MChojtQ311ZjaQQGxYRBQ - Tv9rNKdmlOO97BhqWu2E9GAa1NK4JZ/htpqaMps1SPdCba9EhVyr3Jr6PQ2qGuZlg3oaZz2bK7u1zkh5 - ACkC+eYwvzdRZMH6MxfqyN1Hn2R9emVZ+VaDIxBK90QmimMsSAa/SoKU4OXyWsrrqacGmgp5mEuNc7lY - 5XDa+im1hd9by9LP6bJ1+bX1RRers3BHb2M4xHOFrTdsyvlM9DsbjrIYrWQEUZbfIrsKu5rhDmzynpYb - LZXwGb365iSRjWEIFo3k7g/rE/lMnAyiDB1F5PKlR2Y3YIapNX5hlH6IFcreiXz3YkIyDIvGlhKXGXwm - t/5ipBIyU8bcp74nFHJNgC7lL6pWr7JwnSevl+I3XiikNZ+Besol5bFklpDUZoZi0B4bwaeffUrq7+XV - hilaweA5rvE8mXL5aiND/mcfbWZyRzwLt65ZFeM+L37cA0VGJ6GxWgZPTuarTVWzXzTGs3T6l0S97QUV - oxBZoLzGPPkp89eCJKMDWh7+X5KTeWr02tsG425esADUAov8TFOjTXDc8Dkl2awOs4AJ84ptXtDO+s+v - /jt80pvQU4zZlH62KUUJGcYA8F55ops63Q1UDMOiQB5M6fnEs5xEyoggh3E5BZBRRMBlvSVZonKqTeZ1 - G6iSFuEM1rS7FQX2Jgovy4GGchIICEy4hrzeOnPPq5HradUWPN48ABpX+Jw89gqba7C+zv/XAoRyxWaF - tk2cSYswL5odWkHhx54EnL5twAnSU5oaNemYASk47gkgd6c9R7X/AyR1qCW79Te7P6i0oVqf9IGTOyZN - aj0WFdIg4bRxFnR2wnDrkIwTiLPFqHc0qgrQsZmbcYY1ZFZNJiYfGrQIjnvvhPNWtClzwNd1yJY2VWuQ - MDdMAXBgdvYWhbv2TUpr8MYGHFdvPiLeDCiZG8K0e8fCDz0dsM6KQMOHVG1SxX3SnsPK5af91XsvFiCo - NbTKgoL6EphtvFjAiCVlX00hlywtwKxXUqihe9E3Luxtf2nVHuu5tKUYi93iy0302bKa/9PZCkBBHRg0 - mv1Mqe1dPigCVcCCCS75epzVoHQP8xEwjr86vWCpB+KWnl3dxLbU2BZZToCcl7y9AH07+btvDKiTAAAA - AElFTkSuQmCC - - - - - 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 - TkSuQmCC - - - - - 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 - Q1J3JgAAAABJRU5ErkJggg== - - 52 + AAABABcAMDACAAEAAQAwAwAAdgEAACAgAgABAAEAMAEAAKYEAAAQEAIAAQABALAAAADWBQAAAAAQAAEA