Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Visualization/HeuristicLab.Visualization/3.3/ChartMode.cs @ 13076

Last change on this file since 13076 was 13076, checked in by jkarder, 8 years ago

#1265: implemented new chart mode concept

File size: 2.4 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
22using System;
23using System.Drawing;
24using System.Windows.Forms;
25
26namespace HeuristicLab.Visualization {
27  public abstract class ChartMode {
28    protected readonly ChartControl chartControl;
29    protected Cursor cursor;
30    protected Point buttonDownPoint;
31    protected Point previousLocation;
32    protected int mouseClickCount;
33
34    public abstract Image Image { get; }
35    public abstract string ToolTip { get; }
36
37    public virtual Cursor Cursor {
38      get { return cursor ?? (cursor = Cursors.Default); }
39    }
40
41    protected ChartMode(ChartControl control) {
42      chartControl = control;
43    }
44
45    public virtual void HandleOnKeyDown(object sender, KeyEventArgs e) { }
46    public virtual void HandleOnKeyUp(object sender, KeyEventArgs e) { }
47    public virtual void HandleOnMouseClick(object sender, MouseEventArgs e) { }
48    public virtual void HandleOnMouseDoubleClick(object sender, MouseEventArgs e) { }
49    public virtual void HandleOnMouseWheel(object sender, MouseEventArgs e) { }
50
51    public virtual void HandleOnMouseDown(object sender, MouseEventArgs e) {
52      buttonDownPoint = e.Location;
53      mouseClickCount = e.Clicks;
54    }
55
56    public virtual void HandleOnMouseUp(object sender, MouseEventArgs e) { }
57    public virtual void HandleOnMouseMove(object sender, MouseEventArgs e) { }
58    public virtual void HandleOnMouseEnter(object sender, EventArgs e) { }
59    public virtual void HandleOnMouseLeave(object sender, EventArgs e) { }
60    public virtual void HandleOnClick(object sender, EventArgs e) { }
61  }
62}
Note: See TracBrowser for help on using the repository browser.