Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Visualization/HeuristicLab.Visualization/3.3/Primitives/LabeledRectangle.cs @ 10516

Last change on this file since 10516 was 10516, checked in by bburlacu, 10 years ago

#1265: Replaced LabeledPrimitive with LabeledEllipse and LabeledRectangle, removed TextPrimitive (no need having another primitive type just for text). Removed project .user file.

File size: 2.2 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2014 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.Drawing;
23
24namespace HeuristicLab.Visualization.Primitives {
25  public class LabeledRectangle : Rectangle {
26    public Font Font { get; set; }
27    public string Text { get; set; }
28
29    public LabeledRectangle(IChart chart, PointD lowerLeft, PointD upperRight) : base(chart, lowerLeft, upperRight) { }
30
31    public LabeledRectangle(IChart chart, PointD lowerLeft, PointD upperRight, Pen pen, Brush brush) : base(chart, lowerLeft, upperRight, pen, brush) { }
32
33    public LabeledRectangle(IChart chart, double x1, double y1, double x2, double y2) : this(chart, new PointD(x1, y1), new PointD(x2, y2)) { }
34
35    public override void Draw(Graphics graphics) {
36      base.Draw(graphics);
37      // draw the text in the center of the bounding rectangle4
38      var p = Chart.TransformWorldToPixel(new PointD(LowerLeft.X, LowerLeft.Y));
39      var s = Chart.TransformWorldToPixel(Size);
40      var stringSize = graphics.MeasureString(Text, Font);
41      var fontSize = Font.Size * s.Width / stringSize.Width;
42      if (fontSize > 12) fontSize = 12; // limit maximum font size so that nodes look nicer
43      Font = new Font(Font.FontFamily, fontSize, GraphicsUnit.Pixel);
44      stringSize = graphics.MeasureString(Text, Font);
45      graphics.DrawString(Text, Font, new SolidBrush(Pen.Color), p.X + (s.Width - stringSize.Width) / 2f, p.Y - (s.Height + stringSize.Height) / 2f);
46    }
47  }
48}
Note: See TracBrowser for help on using the repository browser.