ShareX/Greenshot.ImageEditor/Forms/ColorDialog.cs
campbeb 2c35af0592 Merge Greenshot changes through 22 May 2016
Merge commits from Greenshot up through
bd71f47e95a46642fe6a83bdd76cc4d2a7eed7c2.

Some bug fixes, but mostly structural cleanup.
2016-05-22 11:17:02 -04:00

289 lines
10 KiB
C#

/*
* Greenshot - a free and open source screenshot tool
* Copyright (C) 2007-2015 Thomas Braun, Jens Klingen, Robin Krom
*
* For more information see: http://getgreenshot.org/
* The Greenshot project is hosted on Sourceforge: http://sourceforge.net/projects/greenshot/
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 1 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
using Greenshot.Configuration;
using Greenshot.Controls;
using Greenshot.IniFile;
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Globalization;
using System.Threading;
using System.Windows.Forms;
namespace Greenshot
{
/// <summary>
/// Description of ColorDialog.
/// </summary>
public partial class ColorDialog : BaseForm
{
private static ColorDialog uniqueInstance;
private static readonly EditorConfiguration editorConfiguration = IniConfig.GetIniSection<EditorConfiguration>();
private ColorDialog()
{
SuspendLayout();
InitializeComponent();
SuspendLayout();
CreateColorPalette(5, 5, 15, 15);
CreateLastUsedColorButtonRow(5, 190, 15, 15);
ResumeLayout();
UpdateRecentColorsButtonRow();
}
public static ColorDialog GetInstance()
{
if (uniqueInstance == null)
{
uniqueInstance = new ColorDialog();
}
return uniqueInstance;
}
private readonly List<Button> _colorButtons = new List<Button>();
private readonly List<Button> _recentColorButtons = new List<Button>();
private readonly ToolTip _toolTip = new ToolTip();
private bool _updateInProgress;
public Color Color
{
get { return colorPanel.BackColor; }
set { PreviewColor(value, this); }
}
#region user interface generation
private void CreateColorPalette(int x, int y, int w, int h)
{
CreateColorButtonColumn(255, 0, 0, x, y, w, h, 11);
x += w;
CreateColorButtonColumn(255, 255 / 2, 0, x, y, w, h, 11);
x += w;
CreateColorButtonColumn(255, 255, 0, x, y, w, h, 11);
x += w;
CreateColorButtonColumn(255 / 2, 255, 0, x, y, w, h, 11);
x += w;
CreateColorButtonColumn(0, 255, 0, x, y, w, h, 11);
x += w;
CreateColorButtonColumn(0, 255, 255 / 2, x, y, w, h, 11);
x += w;
CreateColorButtonColumn(0, 255, 255, x, y, w, h, 11);
x += w;
CreateColorButtonColumn(0, 255 / 2, 255, x, y, w, h, 11);
x += w;
CreateColorButtonColumn(0, 0, 255, x, y, w, h, 11);
x += w;
CreateColorButtonColumn(255 / 2, 0, 255, x, y, w, h, 11);
x += w;
CreateColorButtonColumn(255, 0, 255, x, y, w, h, 11);
x += w;
CreateColorButtonColumn(255, 0, 255 / 2, x, y, w, h, 11);
x += w + 5;
CreateColorButtonColumn(255 / 2, 255 / 2, 255 / 2, x, y, w, h, 11);
Controls.AddRange(_colorButtons.ToArray());
}
private void CreateColorButtonColumn(int red, int green, int blue, int x, int y, int w, int h, int shades)
{
int shadedColorsNum = (shades - 1) / 2;
for (int i = 0; i <= shadedColorsNum; i++)
{
_colorButtons.Add(CreateColorButton(red * i / shadedColorsNum, green * i / shadedColorsNum, blue * i / shadedColorsNum, x, y + i * h, w, h));
if (i > 0) _colorButtons.Add(CreateColorButton(red + (255 - red) * i / shadedColorsNum, green + (255 - green) * i / shadedColorsNum, blue + (255 - blue) * i / shadedColorsNum, x, y + (i + shadedColorsNum) * h, w, h));
}
}
private Button CreateColorButton(int red, int green, int blue, int x, int y, int w, int h)
{
return CreateColorButton(Color.FromArgb(255, red, green, blue), x, y, w, h);
}
private Button CreateColorButton(Color color, int x, int y, int w, int h)
{
Button b = new Button();
b.BackColor = color;
b.FlatAppearance.BorderSize = 0;
b.FlatStyle = FlatStyle.Flat;
b.Location = new Point(x, y);
b.Size = new Size(w, h);
b.TabStop = false;
b.Click += ColorButtonClick;
_toolTip.SetToolTip(b, ColorTranslator.ToHtml(color) + " | R:" + color.R + ", G:" + color.G + ", B:" + color.B);
return b;
}
private void CreateLastUsedColorButtonRow(int x, int y, int w, int h)
{
for (int i = 0; i < 12; i++)
{
Button b = CreateColorButton(Color.Transparent, x, y, w, h);
b.Enabled = false;
_recentColorButtons.Add(b);
x += w;
}
Controls.AddRange(_recentColorButtons.ToArray());
}
#endregion user interface generation
#region update user interface
private void UpdateRecentColorsButtonRow()
{
for (int i = 0; i < editorConfiguration.RecentColors.Count && i < 12; i++)
{
_recentColorButtons[i].BackColor = editorConfiguration.RecentColors[i];
_recentColorButtons[i].Enabled = true;
}
}
private void PreviewColor(Color colorToPreview, Control trigger)
{
_updateInProgress = true;
colorPanel.BackColor = colorToPreview;
if (trigger != textBoxHtmlColor)
{
textBoxHtmlColor.Text = ColorTranslator.ToHtml(colorToPreview);
}
if (trigger != textBoxRed && trigger != textBoxGreen && trigger != textBoxBlue && trigger != textBoxAlpha)
{
textBoxRed.Text = colorToPreview.R.ToString();
textBoxGreen.Text = colorToPreview.G.ToString();
textBoxBlue.Text = colorToPreview.B.ToString();
textBoxAlpha.Text = colorToPreview.A.ToString();
}
_updateInProgress = false;
}
private void AddToRecentColors(Color c)
{
editorConfiguration.RecentColors.Remove(c);
editorConfiguration.RecentColors.Insert(0, c);
if (editorConfiguration.RecentColors.Count > 12)
{
editorConfiguration.RecentColors.RemoveRange(12, editorConfiguration.RecentColors.Count - 12);
}
UpdateRecentColorsButtonRow();
}
#endregion update user interface
#region textbox event handlers
private void TextBoxHexadecimalTextChanged(object sender, EventArgs e)
{
if (_updateInProgress)
{
return;
}
TextBox textBox = (TextBox)sender;
string text = textBox.Text.Replace("#", "");
int i = 0;
Color c;
if (Int32.TryParse(text, NumberStyles.AllowHexSpecifier, Thread.CurrentThread.CurrentCulture, out i))
{
c = Color.FromArgb(i);
}
else
{
KnownColor knownColor;
try
{
knownColor = (KnownColor)Enum.Parse(typeof(KnownColor), text, true);
c = Color.FromKnownColor(knownColor);
}
catch (Exception)
{
return;
}
}
Color opaqueColor = Color.FromArgb(255, c.R, c.G, c.B);
PreviewColor(opaqueColor, textBox);
}
private void TextBoxRGBTextChanged(object sender, EventArgs e)
{
if (_updateInProgress)
{
return;
}
TextBox textBox = (TextBox)sender;
PreviewColor(Color.FromArgb(GetColorPartIntFromString(textBoxAlpha.Text), GetColorPartIntFromString(textBoxRed.Text), GetColorPartIntFromString(textBoxGreen.Text), GetColorPartIntFromString(textBoxBlue.Text)), textBox);
}
private void TextBoxGotFocus(object sender, EventArgs e)
{
textBoxHtmlColor.SelectAll();
}
private void TextBoxKeyDown(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.Return || e.KeyCode == Keys.Enter)
{
AddToRecentColors(colorPanel.BackColor);
}
}
#endregion textbox event handlers
#region button event handlers
private void ColorButtonClick(object sender, EventArgs e)
{
Button b = (Button)sender;
PreviewColor(b.BackColor, b);
}
private void BtnTransparentClick(object sender, EventArgs e)
{
ColorButtonClick(sender, e);
}
private void BtnApplyClick(object sender, EventArgs e)
{
DialogResult = DialogResult.OK;
Hide();
AddToRecentColors(colorPanel.BackColor);
}
#endregion button event handlers
#region helper functions
private int GetColorPartIntFromString(string s)
{
int ret = 0;
Int32.TryParse(s, out ret);
if (ret < 0) ret = 0;
else if (ret > 255) ret = 255;
return ret;
}
#endregion helper functions
private void PipetteUsed(object sender, PipetteUsedArgs e)
{
Color = e.color;
}
}
}