1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
|
/*
* WaveformZoomUiImpl.cs
* Copyright © 2011 kbinani
*
* This file is part of org.kbinani.cadencii.
*
* org.kbinani.cadencii is free software; you can redistribute it and/or
* modify it under the terms of the GPLv3 License.
*
* org.kbinani.cadencii 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.
*/
using System;
using org.kbinani.java.awt;
using org.kbinani.windows.forms;
namespace org.kbinani.cadencii
{
using BMouseEventArgs = System.Windows.Forms.MouseEventArgs;
using boolean = System.Boolean;
using BPaintEventArgs = System.Windows.Forms.PaintEventArgs;
/// <summary>
/// 波形表示の拡大・縮小を行うためのパネルです.
/// </summary>
class WaveformZoomUiImpl : BPanel, WaveformZoomUi
{
/// <summary>
/// このビューのController
/// </summary>
private WaveformZoomUiListener mListener = null;
private Graphics2D mGraphicsPanel2 = null;
public void setListener( WaveformZoomUiListener listener )
{
mListener = listener;
}
protected override void OnPaint( System.Windows.Forms.PaintEventArgs e )
{
base.OnPaint( e );
if ( mGraphicsPanel2 == null )
{
mGraphicsPanel2 = new Graphics2D( null );
}
mGraphicsPanel2.nativeGraphics = e.Graphics;
Graphics g = mGraphicsPanel2;
mListener.receivePaintSignal( g );
}
protected override void OnMouseDown( System.Windows.Forms.MouseEventArgs e )
{
base.OnMouseDown( e );
mListener.receiveMouseDownSignal( e.X, e.Y );
}
protected override void OnMouseMove( System.Windows.Forms.MouseEventArgs e )
{
base.OnMouseMove( e );
mListener.receiveMouseMoveSignal( e.X, e.Y );
}
protected override void OnMouseUp( System.Windows.Forms.MouseEventArgs e )
{
base.OnMouseUp( e );
mListener.receiveMouseUpSignal( e.X, e.Y );
}
}
}
|