Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/07/17 17:15:50 (7 years ago)
Author:
abeham
Message:

#2634:

  • changed relative/absolute checkbox button into combobox
  • added optional markers
  • added translucency of line in case run-data is more scarce (e.g. because they're already terminated)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Optimization.Views/3.3/RunCollectionViews/RunCollectionRLDView.Designer.cs

    r14647 r14652  
    6464      this.tabControl = new System.Windows.Forms.TabControl();
    6565      this.byTargetTabPage = new System.Windows.Forms.TabPage();
     66      this.relativeOrAbsoluteComboBox = new System.Windows.Forms.ComboBox();
    6667      this.targetChart = new HeuristicLab.Visualization.ChartControlsExtensions.EnhancedChart();
     68      this.markerCheckBox = new System.Windows.Forms.CheckBox();
    6769      this.boundShadingCheckBox = new System.Windows.Forms.CheckBox();
    68       this.targetsRelativeCheckBox = new System.Windows.Forms.CheckBox();
    6970      this.byCostTabPage = new System.Windows.Forms.TabPage();
    7071      this.byCostViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
    7172      this.budgetLogScalingCheckBox = new System.Windows.Forms.CheckBox();
    72       this.eachOrAllBudgetsCheckBox = new System.Windows.Forms.CheckBox();
     73      this.aggregateBudgetsCheckBox = new System.Windows.Forms.CheckBox();
    7374      this.generateBudgetsButton = new System.Windows.Forms.Button();
    7475      this.byTableTabPage = new System.Windows.Forms.TabPage();
     
    144145      this.targetsTextBox.Location = new System.Drawing.Point(59, 8);
    145146      this.targetsTextBox.Name = "targetsTextBox";
    146       this.targetsTextBox.Size = new System.Drawing.Size(211, 20);
     147      this.targetsTextBox.Size = new System.Drawing.Size(204, 20);
    147148      this.targetsTextBox.TabIndex = 1;
    148149      this.toolTip.SetToolTip(this.targetsTextBox, "The order of the targets is important, first to-hit targets\r\nshould be given firs" +
     
    201202      this.budgetsTextBox.Location = new System.Drawing.Point(59, 8);
    202203      this.budgetsTextBox.Name = "budgetsTextBox";
    203       this.budgetsTextBox.Size = new System.Drawing.Size(326, 20);
     204      this.budgetsTextBox.Size = new System.Drawing.Size(309, 20);
    204205      this.budgetsTextBox.TabIndex = 6;
    205206      this.budgetsTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.budgetsTextBox_Validating);
     
    222223      this.aggregateTargetsCheckBox.Checked = true;
    223224      this.aggregateTargetsCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
    224       this.aggregateTargetsCheckBox.Location = new System.Drawing.Point(353, 10);
     225      this.aggregateTargetsCheckBox.Location = new System.Drawing.Point(374, 10);
    225226      this.aggregateTargetsCheckBox.Name = "aggregateTargetsCheckBox";
    226227      this.aggregateTargetsCheckBox.Size = new System.Drawing.Size(74, 17);
     
    246247      // byTargetTabPage
    247248      //
     249      this.byTargetTabPage.Controls.Add(this.relativeOrAbsoluteComboBox);
    248250      this.byTargetTabPage.Controls.Add(this.targetChart);
     251      this.byTargetTabPage.Controls.Add(this.markerCheckBox);
    249252      this.byTargetTabPage.Controls.Add(this.boundShadingCheckBox);
    250253      this.byTargetTabPage.Controls.Add(this.targetLogScalingCheckBox);
    251254      this.byTargetTabPage.Controls.Add(this.targetsLabel);
    252       this.byTargetTabPage.Controls.Add(this.targetsRelativeCheckBox);
    253255      this.byTargetTabPage.Controls.Add(this.aggregateTargetsCheckBox);
    254256      this.byTargetTabPage.Controls.Add(this.targetsTextBox);
     
    262264      this.byTargetTabPage.Text = "Performance by Target";
    263265      this.byTargetTabPage.UseVisualStyleBackColor = true;
     266      //
     267      // relativeOrAbsoluteComboBox
     268      //
     269      this.relativeOrAbsoluteComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     270      this.relativeOrAbsoluteComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     271      this.relativeOrAbsoluteComboBox.FormattingEnabled = true;
     272      this.relativeOrAbsoluteComboBox.Items.AddRange(new object[] {
     273            "relative",
     274            "absolute"});
     275      this.relativeOrAbsoluteComboBox.Location = new System.Drawing.Point(269, 8);
     276      this.relativeOrAbsoluteComboBox.Name = "relativeOrAbsoluteComboBox";
     277      this.relativeOrAbsoluteComboBox.Size = new System.Drawing.Size(99, 21);
     278      this.relativeOrAbsoluteComboBox.TabIndex = 8;
     279      this.relativeOrAbsoluteComboBox.SelectedIndexChanged += new System.EventHandler(this.relativeOrAbsoluteComboBox_SelectedIndexChanged);
    264280      //
    265281      // targetChart
     
    293309      this.targetChart.MouseMove += new System.Windows.Forms.MouseEventHandler(this.chart_MouseMove);
    294310      //
     311      // markerCheckBox
     312      //
     313      this.markerCheckBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     314      this.markerCheckBox.AutoSize = true;
     315      this.markerCheckBox.Location = new System.Drawing.Point(229, 364);
     316      this.markerCheckBox.Name = "markerCheckBox";
     317      this.markerCheckBox.Size = new System.Drawing.Size(91, 17);
     318      this.markerCheckBox.TabIndex = 6;
     319      this.markerCheckBox.Text = "show markers";
     320      this.markerCheckBox.UseVisualStyleBackColor = true;
     321      this.markerCheckBox.CheckedChanged += new System.EventHandler(this.markerCheckBox_CheckedChanged);
     322      //
    295323      // boundShadingCheckBox
    296324      //
     
    307335      this.boundShadingCheckBox.CheckedChanged += new System.EventHandler(this.boundShadingCheckBox_CheckedChanged);
    308336      //
    309       // targetsRelativeCheckBox
    310       //
    311       this.targetsRelativeCheckBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
    312       this.targetsRelativeCheckBox.Appearance = System.Windows.Forms.Appearance.Button;
    313       this.targetsRelativeCheckBox.Checked = true;
    314       this.targetsRelativeCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
    315       this.targetsRelativeCheckBox.Location = new System.Drawing.Point(276, 6);
    316       this.targetsRelativeCheckBox.Name = "targetsRelativeCheckBox";
    317       this.targetsRelativeCheckBox.Size = new System.Drawing.Size(65, 23);
    318       this.targetsRelativeCheckBox.TabIndex = 2;
    319       this.targetsRelativeCheckBox.Text = "relative";
    320       this.targetsRelativeCheckBox.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
    321       this.targetsRelativeCheckBox.UseVisualStyleBackColor = true;
    322       this.targetsRelativeCheckBox.CheckedChanged += new System.EventHandler(this.targetsRelativeCheckBox_CheckedChanged);
    323       //
    324337      // byCostTabPage
    325338      //
    326339      this.byCostTabPage.Controls.Add(this.byCostViewHost);
    327340      this.byCostTabPage.Controls.Add(this.budgetLogScalingCheckBox);
    328       this.byCostTabPage.Controls.Add(this.eachOrAllBudgetsCheckBox);
     341      this.byCostTabPage.Controls.Add(this.aggregateBudgetsCheckBox);
    329342      this.byCostTabPage.Controls.Add(this.generateBudgetsButton);
    330343      this.byCostTabPage.Controls.Add(this.budgetsLabel);
     
    367380      this.budgetLogScalingCheckBox.CheckedChanged += new System.EventHandler(this.logScalingCheckBox_CheckedChanged);
    368381      //
    369       // eachOrAllBudgetsCheckBox
    370       //
    371       this.eachOrAllBudgetsCheckBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
    372       this.eachOrAllBudgetsCheckBox.AutoSize = true;
    373       this.eachOrAllBudgetsCheckBox.Location = new System.Drawing.Point(414, 10);
    374       this.eachOrAllBudgetsCheckBox.Name = "eachOrAllBudgetsCheckBox";
    375       this.eachOrAllBudgetsCheckBox.Size = new System.Drawing.Size(36, 17);
    376       this.eachOrAllBudgetsCheckBox.TabIndex = 10;
    377       this.eachOrAllBudgetsCheckBox.Text = "all";
    378       this.eachOrAllBudgetsCheckBox.UseVisualStyleBackColor = true;
    379       this.eachOrAllBudgetsCheckBox.CheckedChanged += new System.EventHandler(this.eachOrAllBudgetsCheckBox_CheckedChanged);
     382      // aggregateBudgetsCheckBox
     383      //
     384      this.aggregateBudgetsCheckBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     385      this.aggregateBudgetsCheckBox.AutoSize = true;
     386      this.aggregateBudgetsCheckBox.Checked = true;
     387      this.aggregateBudgetsCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
     388      this.aggregateBudgetsCheckBox.Location = new System.Drawing.Point(374, 10);
     389      this.aggregateBudgetsCheckBox.Name = "aggregateBudgetsCheckBox";
     390      this.aggregateBudgetsCheckBox.Size = new System.Drawing.Size(74, 17);
     391      this.aggregateBudgetsCheckBox.TabIndex = 10;
     392      this.aggregateBudgetsCheckBox.Text = "aggregate";
     393      this.aggregateBudgetsCheckBox.UseVisualStyleBackColor = true;
     394      this.aggregateBudgetsCheckBox.CheckedChanged += new System.EventHandler(this.aggregateBudgetsCheckBox_CheckedChanged);
    380395      //
    381396      // generateBudgetsButton
     
    481496    private System.Windows.Forms.TabPage byCostTabPage;
    482497    private System.Windows.Forms.TabPage byTableTabPage;
    483     private System.Windows.Forms.CheckBox eachOrAllBudgetsCheckBox;
     498    private System.Windows.Forms.CheckBox aggregateBudgetsCheckBox;
    484499    private System.Windows.Forms.Button generateBudgetsButton;
    485500    private System.Windows.Forms.CheckBox budgetLogScalingCheckBox;
     
    490505    private MainForm.WindowsForms.ViewHost byCostViewHost;
    491506    private System.Windows.Forms.CheckBox boundShadingCheckBox;
    492     private System.Windows.Forms.CheckBox targetsRelativeCheckBox;
     507    private System.Windows.Forms.CheckBox markerCheckBox;
     508    private System.Windows.Forms.ComboBox relativeOrAbsoluteComboBox;
    493509  }
    494510}
Note: See TracChangeset for help on using the changeset viewer.