ShareX/ShareX.ScreenCaptureLib/Forms/TextDrawingInputBox.cs

223 lines
7.1 KiB
C#
Raw Normal View History

#region License Information (GPL v3)
/*
ShareX - A program that allows you to take screenshots and share any file type
Copyright (c) 2007-2016 ShareX Team
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 2
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, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
Optionally you can also view the license at <http://www.gnu.org/licenses/>.
*/
#endregion License Information (GPL v3)
using ShareX.HelpersLib;
using ShareX.ScreenCaptureLib.Properties;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace ShareX.ScreenCaptureLib
{
internal partial class TextDrawingInputBox : Form
{
2016-05-21 02:11:48 +12:00
public TextDrawingOptions Options { get; private set; }
public TextDrawingInputBox(TextDrawingOptions options)
{
InitializeComponent();
Icon = ShareXResources.Icon;
2016-05-21 02:11:48 +12:00
Options = options;
2016-05-21 02:11:48 +12:00
if (Options.Text != null)
{
2016-05-21 02:11:48 +12:00
txtInput.Text = Options.Text;
}
UpdateInputBox();
2016-05-20 12:47:04 +12:00
cbFonts.Items.AddRange(FontFamily.Families.Select(x => x.Name).ToArray());
2016-05-21 02:11:48 +12:00
if (cbFonts.Items.Contains(Options.Font))
2016-05-20 12:47:04 +12:00
{
2016-05-21 02:11:48 +12:00
cbFonts.SelectedItem = Options.Font;
2016-05-20 12:47:04 +12:00
}
else
{
cbFonts.SelectedItem = "Arial";
}
2016-05-21 02:11:48 +12:00
nudTextSize.Value = Options.Size;
btnTextColor.Color = Options.Color;
UpdateHorizontalAlignmentImage();
UpdateVerticalAlignmentImage();
2016-05-20 12:47:04 +12:00
}
private void cbFonts_SelectedIndexChanged(object sender, EventArgs e)
{
2016-05-21 02:11:48 +12:00
Options.Font = cbFonts.SelectedItem as string;
2016-05-20 12:47:04 +12:00
UpdateInputBox();
}
private void nudTextSize_ValueChanged(object sender, EventArgs e)
{
2016-05-21 02:11:48 +12:00
Options.Size = (int)nudTextSize.Value;
UpdateInputBox();
}
2016-05-20 12:47:04 +12:00
private void btnTextColor_ColorChanged(Color color)
{
2016-05-21 02:11:48 +12:00
Options.Color = btnTextColor.Color;
UpdateInputBox();
}
2016-05-20 12:47:04 +12:00
private void cbBold_CheckedChanged(object sender, EventArgs e)
{
2016-05-21 02:11:48 +12:00
Options.Bold = cbBold.Checked;
UpdateInputBox();
}
2016-05-20 12:47:04 +12:00
private void cbItalic_CheckedChanged(object sender, EventArgs e)
{
2016-05-21 02:11:48 +12:00
Options.Italic = cbItalic.Checked;
UpdateInputBox();
}
2016-05-20 12:47:04 +12:00
private void cbUnderline_CheckedChanged(object sender, EventArgs e)
{
2016-05-21 02:11:48 +12:00
Options.Underline = cbUnderline.Checked;
UpdateInputBox();
}
private void btnAlignmentHorizontal_Click(object sender, EventArgs e)
{
cmsAlignmentHorizontal.Show(btnAlignmentHorizontal, 0, btnAlignmentHorizontal.Height + 1);
}
private void tsmiAlignmentLeft_Click(object sender, EventArgs e)
{
2016-05-21 02:11:48 +12:00
Options.AlignmentHorizontal = StringAlignment.Near;
UpdateHorizontalAlignmentImage();
UpdateInputBox();
}
private void tsmiAlignmentCenter_Click(object sender, EventArgs e)
{
2016-05-21 02:11:48 +12:00
Options.AlignmentHorizontal = StringAlignment.Center;
UpdateHorizontalAlignmentImage();
UpdateInputBox();
}
private void tsmiAlignmentRight_Click(object sender, EventArgs e)
{
2016-05-21 02:11:48 +12:00
Options.AlignmentHorizontal = StringAlignment.Far;
UpdateHorizontalAlignmentImage();
UpdateInputBox();
}
private void btnAlignmentVertical_Click(object sender, EventArgs e)
{
cmsAlignmentVertical.Show(btnAlignmentVertical, 0, btnAlignmentVertical.Height + 1);
}
private void tsmiAlignmentTop_Click(object sender, EventArgs e)
{
2016-05-21 02:11:48 +12:00
Options.AlignmentVertical = StringAlignment.Near;
UpdateVerticalAlignmentImage();
}
private void tsmiAlignmentMiddle_Click(object sender, EventArgs e)
{
2016-05-21 02:11:48 +12:00
Options.AlignmentVertical = StringAlignment.Center;
UpdateVerticalAlignmentImage();
}
private void tsmiAlignmentBottom_Click(object sender, EventArgs e)
{
2016-05-21 02:11:48 +12:00
Options.AlignmentVertical = StringAlignment.Far;
UpdateVerticalAlignmentImage();
}
private void txtInput_TextChanged(object sender, EventArgs e)
{
2016-05-21 02:11:48 +12:00
Options.Text = txtInput.Text;
}
private void UpdateInputBox()
{
2016-05-21 02:11:48 +12:00
txtInput.Font = new Font(Options.Font, Options.Size, Options.Style);
txtInput.ForeColor = Options.Color;
HorizontalAlignment horizontalAlignment;
2016-05-21 02:11:48 +12:00
switch (Options.AlignmentHorizontal)
{
default:
case StringAlignment.Near:
horizontalAlignment = HorizontalAlignment.Left;
break;
case StringAlignment.Center:
horizontalAlignment = HorizontalAlignment.Center;
break;
case StringAlignment.Far:
horizontalAlignment = HorizontalAlignment.Right;
break;
}
txtInput.TextAlign = horizontalAlignment;
}
private void UpdateHorizontalAlignmentImage()
{
2016-05-21 02:11:48 +12:00
switch (Options.AlignmentHorizontal)
{
default:
case StringAlignment.Near:
btnAlignmentHorizontal.Image = Resources.edit_alignment;
break;
case StringAlignment.Center:
btnAlignmentHorizontal.Image = Resources.edit_alignment_center;
break;
case StringAlignment.Far:
btnAlignmentHorizontal.Image = Resources.edit_alignment_right;
break;
}
}
private void UpdateVerticalAlignmentImage()
{
2016-05-21 02:11:48 +12:00
switch (Options.AlignmentVertical)
{
default:
case StringAlignment.Near:
btnAlignmentVertical.Image = Resources.edit_vertical_alignment_top;
break;
case StringAlignment.Center:
btnAlignmentVertical.Image = Resources.edit_vertical_alignment_middle;
break;
case StringAlignment.Far:
btnAlignmentVertical.Image = Resources.edit_vertical_alignment;
break;
}
}
}
}