mirror of
https://github.com/greenshot/greenshot
synced 2025-08-21 05:53:27 -07:00
Refactoring the Pipette logic, also fixed some small issue...
git-svn-id: http://svn.code.sf.net/p/greenshot/code/trunk@1658 7dccd23d-a4a3-4e1f-8c07-b4c1b4018ab4
This commit is contained in:
parent
1116ff8a25
commit
cce32fd6b0
4 changed files with 142 additions and 109 deletions
|
@ -32,131 +32,159 @@ namespace Greenshot.Controls {
|
|||
/// This code was supplied by Hi-Coder as a patch for Greenshot
|
||||
/// Needed some modifications to be stable.
|
||||
/// </summary>
|
||||
public class Pipette : Label, IMessageFilter, IDisposable {
|
||||
private Zoomer zoomer;
|
||||
private bool dragging;
|
||||
private Cursor _cursor;
|
||||
public class Pipette : Label, IMessageFilter, IDisposable {
|
||||
private MovableShowColorForm movableShowColorForm;
|
||||
private bool dragging;
|
||||
private Cursor _cursor;
|
||||
private Bitmap _image;
|
||||
private const int VK_ESC = 27;
|
||||
private const int VK_ESC = 27;
|
||||
|
||||
public event EventHandler<PipetteUsedArgs> PipetteUsed;
|
||||
public event EventHandler<PipetteUsedArgs> PipetteUsed;
|
||||
|
||||
public Pipette() {
|
||||
BorderStyle = BorderStyle.FixedSingle;
|
||||
dragging = false;
|
||||
public Pipette() {
|
||||
BorderStyle = BorderStyle.FixedSingle;
|
||||
dragging = false;
|
||||
_image = (Bitmap)new System.ComponentModel.ComponentResourceManager(typeof(ColorDialog)).GetObject("pipette.Image");
|
||||
Image = _image;
|
||||
_cursor = CreateCursor((Bitmap)_image, 0, 15);
|
||||
zoomer = new Zoomer();
|
||||
Application.AddMessageFilter(this);
|
||||
}
|
||||
_cursor = CreateCursor((Bitmap)_image, 1, 14);
|
||||
movableShowColorForm = new MovableShowColorForm();
|
||||
Application.AddMessageFilter(this);
|
||||
}
|
||||
|
||||
/**
|
||||
* Destructor
|
||||
*/
|
||||
/// <summary>
|
||||
/// Create a cursor from the supplied bitmap & hotspot coordinates
|
||||
/// </summary>
|
||||
/// <param name="bitmap">Bitmap to create an icon from</param>
|
||||
/// <param name="hotspotX">Hotspot X coordinate</param>
|
||||
/// <param name="hotspotY">Hotspot Y coordinate</param>
|
||||
/// <returns>Cursor</returns>
|
||||
private static Cursor CreateCursor(Bitmap bitmap, int hotspotX, int hotspotY) {
|
||||
IntPtr iconHandle = bitmap.GetHicon();
|
||||
IntPtr icon;
|
||||
IconInfo iconInfo = new IconInfo();
|
||||
User32.GetIconInfo(iconHandle, out iconInfo);
|
||||
iconInfo.xHotspot = hotspotX;
|
||||
iconInfo.yHotspot = hotspotY;
|
||||
iconInfo.fIcon = false;
|
||||
icon = User32.CreateIconIndirect(ref iconInfo);
|
||||
Cursor returnCursor = new Cursor(icon);
|
||||
//User32.DestroyIcon(icon);
|
||||
User32.DestroyIcon(iconHandle);
|
||||
return returnCursor;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Destructor
|
||||
/// </summary>
|
||||
~Pipette() {
|
||||
Dispose(false);
|
||||
}
|
||||
|
||||
// The bulk of the clean-up code is implemented in Dispose(bool)
|
||||
/// <summary>
|
||||
/// The bulk of the clean-up code is implemented in Dispose(bool)
|
||||
/// </summary>
|
||||
public new void Dispose() {
|
||||
Dispose(true);
|
||||
}
|
||||
|
||||
/**
|
||||
* This Dispose is called from the Dispose and the Destructor.
|
||||
* When disposing==true all non-managed resources should be freed too!
|
||||
*/
|
||||
/// <summary>
|
||||
/// This Dispose is called from the Dispose and the Destructor.
|
||||
/// </summary>
|
||||
/// <param name="disposing">When disposing==true all non-managed resources should be freed too!</param>
|
||||
protected override void Dispose(bool disposing) {
|
||||
base.Dispose();
|
||||
if (disposing) {
|
||||
if (_cursor != null) {
|
||||
_cursor.Dispose();
|
||||
}
|
||||
if (zoomer != null) {
|
||||
zoomer.Dispose();
|
||||
if (movableShowColorForm != null) {
|
||||
movableShowColorForm.Dispose();
|
||||
}
|
||||
}
|
||||
zoomer = null;
|
||||
movableShowColorForm = null;
|
||||
_cursor = null;
|
||||
base.Dispose();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Handle the mouse down on the Pipette "label", we take the capture and move the zoomer to the current location
|
||||
/// </summary>
|
||||
/// <param name="e">MouseEventArgs</param>
|
||||
protected override void OnMouseDown(MouseEventArgs e) {
|
||||
if (e.Button == MouseButtons.Left) {
|
||||
User32.SetCapture(this.Handle);
|
||||
zoomer.setHotSpot(PointToScreen(new Point(e.X, e.Y)));
|
||||
}
|
||||
base.OnMouseDown(e);
|
||||
}
|
||||
if (e.Button == MouseButtons.Left) {
|
||||
User32.SetCapture(this.Handle);
|
||||
movableShowColorForm.MoveTo(PointToScreen(new Point(e.X, e.Y)));
|
||||
}
|
||||
base.OnMouseDown(e);
|
||||
}
|
||||
|
||||
protected override void OnMouseUp(MouseEventArgs e) {
|
||||
if (e.Button == MouseButtons.Left) {
|
||||
//Release Capture should consume MouseUp when canceled with the escape key
|
||||
User32.ReleaseCapture();
|
||||
PipetteUsed(this, new PipetteUsedArgs(zoomer.color));
|
||||
}
|
||||
base.OnMouseUp(e);
|
||||
}
|
||||
/// <summary>
|
||||
/// Handle the mouse up on the Pipette "label", we release the capture and fire the PipetteUsed event
|
||||
/// </summary>
|
||||
/// <param name="e">MouseEventArgs</param>
|
||||
protected override void OnMouseUp(MouseEventArgs e) {
|
||||
if (e.Button == MouseButtons.Left) {
|
||||
//Release Capture should consume MouseUp when canceled with the escape key
|
||||
User32.ReleaseCapture();
|
||||
PipetteUsed(this, new PipetteUsedArgs(movableShowColorForm.color));
|
||||
}
|
||||
base.OnMouseUp(e);
|
||||
}
|
||||
|
||||
protected override void OnMouseMove(MouseEventArgs e) {
|
||||
if (dragging) {
|
||||
//display the form on the right side of the cursor by default;
|
||||
Point zp = PointToScreen(new Point(e.X, e.Y));
|
||||
zoomer.setHotSpot(zp);
|
||||
}
|
||||
base.OnMouseMove(e);
|
||||
}
|
||||
/// <summary>
|
||||
/// Handle the mouse Move event, we move the ColorUnderCursor to the current location.
|
||||
/// </summary>
|
||||
/// <param name="e">MouseEventArgs</param>
|
||||
protected override void OnMouseMove(MouseEventArgs e) {
|
||||
if (dragging) {
|
||||
//display the form on the right side of the cursor by default;
|
||||
Point zp = PointToScreen(new Point(e.X, e.Y));
|
||||
movableShowColorForm.MoveTo(zp);
|
||||
}
|
||||
base.OnMouseMove(e);
|
||||
}
|
||||
|
||||
private Cursor CreateCursor(Bitmap bitmap, int x, int y) {
|
||||
IntPtr iconHandle = bitmap.GetHicon();
|
||||
IntPtr icon;
|
||||
IconInfo iconInfo = new IconInfo();
|
||||
User32.GetIconInfo(iconHandle, out iconInfo);
|
||||
iconInfo.xHotspot = 0;
|
||||
iconInfo.yHotspot = 15;
|
||||
iconInfo.fIcon = false;
|
||||
icon = User32.CreateIconIndirect(ref iconInfo);
|
||||
Cursor returnCursor = new Cursor(icon);
|
||||
//User32.DestroyIcon(icon);
|
||||
User32.DestroyIcon(iconHandle);
|
||||
return returnCursor;
|
||||
}
|
||||
|
||||
protected override void OnMouseCaptureChanged(EventArgs e) {
|
||||
if (this.Capture) {
|
||||
dragging = true;
|
||||
Image = null;
|
||||
Cursor c = _cursor;
|
||||
Cursor = c;
|
||||
zoomer.Visible = true;
|
||||
} else {
|
||||
dragging = false;
|
||||
Image = _image;
|
||||
Cursor = Cursors.Arrow;
|
||||
zoomer.Visible = false;
|
||||
}
|
||||
/// <summary>
|
||||
/// Handle the MouseCaptureChanged event
|
||||
/// </summary>
|
||||
/// <param name="e"></param>
|
||||
protected override void OnMouseCaptureChanged(EventArgs e) {
|
||||
if (this.Capture) {
|
||||
dragging = true;
|
||||
Image = null;
|
||||
Cursor c = _cursor;
|
||||
Cursor = c;
|
||||
movableShowColorForm.Visible = true;
|
||||
} else {
|
||||
dragging = false;
|
||||
Image = _image;
|
||||
Cursor = Cursors.Arrow;
|
||||
movableShowColorForm.Visible = false;
|
||||
}
|
||||
Update();
|
||||
base.OnMouseCaptureChanged(e);
|
||||
}
|
||||
base.OnMouseCaptureChanged(e);
|
||||
}
|
||||
|
||||
#region IMessageFilter Members
|
||||
#region IMessageFilter Members
|
||||
|
||||
public bool PreFilterMessage(ref Message m) {
|
||||
if (dragging) {
|
||||
public bool PreFilterMessage(ref Message m) {
|
||||
if (dragging) {
|
||||
if (m.Msg == (int)WindowsMessages.WM_CHAR) {
|
||||
if ((int)m.WParam == VK_ESC) {
|
||||
User32.ReleaseCapture();
|
||||
}
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
#endregion
|
||||
}
|
||||
|
||||
public class PipetteUsedArgs : EventArgs {
|
||||
public Color color;
|
||||
public class PipetteUsedArgs : EventArgs {
|
||||
public Color color;
|
||||
|
||||
public PipetteUsedArgs(Color c) {
|
||||
color = c;
|
||||
}
|
||||
}
|
||||
public PipetteUsedArgs(Color c) {
|
||||
color = c;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue