1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2008 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 |
|
---|
22 | using System;
|
---|
23 | using System.Collections.Generic;
|
---|
24 | using System.Text;
|
---|
25 | using System.Drawing;
|
---|
26 | using System.Windows.Forms;
|
---|
27 |
|
---|
28 | namespace HeuristicLab.Charting {
|
---|
29 | public interface IChart {
|
---|
30 | ChartMode Mode { get; set; }
|
---|
31 | PointD LowerLeft { get; }
|
---|
32 | PointD UpperRight { get; }
|
---|
33 | SizeD Size { get; }
|
---|
34 | Size SizeInPixels { get; }
|
---|
35 | SizeD PixelToWorldRatio { get; }
|
---|
36 | SizeD WorldToPixelRatio { get; }
|
---|
37 | IGroup Group { get; }
|
---|
38 | bool UpdateEnabled { get; }
|
---|
39 |
|
---|
40 | PointD TransformPixelToWorld(Point point);
|
---|
41 | SizeD TransformPixelToWorld(Size size);
|
---|
42 | Point TransformWorldToPixel(PointD point);
|
---|
43 | Size TransformWorldToPixel(SizeD size);
|
---|
44 |
|
---|
45 | void SetPosition(PointD lowerLeft, PointD upperRight);
|
---|
46 | void SetPosition(double x1, double y1, double x2, double y2);
|
---|
47 | void Move(Offset delta);
|
---|
48 | void Move(double dx, double dy);
|
---|
49 |
|
---|
50 | void ZoomIn(PointD lowerLeft, PointD upperRight);
|
---|
51 | void ZoomIn(double x1, double y1, double x2, double y2);
|
---|
52 | void ZoomIn(Point lowerLeft, Point upperRight);
|
---|
53 | void ZoomIn(int x1, int y1, int x2, int y2);
|
---|
54 | void ZoomOut();
|
---|
55 | void Unzoom();
|
---|
56 |
|
---|
57 | IPrimitive GetPrimitive(Point point);
|
---|
58 | IPrimitive GetPrimitive(int x, int y);
|
---|
59 | IList<IPrimitive> GetAllPrimitives(Point point);
|
---|
60 | IList<IPrimitive> GetAllPrimitives(int x, int y);
|
---|
61 |
|
---|
62 | Cursor GetCursor(Point point);
|
---|
63 | Cursor GetCursor(int x, int y);
|
---|
64 | string GetToolTipText(Point point);
|
---|
65 | string GetToolTipText(int x, int y);
|
---|
66 |
|
---|
67 | void MouseClick(Point point, MouseButtons button);
|
---|
68 | void MouseClick(int x, int y, MouseButtons button);
|
---|
69 | void MouseDoubleClick(Point point, MouseButtons button);
|
---|
70 | void MouseDoubleClick(int x, int y, MouseButtons button);
|
---|
71 | void MouseMove(Point start, Point end);
|
---|
72 | void MouseMove(int x1, int y1, int x2, int y2);
|
---|
73 | void MouseDrag(Point start, Point end, MouseButtons button);
|
---|
74 | void MouseDrag(int x1, int y1, int x2, int y2, MouseButtons button);
|
---|
75 |
|
---|
76 | void Render(Graphics graphics, int width, int height);
|
---|
77 |
|
---|
78 | event EventHandler Update;
|
---|
79 | void EnforceUpdate();
|
---|
80 | }
|
---|
81 | }
|
---|