Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/02/12 13:53:51 (12 years ago)
Author:
sforsten
Message:

#1784:

  • added abstract ProblemInstanceProviderView
  • changes !IProblemInstanceConsumer and !IProblemInstanceExporter interfaces
  • deleted unnecessary files
Location:
branches/ProblemInstancesRegressionAndClassification/HeuristicLab.Problems.Instances.Views/3.4
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/ProblemInstancesRegressionAndClassification/HeuristicLab.Problems.Instances.Views/3.4

    • Property svn:ignore
      •  

        old new  
        22HeuristicLab.Problems.Instances.Views-3.4.csproj.user
        33obj
         4Plugin.cs
  • branches/ProblemInstancesRegressionAndClassification/HeuristicLab.Problems.Instances.Views/3.4/ProblemInstanceProviderView.Designer.cs

    r7665 r7683  
    2121
    2222namespace HeuristicLab.Problems.Instances.Views {
    23   partial class ProblemInstanceProviderView<T> {
     23  partial class ProblemInstanceProviderView {
    2424    /// <summary>
    2525    /// Required designer variable.
     
    4545    /// </summary>
    4646    private void InitializeComponent() {
    47       this.components = new System.ComponentModel.Container();
    48       this.loadButton = new System.Windows.Forms.Button();
    49       this.instanceLabel = new System.Windows.Forms.Label();
    50       this.instancesComboBox = new System.Windows.Forms.ComboBox();
    51       this.importButton = new System.Windows.Forms.Button();
    52       this.openFileDialog = new System.Windows.Forms.OpenFileDialog();
    53       this.toolTip = new System.Windows.Forms.ToolTip(this.components);
    54       this.exportButton = new System.Windows.Forms.Button();
    55       this.saveFileDialog = new System.Windows.Forms.SaveFileDialog();
    56       this.problemInstanceProviderSplitContainer = new System.Windows.Forms.SplitContainer();
    57       ((System.ComponentModel.ISupportInitialize)(this.problemInstanceProviderSplitContainer)).BeginInit();
    58       this.problemInstanceProviderSplitContainer.Panel1.SuspendLayout();
    59       this.problemInstanceProviderSplitContainer.Panel2.SuspendLayout();
    60       this.problemInstanceProviderSplitContainer.SuspendLayout();
    6147      this.SuspendLayout();
    62       //
    63       // loadButton
    64       //
    65       this.loadButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
    66       this.loadButton.Location = new System.Drawing.Point(604, 0);
    67       this.loadButton.Name = "loadButton";
    68       this.loadButton.Size = new System.Drawing.Size(26, 23);
    69       this.loadButton.TabIndex = 6;
    70       this.loadButton.Text = "Load";
    71       this.loadButton.UseVisualStyleBackColor = true;
    72       this.loadButton.Click += new System.EventHandler(this.loadButton_Click);
    73       //
    74       // instanceLabel
    75       //
    76       this.instanceLabel.AutoSize = true;
    77       this.instanceLabel.Location = new System.Drawing.Point(3, 4);
    78       this.instanceLabel.Name = "instanceLabel";
    79       this.instanceLabel.Size = new System.Drawing.Size(51, 13);
    80       this.instanceLabel.TabIndex = 4;
    81       this.instanceLabel.Text = "Instance:";
    82       //
    83       // instancesComboBox
    84       //
    85       this.instancesComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
    86             | System.Windows.Forms.AnchorStyles.Right)));
    87       this.instancesComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
    88       this.instancesComboBox.FormattingEnabled = true;
    89       this.instancesComboBox.Location = new System.Drawing.Point(60, 1);
    90       this.instancesComboBox.Name = "instancesComboBox";
    91       this.instancesComboBox.Size = new System.Drawing.Size(538, 21);
    92       this.instancesComboBox.TabIndex = 7;
    93       this.instancesComboBox.DataSourceChanged += new System.EventHandler(this.comboBox_DataSourceChanged);
    94       //
    95       // importButton
    96       //
    97       this.importButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
    98       this.importButton.Location = new System.Drawing.Point(636, 0);
    99       this.importButton.Name = "importButton";
    100       this.importButton.Size = new System.Drawing.Size(26, 23);
    101       this.importButton.TabIndex = 6;
    102       this.importButton.Text = "Import";
    103       this.importButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
    104       this.importButton.UseVisualStyleBackColor = true;
    105       this.importButton.Click += new System.EventHandler(this.importButton_Click);
    106       //
    107       // openFileDialog
    108       //
    109       this.openFileDialog.Filter = "All files|*.*";
    110       //
    111       // exportButton
    112       //
    113       this.exportButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
    114       this.exportButton.Location = new System.Drawing.Point(-1, 0);
    115       this.exportButton.Name = "exportButton";
    116       this.exportButton.Size = new System.Drawing.Size(26, 23);
    117       this.exportButton.TabIndex = 8;
    118       this.exportButton.Text = "Export";
    119       this.exportButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
    120       this.exportButton.UseVisualStyleBackColor = true;
    121       this.exportButton.Click += new System.EventHandler(this.exportButton_Click);
    122       //
    123       // saveFileDialog
    124       //
    125       this.saveFileDialog.Filter = "CSV files|*.csv|All files|*.*";
    126       this.saveFileDialog.Title = "Save RegressionInstance...";
    127       //
    128       // problemInstanceProviderSplitContainer
    129       //
    130       this.problemInstanceProviderSplitContainer.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
    131             | System.Windows.Forms.AnchorStyles.Left)
    132             | System.Windows.Forms.AnchorStyles.Right)));
    133       this.problemInstanceProviderSplitContainer.FixedPanel = System.Windows.Forms.FixedPanel.Panel2;
    134       this.problemInstanceProviderSplitContainer.IsSplitterFixed = true;
    135       this.problemInstanceProviderSplitContainer.Location = new System.Drawing.Point(0, -1);
    136       this.problemInstanceProviderSplitContainer.Name = "problemInstanceProviderSplitContainer";
    137       //
    138       // problemInstanceProviderSplitContainer.Panel1
    139       //
    140       this.problemInstanceProviderSplitContainer.Panel1.Controls.Add(this.instanceLabel);
    141       this.problemInstanceProviderSplitContainer.Panel1.Controls.Add(this.instancesComboBox);
    142       this.problemInstanceProviderSplitContainer.Panel1.Controls.Add(this.importButton);
    143       this.problemInstanceProviderSplitContainer.Panel1.Controls.Add(this.loadButton);
    144       //
    145       // problemInstanceProviderSplitContainer.Panel2
    146       //
    147       this.problemInstanceProviderSplitContainer.Panel2.Controls.Add(this.exportButton);
    148       this.problemInstanceProviderSplitContainer.Size = new System.Drawing.Size(694, 22);
    149       this.problemInstanceProviderSplitContainer.SplitterDistance = 665;
    150       this.problemInstanceProviderSplitContainer.TabIndex = 9;
    15148      //
    15249      // ProblemInstanceProviderView
     
    15451      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
    15552      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
    156       this.Controls.Add(this.problemInstanceProviderSplitContainer);
    15753      this.Name = "ProblemInstanceProviderView";
    15854      this.Size = new System.Drawing.Size(694, 21);
    159       this.problemInstanceProviderSplitContainer.Panel1.ResumeLayout(false);
    160       this.problemInstanceProviderSplitContainer.Panel1.PerformLayout();
    161       this.problemInstanceProviderSplitContainer.Panel2.ResumeLayout(false);
    162       ((System.ComponentModel.ISupportInitialize)(this.problemInstanceProviderSplitContainer)).EndInit();
    163       this.problemInstanceProviderSplitContainer.ResumeLayout(false);
    16455      this.ResumeLayout(false);
    16556
     
    16859    #endregion
    16960
    170     private System.Windows.Forms.OpenFileDialog openFileDialog;
    171     private System.Windows.Forms.ToolTip toolTip;
    172     protected System.Windows.Forms.Button loadButton;
    173     protected System.Windows.Forms.Label instanceLabel;
    174     protected System.Windows.Forms.ComboBox instancesComboBox;
    175     protected System.Windows.Forms.Button importButton;
    176     protected System.Windows.Forms.Button exportButton;
    177     private System.Windows.Forms.SaveFileDialog saveFileDialog;
    178     private System.Windows.Forms.SplitContainer problemInstanceProviderSplitContainer;
    17961
    18062  }
Note: See TracChangeset for help on using the changeset viewer.