Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/16/11 18:25:47 (12 years ago)
Author:
mkommend
Message:

#1715: Added type name to operator shapes.

Location:
trunk/sources/HeuristicLab.Operators.Views.GraphVisualization.Views/3.3
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Operators.Views.GraphVisualization.Views/3.3/OperatorShape.cs

    r6036 r7199  
    7878      set { title = value; }
    7979    }
     80
     81    public string TypeName { get; set; }
    8082
    8183    private IconMaterial iconMaterial;
     
    219221
    220222      SizeF titleSize = g.MeasureString(this.Title, ArtPalette.DefaultBoldFont, Rectangle.Width - 45);
    221       if (titleSize.Height + 10 > Rectangle.Height) {
    222         headerHeight = (int)titleSize.Height + 10;
     223      titleSize.Height += 10; //add spacing
     224      SizeF typeNameSize = g.MeasureString(this.TypeName, ArtPalette.DefaultFont, Rectangle.Width - 45);
     225      typeNameSize.Height += 10;  //add spacing
     226      if (this.Title == this.TypeName) typeNameSize = new SizeF(0, 0);
     227
     228      if (titleSize.Height + typeNameSize.Height > Rectangle.Height) {
     229        headerHeight = (int)titleSize.Height + (int)typeNameSize.Height;
    223230        this.UpdateLabels();
    224231      }
     
    264271
    265272      //the title
    266       g.DrawString(this.Title, ArtPalette.DefaultBoldFont, Brushes.Black, new Rectangle(Rectangle.X + 25, Rectangle.Y + 5, Rectangle.Width - 45, Rectangle.Height - 5));
     273      g.DrawString(this.Title, ArtPalette.DefaultBoldFont, Brushes.Black,
     274        new Rectangle(Rectangle.X + 25, Rectangle.Y + 5,
     275                      Rectangle.Width - 45, Rectangle.Height - 5 - (int)typeNameSize.Height));
     276
     277      //the typeName
     278      if (this.Title != this.TypeName) {
     279        g.DrawString(this.TypeName, ArtPalette.DefaultFont, Brushes.Black,
     280          new Rectangle(Rectangle.X + 25, Rectangle.Y + (int)titleSize.Height,
     281                        Rectangle.Width - 45, Rectangle.Height - 5));
     282      }
    267283
    268284
  • trunk/sources/HeuristicLab.Operators.Views.GraphVisualization.Views/3.3/ShapeInfoExtensions.cs

    r6036 r7199  
    5050      shape.Location = shapeInfo.Location;
    5151      shape.Title = shapeInfo.Title;
     52      shape.TypeName = shapeInfo.TypeName;
    5253      shape.Color = shapeInfo.Color;
    5354      shape.LineColor = shapeInfo.LineColor;
     
    6566    public static void UpdateShape(IOperatorShapeInfo operatorShapeInfo, OperatorShape operatorShape) {
    6667      operatorShape.Title = operatorShapeInfo.Title;
     68      operatorShape.TypeName = operatorShapeInfo.TypeName;
    6769      operatorShape.Color = operatorShapeInfo.Color;
    6870      operatorShape.LineColor = operatorShapeInfo.LineColor;
     
    105107    public static void UpdateShapeInfo(IOperatorShapeInfo operatorShapeInfo, OperatorShape operatorShape) {
    106108      operatorShapeInfo.Title = operatorShape.Title;
     109      operatorShapeInfo.TypeName = operatorShape.TypeName;
    107110      operatorShapeInfo.Color = operatorShape.Color;
    108111      operatorShapeInfo.LineColor = operatorShape.LineColor;
Note: See TracChangeset for help on using the changeset viewer.