Free cookie consent management tool by TermsFeed Policy Generator

Changeset 9910 for trunk/sources


Ignore:
Timestamp:
08/27/13 12:04:13 (11 years ago)
Author:
ascheibe
Message:

#2099 renamed run collection views

Location:
trunk/sources/HeuristicLab.Optimization.Views/3.3
Files:
3 edited
4 moved

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Optimization.Views/3.3/HeuristicLab.Optimization.Views-3.3.csproj

    r9438 r9910  
    239239      <DependentUpon>RunCollectionEqualityConstraintView.cs</DependentUpon>
    240240    </Compile>
    241     <Compile Include="RunCollectionViews\RunCollectionTabularView.cs">
    242       <SubType>UserControl</SubType>
    243     </Compile>
    244     <Compile Include="RunCollectionViews\RunCollectionTabularView.Designer.cs">
    245       <DependentUpon>RunCollectionTabularView.cs</DependentUpon>
     241    <Compile Include="RunCollectionViews\RunCollectionTableView.cs">
     242      <SubType>UserControl</SubType>
     243    </Compile>
     244    <Compile Include="RunCollectionViews\RunCollectionTableView.Designer.cs">
     245      <DependentUpon>RunCollectionTableView.cs</DependentUpon>
    246246    </Compile>
    247247    <Compile Include="RunCollectionViews\RunCollectionView.cs">
     
    257257      <DependentUpon>RunView.cs</DependentUpon>
    258258    </Compile>
    259     <Compile Include="RunCollectionViews\RunCollectionDataTableView.cs">
    260       <SubType>UserControl</SubType>
    261     </Compile>
    262     <Compile Include="RunCollectionViews\RunCollectionDataTableView.Designer.cs">
    263       <DependentUpon>RunCollectionDataTableView.cs</DependentUpon>
     259    <Compile Include="RunCollectionViews\RunCollectionChartAggregationView.cs">
     260      <SubType>UserControl</SubType>
     261    </Compile>
     262    <Compile Include="RunCollectionViews\RunCollectionChartAggregationView.Designer.cs">
     263      <DependentUpon>RunCollectionChartAggregationView.cs</DependentUpon>
    264264    </Compile>
    265265    <Compile Include="UserDefinedAlgorithmView.cs">
  • trunk/sources/HeuristicLab.Optimization.Views/3.3/RunCollectionViews/RunCollectionBoxPlotView.cs

    r9456 r9910  
    3232
    3333namespace HeuristicLab.Optimization.Views {
    34   [View("RunCollection BoxPlots")]
     34  [View("Box Plot")]
    3535  [Content(typeof(RunCollection), false)]
    3636  public partial class RunCollectionBoxPlotView : AsynchronousContentView {
     
    159159
    160160    private void UpdateCaption() {
    161       Caption = Content != null ? Content.OptimizerName + " Box Plots" : ViewAttribute.GetViewName(GetType());
     161      Caption = Content != null ? Content.OptimizerName + " Box Plot" : ViewAttribute.GetViewName(GetType());
    162162    }
    163163
  • trunk/sources/HeuristicLab.Optimization.Views/3.3/RunCollectionViews/RunCollectionBubbleChartView.cs

    r9456 r9910  
    3333
    3434namespace HeuristicLab.Optimization.Views {
    35   [View("RunCollection BubbleChart")]
     35  [View("Bubble Chart")]
    3636  [Content(typeof(RunCollection), false)]
    3737  public partial class RunCollectionBubbleChartView : AsynchronousContentView {
  • trunk/sources/HeuristicLab.Optimization.Views/3.3/RunCollectionViews/RunCollectionChartAggregationView.Designer.cs

    r9909 r9910  
    2020#endregion
    2121namespace HeuristicLab.Optimization.Views {
    22   partial class RunCollectionDataTableView {
     22  partial class RunCollectionChartAggregationView {
    2323    /// <summary>
    2424    /// Required designer variable.
     
    109109      this.dataRowComboBox.SelectedIndexChanged += new System.EventHandler(this.dataRowComboBox_SelectedIndexChanged);
    110110      //
    111       // RunCollectionDataTableView
     111      // RunCollectionChartAggregationView
    112112      //
    113113      this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
     
    118118      this.Controls.Add(this.label1);
    119119      this.Controls.Add(this.dataTableComboBox);
    120       this.Name = "RunCollectionDataTableView";
     120      this.Name = "RunCollectionChartAggregationView";
    121121      this.Size = new System.Drawing.Size(527, 374);
    122122      this.ResumeLayout(false);
  • trunk/sources/HeuristicLab.Optimization.Views/3.3/RunCollectionViews/RunCollectionChartAggregationView.cs

    r9909 r9910  
    3030
    3131namespace HeuristicLab.Optimization.Views {
    32   [View("RunCollection DataTableView")]
     32  [View("Chart Aggregation")]
    3333  [Content(typeof(RunCollection), false)]
    34   public partial class RunCollectionDataTableView : ItemView {
     34  public partial class RunCollectionChartAggregationView : ItemView {
    3535    private const string AllDataRows = "All DataRows";
    3636
     
    4848    }
    4949
    50     public RunCollectionDataTableView() {
     50    public RunCollectionChartAggregationView() {
    5151      InitializeComponent();
    5252      runMapping = new Dictionary<IRun, IEnumerable<DataRow>>();
     
    204204
    205205    private void UpdateCaption() {
    206       Caption = Content != null ? Content.OptimizerName + " Data Table" : ViewAttribute.GetViewName(GetType());
     206      Caption = Content != null ? Content.OptimizerName + " Chart Aggregation" : ViewAttribute.GetViewName(GetType());
    207207    }
    208208
  • trunk/sources/HeuristicLab.Optimization.Views/3.3/RunCollectionViews/RunCollectionTableView.Designer.cs

    r9909 r9910  
    2121
    2222namespace HeuristicLab.Optimization.Views {
    23   partial class RunCollectionTabularView {
     23  partial class RunCollectionTableView {
    2424    /// <summary>
    2525    /// Required designer variable.
     
    5353      this.errorProvider.SetIconPadding(this.rowsTextBox, 2);
    5454      //
    55       // RunCollectionTabularView
     55      // RunCollectionTableView
    5656      //
    5757      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
    58       this.Name = "RunCollectionTabularView";
     58      this.Name = "RunCollectionTableView";
    5959      this.ShowStatisticalInformation = true;
    6060      this.Controls.SetChildIndex(this.rowsLabel, 0);
  • trunk/sources/HeuristicLab.Optimization.Views/3.3/RunCollectionViews/RunCollectionTableView.cs

    r9909 r9910  
    2929
    3030namespace HeuristicLab.Optimization.Views {
    31   [View("RunCollection Tabular View")]
     31  [View("Table")]
    3232  [Content(typeof(RunCollection), false)]
    33   public sealed partial class RunCollectionTabularView : StringConvertibleMatrixView {
     33  public sealed partial class RunCollectionTableView : StringConvertibleMatrixView {
    3434    private int[] runToRowMapping;
    3535    private bool suppressUpdates = false;
    36     public RunCollectionTabularView() {
     36    public RunCollectionTableView() {
    3737      InitializeComponent();
    3838      dataGridView.RowHeaderMouseDoubleClick += new DataGridViewCellMouseEventHandler(dataGridView_RowHeaderMouseDoubleClick);
     
    112112
    113113    private void UpdateCaption() {
    114       Caption = Content != null ? Content.OptimizerName + " Tabular View" : ViewAttribute.GetViewName(GetType());
     114      Caption = Content != null ? Content.OptimizerName + " Table" : ViewAttribute.GetViewName(GetType());
    115115    }
    116116
Note: See TracChangeset for help on using the changeset viewer.