mirror of
https://github.com/greenshot/greenshot
synced 2025-07-13 16:43:54 -07:00
Added multi-screen capture support! As a default the current screen under the cursor is captured. (ScreenCaptureMode.Auto)
git-svn-id: http://svn.code.sf.net/p/greenshot/code/trunk@1806 7dccd23d-a4a3-4e1f-8c07-b4c1b4018ab4
This commit is contained in:
parent
54dd4614f5
commit
e687450dfc
7 changed files with 161 additions and 19 deletions
|
@ -71,7 +71,11 @@ namespace GreenshotPlugin.Core {
|
|||
public bool CaptureWindowsInteractive;
|
||||
[IniProperty("CaptureDelay", Description="Capture delay in millseconds.", DefaultValue="100")]
|
||||
public int CaptureDelay;
|
||||
[IniProperty("WindowCaptureMode", Description="The capture mode used to capture a Window.", DefaultValue="Auto")]
|
||||
[IniProperty("ScreenCaptureMode", Description = "The capture mode used to capture a screen. (Auto, FullScreen, Fixed)", DefaultValue = "Auto")]
|
||||
public ScreenCaptureMode ScreenCaptureMode;
|
||||
[IniProperty("ScreenToCapture", Description = "The screen number to capture when using ScreenCaptureMode Fixed.", DefaultValue = "1")]
|
||||
public int ScreenToCapture;
|
||||
[IniProperty("WindowCaptureMode", Description = "The capture mode used to capture a Window (Screen, GDI, Aero, AeroTransparent, Auto).", DefaultValue = "Auto")]
|
||||
public WindowCaptureMode WindowCaptureMode;
|
||||
[IniProperty("WindowCaptureAllChildLocations", Description="Enable/disable capture all children, very slow but will make it possible to use this information in the editor.", DefaultValue="False")]
|
||||
public bool WindowCaptureAllChildLocations;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue