Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/01/10 16:22:11 (14 years ago)
Author:
mkommend
Message:

added buttons to view (ticket #867)

File:
1 edited

Legend:

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

    r2898 r2899  
    3333      this.detailsGroupBox = new System.Windows.Forms.GroupBox();
    3434      this.detailsViewHost = new HeuristicLab.Core.Views.ViewHost();
    35       this.connectorToolTip = new System.Windows.Forms.ToolTip(this.components);
     35      this.selectButton = new System.Windows.Forms.Button();
     36      this.panButton = new System.Windows.Forms.Button();
     37      this.connectButton = new System.Windows.Forms.Button();
     38      this.relayoutButton = new System.Windows.Forms.Button();
     39      this.zoomAreaButton = new System.Windows.Forms.Button();
     40      this.zoomInButton = new System.Windows.Forms.Button();
     41      this.zoomOutButton = new System.Windows.Forms.Button();
    3642      this.shapeContextMenu.SuspendLayout();
    3743      this.splitContainer.Panel1.SuspendLayout();
     
    4349      // graphVisualizationInfoView
    4450      //
     51      this.graphVisualizationInfoView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     52                  | System.Windows.Forms.AnchorStyles.Left)
     53                  | System.Windows.Forms.AnchorStyles.Right)));
    4554      this.graphVisualizationInfoView.Caption = null;
    4655      this.graphVisualizationInfoView.Content = null;
    47       this.graphVisualizationInfoView.Dock = System.Windows.Forms.DockStyle.Fill;
    48       this.graphVisualizationInfoView.Location = new System.Drawing.Point(0, 0);
     56      this.graphVisualizationInfoView.Location = new System.Drawing.Point(0, 27);
    4957      this.graphVisualizationInfoView.Name = "graphVisualizationInfoView";
    50       this.graphVisualizationInfoView.Size = new System.Drawing.Size(665, 279);
     58      this.graphVisualizationInfoView.Size = new System.Drawing.Size(665, 251);
    5159      this.graphVisualizationInfoView.TabIndex = 0;
    5260      //
     
    9199      // splitContainer.Panel1
    92100      //
     101      this.splitContainer.Panel1.Controls.Add(this.zoomOutButton);
     102      this.splitContainer.Panel1.Controls.Add(this.zoomInButton);
     103      this.splitContainer.Panel1.Controls.Add(this.zoomAreaButton);
     104      this.splitContainer.Panel1.Controls.Add(this.relayoutButton);
     105      this.splitContainer.Panel1.Controls.Add(this.connectButton);
     106      this.splitContainer.Panel1.Controls.Add(this.panButton);
     107      this.splitContainer.Panel1.Controls.Add(this.selectButton);
    93108      this.splitContainer.Panel1.Controls.Add(this.graphVisualizationInfoView);
    94109      //
     
    121136      this.detailsViewHost.ViewType = null;
    122137      //
    123       // connectorToolTip
    124       //
    125       this.connectorToolTip.IsBalloon = true;
     138      // selectButton
     139      //
     140      this.selectButton.Image = HeuristicLab.Common.Resources.Resources.FlagGreenIcon;
     141      this.selectButton.Location = new System.Drawing.Point(3, 3);
     142      this.selectButton.Name = "selectButton";
     143      this.selectButton.Size = new System.Drawing.Size(24, 24);
     144      this.selectButton.TabIndex = 1;
     145      this.selectButton.UseVisualStyleBackColor = true;
     146      this.selectButton.Click += new System.EventHandler(selectButton_Click);
     147      //
     148      // panButton
     149      //
     150      this.panButton.Image = HeuristicLab.Common.Resources.Resources.FlagRedIcon;
     151      this.panButton.Location = new System.Drawing.Point(33, 3);
     152      this.panButton.Name = "panButton";
     153      this.panButton.Size = new System.Drawing.Size(24, 24);
     154      this.panButton.TabIndex = 2;
     155      this.panButton.UseVisualStyleBackColor = true;
     156      this.panButton.Click += new System.EventHandler(panButton_Click);
     157      //
     158      // connectButton
     159      //
     160      this.connectButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Interface;
     161      this.connectButton.Location = new System.Drawing.Point(63, 3);
     162      this.connectButton.Name = "connectButton";
     163      this.connectButton.Size = new System.Drawing.Size(24, 24);
     164      this.connectButton.TabIndex = 3;
     165      this.connectButton.UseVisualStyleBackColor = true;
     166      this.connectButton.Click += new System.EventHandler(connectButton_Click);
     167      //
     168      // relayoutButton
     169      //
     170      this.relayoutButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.RefreshDocument;
     171      this.relayoutButton.Location = new System.Drawing.Point(123, 3);
     172      this.relayoutButton.Name = "relayoutButton";
     173      this.relayoutButton.Size = new System.Drawing.Size(24, 24);
     174      this.relayoutButton.TabIndex = 4;
     175      this.relayoutButton.UseVisualStyleBackColor = true;
     176      this.relayoutButton.Click += new System.EventHandler(relayoutButton_Click);
     177      //
     178      // zoomAreaButton
     179      //
     180      this.zoomAreaButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Zoom;
     181      this.zoomAreaButton.Location = new System.Drawing.Point(153, 3);
     182      this.zoomAreaButton.Name = "zoomAreaButton";
     183      this.zoomAreaButton.Size = new System.Drawing.Size(24, 24);
     184      this.zoomAreaButton.TabIndex = 5;
     185      this.zoomAreaButton.UseVisualStyleBackColor = true;
     186      this.zoomAreaButton.Click += new System.EventHandler(zoomAreaButton_Click);
     187      //
     188      // zoomInButton
     189      //
     190      this.zoomInButton.Image = HeuristicLab.Common.Resources.Resources.ShowLargeIcons;
     191      this.zoomInButton.Location = new System.Drawing.Point(183, 3);
     192      this.zoomInButton.Name = "zoomInButton";
     193      this.zoomInButton.Size = new System.Drawing.Size(24, 24);
     194      this.zoomInButton.TabIndex = 6;
     195      this.zoomInButton.UseVisualStyleBackColor = true;
     196      this.zoomInButton.Click += new System.EventHandler(zoomInButton_Click);
     197      //
     198      // zoomOutButton
     199      //
     200      this.zoomOutButton.Image = HeuristicLab.Common.Resources.Resources.ShowSmallIcons;
     201      this.zoomOutButton.Location = new System.Drawing.Point(213, 3);
     202      this.zoomOutButton.Name = "zoomOutButton";
     203      this.zoomOutButton.Size = new System.Drawing.Size(24, 24);
     204      this.zoomOutButton.TabIndex = 7;
     205      this.zoomOutButton.UseVisualStyleBackColor = true;
     206      this.zoomOutButton.Click += new System.EventHandler(zoomOutButton_Click);
    126207      //
    127208      // OperatorGraphView
     
    153234    private System.Windows.Forms.GroupBox detailsGroupBox;
    154235    private HeuristicLab.Core.Views.ViewHost detailsViewHost;
    155     private System.Windows.Forms.ToolTip connectorToolTip;
     236    private System.Windows.Forms.Button selectButton;
     237    private System.Windows.Forms.Button zoomOutButton;
     238    private System.Windows.Forms.Button zoomInButton;
     239    private System.Windows.Forms.Button zoomAreaButton;
     240    private System.Windows.Forms.Button relayoutButton;
     241    private System.Windows.Forms.Button connectButton;
     242    private System.Windows.Forms.Button panButton;
    156243  }
    157244}
Note: See TracChangeset for help on using the changeset viewer.