Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2931_OR-Tools_LP_MIP/HeuristicLab.MathematicalOptimization.Views/3.3/LinearProgrammingProblemView.Designer.cs @ 16405

Last change on this file since 16405 was 16405, checked in by ddorfmei, 5 years ago

#2931:

  • moved views to separate plugin HeuristicLab.MathematicalOptimization.Views
  • added button in LinearProgrammingProblemView to select the problem definition type
  • added views for problem definitions
  • added ExportFile parameter to LinearProgrammingAlgorithm
  • extended FileValue and FileValueView by the option to save a file
  • code cleanup
File size: 6.1 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
22using System.ComponentModel;
23using HeuristicLab.Common.Resources;
24
25namespace HeuristicLab.MathematicalOptimization.Views {
26  partial class LinearProgrammingProblemView {
27    /// <summary>
28    /// Required designer variable.
29    /// </summary>
30    private IContainer components = null;
31
32    /// <summary>
33    /// Clean up any resources being used.
34    /// </summary>
35    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
36    protected override void Dispose(bool disposing) {
37      if (disposing && (components != null)) {
38        components.Dispose();
39      }
40      base.Dispose(disposing);
41    }
42
43    #region Component Designer generated code
44
45    /// <summary>
46    /// Required method for Designer support - do not modify
47    /// the contents of this method with the code editor.
48    /// </summary>
49    private void InitializeComponent() {
50      this.components = new System.ComponentModel.Container();
51      System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(LinearProgrammingProblemView));
52      this.panel1 = new System.Windows.Forms.Panel();
53      this.ViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
54      this.panel2 = new System.Windows.Forms.Panel();
55      this.modelTypeNameLabel = new System.Windows.Forms.Label();
56      this.modelTypeLabel = new System.Windows.Forms.Label();
57      this.changeModelTypeButton = new System.Windows.Forms.Button();
58      this.toolTip = new System.Windows.Forms.ToolTip(this.components);
59      this.panel1.SuspendLayout();
60      this.panel2.SuspendLayout();
61      this.SuspendLayout();
62      //
63      // panel1
64      //
65      this.panel1.Controls.Add(this.ViewHost);
66      this.panel1.Controls.Add(this.panel2);
67      this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
68      this.panel1.Location = new System.Drawing.Point(0, 0);
69      this.panel1.Name = "panel1";
70      this.panel1.Size = new System.Drawing.Size(300, 150);
71      this.panel1.TabIndex = 7;
72      //
73      // ViewHost
74      //
75      this.ViewHost.Caption = "View";
76      this.ViewHost.Content = null;
77      this.ViewHost.Dock = System.Windows.Forms.DockStyle.Fill;
78      this.ViewHost.Enabled = false;
79      this.ViewHost.Location = new System.Drawing.Point(0, 30);
80      this.ViewHost.Name = "ViewHost";
81      this.ViewHost.ReadOnly = false;
82      this.ViewHost.Size = new System.Drawing.Size(300, 120);
83      this.ViewHost.TabIndex = 6;
84      this.ViewHost.ViewsLabelVisible = false;
85      this.ViewHost.ViewType = null;
86      //
87      // panel2
88      //
89      this.panel2.Controls.Add(this.modelTypeNameLabel);
90      this.panel2.Controls.Add(this.modelTypeLabel);
91      this.panel2.Controls.Add(this.changeModelTypeButton);
92      this.panel2.Dock = System.Windows.Forms.DockStyle.Top;
93      this.panel2.Location = new System.Drawing.Point(0, 0);
94      this.panel2.Name = "panel2";
95      this.panel2.Size = new System.Drawing.Size(300, 30);
96      this.panel2.TabIndex = 5;
97      //
98      // modelTypeNameLabel
99      //
100      this.modelTypeNameLabel.AutoSize = true;
101      this.modelTypeNameLabel.Location = new System.Drawing.Point(95, 9);
102      this.modelTypeNameLabel.Name = "modelTypeNameLabel";
103      this.modelTypeNameLabel.Size = new System.Drawing.Size(31, 13);
104      this.modelTypeNameLabel.TabIndex = 6;
105      this.modelTypeNameLabel.Text = "none";
106      //
107      // modelTypeLabel
108      //
109      this.modelTypeLabel.AutoSize = true;
110      this.modelTypeLabel.Location = new System.Drawing.Point(3, 9);
111      this.modelTypeLabel.Name = "modelTypeLabel";
112      this.modelTypeLabel.Size = new System.Drawing.Size(39, 13);
113      this.modelTypeLabel.TabIndex = 5;
114      this.modelTypeLabel.Text = "Model Type:";
115      //
116      // changeModelTypeButton
117      //
118      this.changeModelTypeButton.Image = VSImageLibrary.RefreshDocument;
119      this.changeModelTypeButton.Location = new System.Drawing.Point(68, 3);
120      this.changeModelTypeButton.Name = "changeModelType";
121      this.changeModelTypeButton.Size = new System.Drawing.Size(24, 24);
122      this.changeModelTypeButton.TabIndex = 4;
123      this.toolTip.SetToolTip(this.changeModelTypeButton, "Change Model Type");
124      this.changeModelTypeButton.UseVisualStyleBackColor = true;
125      this.changeModelTypeButton.Click += new System.EventHandler(this.changeModelTypeButton_Click);
126      //
127      // LinearProgrammingProblemView
128      //
129      this.Controls.Add(this.panel1);
130      this.Name = "LinearProgrammingProblemView";
131      this.Size = new System.Drawing.Size(300, 150);
132      this.panel1.ResumeLayout(false);
133      this.panel2.ResumeLayout(false);
134      this.panel2.PerformLayout();
135      this.ResumeLayout(false);
136
137    }
138
139    #endregion
140
141    private System.Windows.Forms.Panel panel1;
142    private MainForm.WindowsForms.ViewHost ViewHost;
143    private System.Windows.Forms.Panel panel2;
144    protected System.Windows.Forms.Button changeModelTypeButton;
145    private System.Windows.Forms.ToolTip toolTip;
146    protected System.Windows.Forms.Button newProblemDefinitionButton;
147    private System.Windows.Forms.Label modelTypeLabel;
148    private System.Windows.Forms.Label modelTypeNameLabel;
149  }
150}
Note: See TracBrowser for help on using the repository browser.