Refactored the editor to be in it's own project, this is a step up to improve maintainability.

This commit is contained in:
Robin Krom 2021-04-14 23:19:31 +02:00
parent 54038a3cbe
commit f084d0e95e
No known key found for this signature in database
GPG key ID: BCC01364F1371490
165 changed files with 20167 additions and 19709 deletions

View file

@ -26,57 +26,12 @@ using System.Drawing;
using System.IO;
using System.Reflection;
using System.Windows.Forms;
using Greenshot.Base.Core.Enums;
using Greenshot.Base.IniFile;
using Greenshot.Base.Interfaces;
namespace Greenshot.Base.Core
{
public enum ClipboardFormat
{
PNG,
DIB,
HTML,
HTMLDATAURL,
BITMAP,
DIBV5
}
public enum OutputFormat
{
bmp,
gif,
jpg,
png,
tiff,
greenshot,
ico
}
public enum WindowCaptureMode
{
Screen,
GDI,
Aero,
AeroTransparent,
Auto
}
public enum BuildStates
{
UNSTABLE,
RELEASE_CANDIDATE,
RELEASE
}
public enum ClickActions
{
DO_NOTHING,
OPEN_LAST_IN_EXPLORER,
OPEN_LAST_IN_EDITOR,
OPEN_SETTINGS,
SHOW_CONTEXT_MENU
}
/// <summary>
/// Description of CoreConfiguration.
/// </summary>