ShareX/ShareX.ScreenCaptureLib/Forms/WebpageCaptureForm.cs

215 lines
6.2 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
2018-01-02 03:59:14 +13:00
Copyright (c) 2007-2018 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.Drawing;
using System.Windows.Forms;
namespace ShareX.ScreenCaptureLib
{
public partial class WebpageCaptureForm : Form
{
public event Action<Image> ImageUploadRequested;
public event Action<Image> ImageCopyRequested;
public WebpageCaptureOptions Options { get; set; }
public bool IsBusy { get; private set; }
private WebpageCapture webpageCapture;
2015-07-02 04:07:36 +12:00
private bool stopRequested;
public WebpageCaptureForm(WebpageCaptureOptions options)
{
InitializeComponent();
Icon = ShareXResources.Icon;
Options = options;
LoadSettings();
webpageCapture = new WebpageCapture();
webpageCapture.CaptureCompleted += webpageCapture_CaptureCompleted;
}
private void LoadSettings()
2015-06-28 01:03:15 +12:00
{
CheckClipboardURL();
Size browserSize = Options.BrowserSize;
2015-06-28 01:03:15 +12:00
if (browserSize.Width == 0) browserSize.Width = Screen.PrimaryScreen.Bounds.Width;
nudWebpageWidth.SetValue(browserSize.Width);
2015-06-28 01:03:15 +12:00
if (browserSize.Height == 0) browserSize.Height = Screen.PrimaryScreen.Bounds.Height;
nudWebpageHeight.SetValue(browserSize.Height);
2015-06-28 01:03:15 +12:00
nudCaptureDelay.SetValue((decimal)Options.Delay);
2015-07-02 04:07:36 +12:00
UpdateControls();
2015-06-28 01:03:15 +12:00
}
private void CheckClipboardURL()
{
if (Clipboard.ContainsText())
{
string text = Clipboard.GetText();
2017-04-25 02:01:35 +12:00
if (URLHelpers.IsValidURL(text))
{
txtURL.Text = text;
}
}
2015-06-28 01:03:15 +12:00
}
2015-06-28 01:03:15 +12:00
private void CleanPictureBox()
{
if (pbResult.Image != null)
{
pbResult.Image.Dispose();
pbResult.Image = null;
}
}
private void txtURL_TextChanged(object sender, EventArgs e)
{
2015-07-02 04:07:36 +12:00
UpdateControls();
}
private void nudWebpageWidth_ValueChanged(object sender, EventArgs e)
{
Options.BrowserSize = new Size((int)nudWebpageWidth.Value, Options.BrowserSize.Height);
}
private void nudWebpageHeight_ValueChanged(object sender, EventArgs e)
{
Options.BrowserSize = new Size(Options.BrowserSize.Width, (int)nudWebpageHeight.Value);
}
private void nudCaptureDelay_ValueChanged(object sender, EventArgs e)
{
Options.Delay = (float)nudCaptureDelay.Value;
}
private void btnCapture_Click(object sender, EventArgs e)
2015-07-02 04:07:36 +12:00
{
if (IsBusy)
{
2015-07-02 13:50:49 +12:00
StopCapture();
2015-07-02 04:07:36 +12:00
}
else
{
2015-07-02 13:50:49 +12:00
StartCapture();
2015-07-02 04:07:36 +12:00
}
}
2015-07-02 13:50:49 +12:00
private void StartCapture()
{
IsBusy = true;
2015-07-02 04:07:36 +12:00
stopRequested = false;
UpdateControls();
2015-06-28 02:01:22 +12:00
lock (this)
{
CleanPictureBox();
}
webpageCapture.CaptureDelay = (int)nudCaptureDelay.Value * 1000;
webpageCapture.CapturePage(txtURL.Text, new Size((int)nudWebpageWidth.Value, (int)nudWebpageWidth.Value));
}
2015-07-02 13:50:49 +12:00
private void StopCapture()
2015-07-02 04:07:36 +12:00
{
IsBusy = false;
stopRequested = true;
webpageCapture.Stop();
UpdateControls();
}
2015-06-28 02:01:22 +12:00
private void webpageCapture_CaptureCompleted(Bitmap bmp)
{
2015-07-02 04:07:36 +12:00
if (!stopRequested && !IsDisposed)
2015-06-28 02:01:22 +12:00
{
lock (this)
{
CleanPictureBox();
pbResult.Image = bmp;
}
IsBusy = false;
2015-07-02 04:07:36 +12:00
UpdateControls();
2015-06-28 02:01:22 +12:00
}
}
2015-07-02 04:07:36 +12:00
private void UpdateControls()
{
btnCapture.Text = IsBusy ? Resources.WebpageCaptureForm_UpdateControls_Stop : Resources.WebpageCaptureForm_UpdateControls_Capture;
2015-07-02 04:07:36 +12:00
txtURL.Enabled = btnUpload.Enabled = btnCopy.Enabled = nudWebpageWidth.Enabled = nudWebpageHeight.Enabled = nudCaptureDelay.Enabled = !IsBusy;
btnCapture.Enabled = txtURL.TextLength > 0;
}
protected void OnImageUploadRequested(Image img)
{
if (ImageUploadRequested != null)
{
ImageUploadRequested(img);
}
}
protected void OnImageCopyRequested(Image img)
{
if (ImageCopyRequested != null)
{
ImageCopyRequested(img);
}
}
private void btnUpload_Click(object sender, EventArgs e)
{
if (pbResult.Image != null)
{
2015-06-28 02:01:22 +12:00
Image img;
lock (this)
{
img = (Image)pbResult.Image.Clone();
}
OnImageUploadRequested(img);
}
}
private void btnCopy_Click(object sender, EventArgs e)
{
if (pbResult.Image != null)
{
2015-06-28 02:01:22 +12:00
Image img;
lock (this)
{
img = (Image)pbResult.Image.Clone();
}
OnImageCopyRequested(img);
}
}
}
}