Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/08/14 19:03:36 (10 years ago)
Author:
mkommend
Message:

#1758: Merged r10173:10176 and r10540, r10541, r10543, r10545 and r11031 into stable.

Location:
stable
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • stable

  • stable/HeuristicLab.Problems.DataAnalysis.Symbolic.TimeSeriesPrognosis.Views/3.4/HeuristicLab.Problems.DataAnalysis.Symbolic.TimeSeriesPrognosis.Views-3.4.csproj

    r8799 r11144  
    151151      <Private>False</Private>
    152152    </ProjectReference>
     153    <ProjectReference Include="..\..\HeuristicLab.Common.Resources\3.3\HeuristicLab.Common.Resources-3.3.csproj">
     154      <Project>{0e27a536-1c4a-4624-a65e-dc4f4f23e3e1}</Project>
     155      <Name>HeuristicLab.Common.Resources-3.3</Name>
     156      <Private>False</Private>
     157    </ProjectReference>
    153158    <ProjectReference Include="..\..\HeuristicLab.Common\3.3\HeuristicLab.Common-3.3.csproj">
    154159      <Project>{A9AD58B9-3EF9-4CC1-97E5-8D909039FF5C}</Project>
  • stable/HeuristicLab.Problems.DataAnalysis.Symbolic.TimeSeriesPrognosis.Views/3.4/Plugin.cs.frame

    r10032 r11144  
    2929  [PluginFile("HeuristicLab.Problems.DataAnalysis.Symbolic.TimeSeriesPrognosis.Views-3.4.dll", PluginFileType.Assembly)]
    3030  [PluginDependency("HeuristicLab.Common", "3.3")]
     31  [PluginDependency("HeuristicLab.Common.Resources", "3.3")]
    3132  [PluginDependency("HeuristicLab.Core", "3.3")]
    3233  [PluginDependency("HeuristicLab.Core.Views", "3.3")]
  • stable/HeuristicLab.Problems.DataAnalysis.Symbolic.TimeSeriesPrognosis.Views/3.4/SymbolicTimeSeriesPrognosisSolutionView.Designer.cs

    r9999 r11144  
    5454      this.SuspendLayout();
    5555      //
    56       // exportButton
     56      // flowLayoutPanel
    5757      //
    58       this.exportButton.Visible = false;
    59       //
    60       // splitContainer
    61       //
    62       //
    63       // splitContainer.Panel1
    64       //
    65       this.splitContainer.Panel1.Controls.Add(this.btnSimplify);
    66       //
    67       // addButton
    68       //
    69       this.toolTip.SetToolTip(this.addButton, "Add");
    70       //
    71       // removeButton
    72       //
    73       this.toolTip.SetToolTip(this.removeButton, "Remove");
     58      this.flowLayoutPanel.Controls.Add(this.btnSimplify);
    7459      //
    7560      // btnSimplify
    7661      //
    77       this.btnSimplify.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
    78       this.btnSimplify.Location = new System.Drawing.Point(172, 4);
     62      this.btnSimplify.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)));
     63      this.btnSimplify.Image = HeuristicLab.Common.Resources.VSImageLibrary.FormulaEvaluator;
     64      this.btnSimplify.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
    7965      this.btnSimplify.Name = "btnSimplify";
    80       this.btnSimplify.Size = new System.Drawing.Size(75, 23);
    81       this.btnSimplify.TabIndex = 6;
    82       this.btnSimplify.Text = "Simplify";
     66      this.btnSimplify.TabIndex = 7;
     67      this.btnSimplify.Size = new System.Drawing.Size(105, 24);
     68      this.btnSimplify.Text = "Simplify Model";
     69      this.btnSimplify.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
    8370      this.btnSimplify.UseVisualStyleBackColor = true;
    8471      this.btnSimplify.Click += new System.EventHandler(this.btn_SimplifyModel_Click);
     72      this.toolTip.SetToolTip(this.btnSimplify, "Simplify solution");
    8573      //
    8674      // SymbolicTimeSeriesPrognosisSolutionView
  • stable/HeuristicLab.Problems.DataAnalysis.Symbolic.TimeSeriesPrognosis.Views/3.4/SymbolicTimeSeriesPrognosisSolutionView.cs

    r9462 r11144  
    3838    }
    3939
     40    protected override void SetEnabledStateOfControls() {
     41      base.SetEnabledStateOfControls();
     42      btnSimplify.Enabled = Content != null && !Locked;
     43    }
     44
    4045    private void btn_SimplifyModel_Click(object sender, EventArgs e) {
    4146      InteractiveSymbolicTimeSeriesPrognosisSolutionSimplifierView view = new InteractiveSymbolicTimeSeriesPrognosisSolutionSimplifierView();
Note: See TracChangeset for help on using the changeset viewer.