Free cookie consent management tool by TermsFeed Policy Generator

Changeset 3523


Ignore:
Timestamp:
04/25/10 16:26:09 (14 years ago)
Author:
mkommend
Message:

smaller changes in OperatorGraphVisualization (ticket #867)

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

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Operators.Views.GraphVisualization/3.3/OperatorGraphVisualization/OperatorGraphView.Designer.cs

    r3514 r3523  
    3535      this.zoomOutButton = new System.Windows.Forms.Button();
    3636      this.zoomInButton = new System.Windows.Forms.Button();
    37       this.zoomAreaButton = new System.Windows.Forms.Button();
     37      this.zoomToFitButton = new System.Windows.Forms.Button();
    3838      this.relayoutButton = new System.Windows.Forms.Button();
    3939      this.connectButton = new System.Windows.Forms.Button();
     
    107107      this.splitContainer.Panel1.Controls.Add(this.zoomOutButton);
    108108      this.splitContainer.Panel1.Controls.Add(this.zoomInButton);
    109       this.splitContainer.Panel1.Controls.Add(this.zoomAreaButton);
     109      this.splitContainer.Panel1.Controls.Add(this.zoomToFitButton);
    110110      this.splitContainer.Panel1.Controls.Add(this.relayoutButton);
    111111      this.splitContainer.Panel1.Controls.Add(this.connectButton);
     
    156156      // zoomAreaButton
    157157      //
    158       this.zoomAreaButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.ActualSize;
    159       this.zoomAreaButton.Location = new System.Drawing.Point(153, 3);
    160       this.zoomAreaButton.Name = "zoomAreaButton";
    161       this.zoomAreaButton.Size = new System.Drawing.Size(24, 24);
    162       this.zoomAreaButton.TabIndex = 5;
    163       this.buttonToolTip.SetToolTip(this.zoomAreaButton, "Zoom Area Tool");
    164       this.zoomAreaButton.UseVisualStyleBackColor = true;
    165       this.zoomAreaButton.Click += new System.EventHandler(this.zoomAreaButton_Click);
     158      this.zoomToFitButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.ActualSize;
     159      this.zoomToFitButton.Location = new System.Drawing.Point(153, 3);
     160      this.zoomToFitButton.Name = "zoomAreaButton";
     161      this.zoomToFitButton.Size = new System.Drawing.Size(24, 24);
     162      this.zoomToFitButton.TabIndex = 5;
     163      this.buttonToolTip.SetToolTip(this.zoomToFitButton, "Zoom to Fit");
     164      this.zoomToFitButton.UseVisualStyleBackColor = true;
     165      this.zoomToFitButton.Click += new System.EventHandler(this.zoomAreaButton_Click);
    166166      //
    167167      // relayoutButton
     
    267267    private System.Windows.Forms.Button zoomOutButton;
    268268    private System.Windows.Forms.Button zoomInButton;
    269     private System.Windows.Forms.Button zoomAreaButton;
     269    private System.Windows.Forms.Button zoomToFitButton;
    270270    private System.Windows.Forms.Button relayoutButton;
    271271    private System.Windows.Forms.Button connectButton;
  • trunk/sources/HeuristicLab.Operators.Views.GraphVisualization/3.3/OperatorGraphVisualization/OperatorGraphView.cs

    r3514 r3523  
    9191        panButton.Enabled = false;
    9292        relayoutButton.Enabled = false;
    93         zoomAreaButton.Enabled = false;
     93        zoomToFitButton.Enabled = false;
    9494        zoomInButton.Enabled = false;
    9595        zoomOutButton.Enabled = false;
     
    101101        panButton.Enabled = true;
    102102        relayoutButton.Enabled = true;
    103         zoomAreaButton.Enabled = true;
     103        zoomToFitButton.Enabled = true;
    104104        zoomInButton.Enabled = true;
    105105        zoomOutButton.Enabled = true;
     
    281281          break;
    282282        case ControllerBase.ZoomAreaToolName:
    283           button = this.zoomAreaButton;
     283          button = this.zoomToFitButton;
    284284          break;
    285285      }
Note: See TracChangeset for help on using the changeset viewer.