Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/12/14 13:26:18 (10 years ago)
Author:
pfleck
Message:
  • Merged trunk into preprocessing branch.
Location:
branches/DataPreprocessing
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/DataPreprocessing

  • branches/DataPreprocessing/HeuristicLab.Scripting.Views/3.3/ScriptView.Designer.cs

    r10506 r11009  
    4646    private void InitializeComponent() {
    4747      this.components = new System.ComponentModel.Container();
     48      System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ScriptView));
    4849      this.compilationLabel = new System.Windows.Forms.Label();
    49       this.startStopButton = new System.Windows.Forms.Button();
     50      this.imageList = new System.Windows.Forms.ImageList(this.components);
     51      this.compileButton = new System.Windows.Forms.Button();
     52      this.infoTabControl = new System.Windows.Forms.TabControl();
     53      this.outputTabPage = new System.Windows.Forms.TabPage();
     54      this.outputTextBox = new System.Windows.Forms.TextBox();
     55      this.errorListTabPage = new System.Windows.Forms.TabPage();
    5056      this.errorListView = new System.Windows.Forms.ListView();
    5157      this.iconColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     
    5561      this.columnColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
    5662      this.descriptionColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
    57       this.imageList = new System.Windows.Forms.ImageList(this.components);
    5863      this.codeEditor = new HeuristicLab.CodeEditor.CodeEditor();
    5964      this.splitContainer1 = new System.Windows.Forms.SplitContainer();
    60       this.splitContainer2 = new System.Windows.Forms.SplitContainer();
    61       this.infoTabControl = new System.Windows.Forms.TabControl();
    62       this.outputTabPage = new System.Windows.Forms.TabPage();
    63       this.outputTextBox = new System.Windows.Forms.TextBox();
    64       this.errorListTabPage = new System.Windows.Forms.TabPage();
    65       this.variableStoreView = new HeuristicLab.Scripting.Views.VariableStoreView();
    66       this.viewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
    67       this.compileButton = new System.Windows.Forms.Button();
    6865      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
     66      this.infoTabControl.SuspendLayout();
     67      this.outputTabPage.SuspendLayout();
     68      this.errorListTabPage.SuspendLayout();
    6969      ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
    7070      this.splitContainer1.Panel1.SuspendLayout();
    7171      this.splitContainer1.Panel2.SuspendLayout();
    7272      this.splitContainer1.SuspendLayout();
    73       ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).BeginInit();
    74       this.splitContainer2.Panel1.SuspendLayout();
    75       this.splitContainer2.Panel2.SuspendLayout();
    76       this.splitContainer2.SuspendLayout();
    77       this.infoTabControl.SuspendLayout();
    78       this.outputTabPage.SuspendLayout();
    79       this.errorListTabPage.SuspendLayout();
    8073      this.SuspendLayout();
    8174      //
     
    8477      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
    8578      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
    86       this.nameTextBox.Location = new System.Drawing.Point(60, 0);
    87       this.nameTextBox.Size = new System.Drawing.Size(750, 20);
     79      this.nameTextBox.Location = new System.Drawing.Point(69, 0);
     80      this.nameTextBox.Size = new System.Drawing.Size(741, 20);
    8881      //
    8982      // infoLabel
     
    10194      this.compilationLabel.Text = "Not compiled";
    10295      //
    103       // startStopButton
    104       //
    105       this.startStopButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Play;
    106       this.startStopButton.Location = new System.Drawing.Point(36, 26);
    107       this.startStopButton.Name = "startStopButton";
    108       this.startStopButton.Size = new System.Drawing.Size(24, 24);
    109       this.startStopButton.TabIndex = 1;
    110       this.startStopButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
    111       this.toolTip.SetToolTip(this.startStopButton, "Run (F5)");
    112       this.startStopButton.UseVisualStyleBackColor = true;
    113       this.startStopButton.Click += new System.EventHandler(this.startStopButton_Click);
     96      // imageList
     97      //
     98      this.imageList.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
     99      this.imageList.ImageSize = new System.Drawing.Size(16, 16);
     100      this.imageList.TransparentColor = System.Drawing.Color.Transparent;
     101      //
     102      // compileButton
     103      //
     104      this.compileButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Script;
     105      this.compileButton.Location = new System.Drawing.Point(6, 26);
     106      this.compileButton.Name = "compileButton";
     107      this.compileButton.Size = new System.Drawing.Size(24, 24);
     108      this.compileButton.TabIndex = 8;
     109      this.compileButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     110      this.toolTip.SetToolTip(this.compileButton, "Compile (F6)");
     111      this.compileButton.UseVisualStyleBackColor = true;
     112      this.compileButton.Click += new System.EventHandler(this.CompileButtonOnClick);
     113      //
     114      // infoTabControl
     115      //
     116      this.infoTabControl.Controls.Add(this.outputTabPage);
     117      this.infoTabControl.Controls.Add(this.errorListTabPage);
     118      this.infoTabControl.Dock = System.Windows.Forms.DockStyle.Fill;
     119      this.infoTabControl.Location = new System.Drawing.Point(0, 0);
     120      this.infoTabControl.Name = "infoTabControl";
     121      this.infoTabControl.SelectedIndex = 0;
     122      this.infoTabControl.Size = new System.Drawing.Size(832, 112);
     123      this.infoTabControl.TabIndex = 1;
     124      //
     125      // outputTabPage
     126      //
     127      this.outputTabPage.Controls.Add(this.outputTextBox);
     128      this.outputTabPage.Location = new System.Drawing.Point(4, 22);
     129      this.outputTabPage.Name = "outputTabPage";
     130      this.outputTabPage.Padding = new System.Windows.Forms.Padding(3);
     131      this.outputTabPage.Size = new System.Drawing.Size(824, 86);
     132      this.outputTabPage.TabIndex = 1;
     133      this.outputTabPage.Text = "Output";
     134      this.outputTabPage.UseVisualStyleBackColor = true;
     135      //
     136      // outputTextBox
     137      //
     138      this.outputTextBox.Dock = System.Windows.Forms.DockStyle.Fill;
     139      this.outputTextBox.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     140      this.outputTextBox.Location = new System.Drawing.Point(3, 3);
     141      this.outputTextBox.Multiline = true;
     142      this.outputTextBox.Name = "outputTextBox";
     143      this.outputTextBox.ReadOnly = true;
     144      this.outputTextBox.ScrollBars = System.Windows.Forms.ScrollBars.Both;
     145      this.outputTextBox.Size = new System.Drawing.Size(818, 80);
     146      this.outputTextBox.TabIndex = 0;
     147      this.outputTextBox.WordWrap = false;
     148      //
     149      // errorListTabPage
     150      //
     151      this.errorListTabPage.Controls.Add(this.errorListView);
     152      this.errorListTabPage.Location = new System.Drawing.Point(4, 22);
     153      this.errorListTabPage.Name = "errorListTabPage";
     154      this.errorListTabPage.Padding = new System.Windows.Forms.Padding(3);
     155      this.errorListTabPage.Size = new System.Drawing.Size(824, 86);
     156      this.errorListTabPage.TabIndex = 0;
     157      this.errorListTabPage.Text = "Error List";
     158      this.errorListTabPage.UseVisualStyleBackColor = true;
    114159      //
    115160      // errorListView
     
    128173      this.errorListView.Location = new System.Drawing.Point(3, 3);
    129174      this.errorListView.Name = "errorListView";
    130       this.errorListView.Size = new System.Drawing.Size(623, 79);
     175      this.errorListView.Size = new System.Drawing.Size(818, 80);
    131176      this.errorListView.SmallImageList = this.imageList;
    132177      this.errorListView.TabIndex = 0;
     
    158203      this.descriptionColumnHeader.Text = "Description";
    159204      //
    160       // imageList
    161       //
    162       this.imageList.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
    163       this.imageList.ImageSize = new System.Drawing.Size(16, 16);
    164       this.imageList.TransparentColor = System.Drawing.Color.Transparent;
    165       //
    166205      // codeEditor
    167206      //
     
    170209      this.codeEditor.Name = "codeEditor";
    171210      this.codeEditor.Prefix = "";
    172       this.codeEditor.Size = new System.Drawing.Size(637, 428);
     211      this.codeEditor.Size = new System.Drawing.Size(832, 430);
    173212      this.codeEditor.Suffix = "";
    174213      this.codeEditor.TabIndex = 0;
    175214      this.codeEditor.UserCode = "";
    176       this.codeEditor.TextEditorTextChanged += new System.EventHandler(this.codeEditor_TextEditorTextChanged);
     215      this.codeEditor.TextEditorTextChanged += new System.EventHandler(this.CodeEditorOnTextEditorTextChanged);
    177216      //
    178217      // splitContainer1
     
    181220            | System.Windows.Forms.AnchorStyles.Left)
    182221            | System.Windows.Forms.AnchorStyles.Right)));
    183       this.splitContainer1.Location = new System.Drawing.Point(3, 56);
     222      this.splitContainer1.Location = new System.Drawing.Point(0, 56);
    184223      this.splitContainer1.Name = "splitContainer1";
     224      this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
    185225      //
    186226      // splitContainer1.Panel1
    187227      //
    188       this.splitContainer1.Panel1.Controls.Add(this.splitContainer2);
     228      this.splitContainer1.Panel1.Controls.Add(this.codeEditor);
    189229      //
    190230      // splitContainer1.Panel2
    191231      //
    192       this.splitContainer1.Panel2.Controls.Add(this.variableStoreView);
    193       this.splitContainer1.Panel2.Controls.Add(this.viewHost);
    194       this.splitContainer1.Size = new System.Drawing.Size(829, 543);
    195       this.splitContainer1.SplitterDistance = 637;
    196       this.splitContainer1.TabIndex = 7;
    197       //
    198       // splitContainer2
    199       //
    200       this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
    201       this.splitContainer2.Location = new System.Drawing.Point(0, 0);
    202       this.splitContainer2.Name = "splitContainer2";
    203       this.splitContainer2.Orientation = System.Windows.Forms.Orientation.Horizontal;
    204       //
    205       // splitContainer2.Panel1
    206       //
    207       this.splitContainer2.Panel1.Controls.Add(this.codeEditor);
    208       //
    209       // splitContainer2.Panel2
    210       //
    211       this.splitContainer2.Panel2.Controls.Add(this.infoTabControl);
    212       this.splitContainer2.Size = new System.Drawing.Size(637, 543);
    213       this.splitContainer2.SplitterDistance = 428;
    214       this.splitContainer2.TabIndex = 5;
    215       //
    216       // infoTabControl
    217       //
    218       this.infoTabControl.Controls.Add(this.outputTabPage);
    219       this.infoTabControl.Controls.Add(this.errorListTabPage);
    220       this.infoTabControl.Dock = System.Windows.Forms.DockStyle.Fill;
    221       this.infoTabControl.Location = new System.Drawing.Point(0, 0);
    222       this.infoTabControl.Name = "infoTabControl";
    223       this.infoTabControl.SelectedIndex = 0;
    224       this.infoTabControl.Size = new System.Drawing.Size(637, 111);
    225       this.infoTabControl.TabIndex = 1;
    226       //
    227       // outputTabPage
    228       //
    229       this.outputTabPage.Controls.Add(this.outputTextBox);
    230       this.outputTabPage.Location = new System.Drawing.Point(4, 22);
    231       this.outputTabPage.Name = "outputTabPage";
    232       this.outputTabPage.Padding = new System.Windows.Forms.Padding(3);
    233       this.outputTabPage.Size = new System.Drawing.Size(629, 85);
    234       this.outputTabPage.TabIndex = 1;
    235       this.outputTabPage.Text = "Output";
    236       this.outputTabPage.UseVisualStyleBackColor = true;
    237       //
    238       // outputTextBox
    239       //
    240       this.outputTextBox.Dock = System.Windows.Forms.DockStyle.Fill;
    241       this.outputTextBox.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
    242       this.outputTextBox.Location = new System.Drawing.Point(3, 3);
    243       this.outputTextBox.Multiline = true;
    244       this.outputTextBox.Name = "outputTextBox";
    245       this.outputTextBox.ReadOnly = true;
    246       this.outputTextBox.ScrollBars = System.Windows.Forms.ScrollBars.Both;
    247       this.outputTextBox.Size = new System.Drawing.Size(623, 79);
    248       this.outputTextBox.TabIndex = 0;
    249       this.outputTextBox.WordWrap = false;
    250       //
    251       // errorListTabPage
    252       //
    253       this.errorListTabPage.Controls.Add(this.errorListView);
    254       this.errorListTabPage.Location = new System.Drawing.Point(4, 22);
    255       this.errorListTabPage.Name = "errorListTabPage";
    256       this.errorListTabPage.Padding = new System.Windows.Forms.Padding(3);
    257       this.errorListTabPage.Size = new System.Drawing.Size(629, 85);
    258       this.errorListTabPage.TabIndex = 0;
    259       this.errorListTabPage.Text = "Error List";
    260       this.errorListTabPage.UseVisualStyleBackColor = true;
    261       //
    262       // variableStoreView
    263       //
    264       this.variableStoreView.Caption = "ItemCollection View";
    265       this.variableStoreView.Content = null;
    266       this.variableStoreView.Dock = System.Windows.Forms.DockStyle.Fill;
    267       this.variableStoreView.Location = new System.Drawing.Point(0, 0);
    268       this.variableStoreView.Name = "variableStoreView";
    269       this.variableStoreView.ReadOnly = false;
    270       this.variableStoreView.Size = new System.Drawing.Size(188, 543);
    271       this.variableStoreView.TabIndex = 0;
    272       //
    273       // viewHost
    274       //
    275       this.viewHost.Caption = "View";
    276       this.viewHost.Content = null;
    277       this.viewHost.Dock = System.Windows.Forms.DockStyle.Fill;
    278       this.viewHost.Enabled = false;
    279       this.viewHost.Location = new System.Drawing.Point(0, 0);
    280       this.viewHost.Name = "viewHost";
    281       this.viewHost.ReadOnly = false;
    282       this.viewHost.Size = new System.Drawing.Size(188, 543);
    283       this.viewHost.TabIndex = 0;
    284       this.viewHost.ViewsLabelVisible = true;
    285       this.viewHost.ViewType = null;
    286       //
    287       // compileButton
    288       //
    289       this.compileButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Script;
    290       this.compileButton.Location = new System.Drawing.Point(6, 26);
    291       this.compileButton.Name = "compileButton";
    292       this.compileButton.Size = new System.Drawing.Size(24, 24);
    293       this.compileButton.TabIndex = 8;
    294       this.compileButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
    295       this.toolTip.SetToolTip(this.compileButton, "Compile (F6)");
    296       this.compileButton.UseVisualStyleBackColor = true;
    297       this.compileButton.Click += new System.EventHandler(this.compileButton_Click);
     232      this.splitContainer1.Panel2.Controls.Add(this.infoTabControl);
     233      this.splitContainer1.Size = new System.Drawing.Size(832, 546);
     234      this.splitContainer1.SplitterDistance = 430;
     235      this.splitContainer1.TabIndex = 9;
    298236      //
    299237      // ScriptView
    300238      //
    301239      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
     240      this.Controls.Add(this.splitContainer1);
    302241      this.Controls.Add(this.compileButton);
    303       this.Controls.Add(this.splitContainer1);
    304       this.Controls.Add(this.startStopButton);
    305242      this.Controls.Add(this.compilationLabel);
    306243      this.Name = "ScriptView";
    307244      this.Size = new System.Drawing.Size(835, 602);
    308245      this.Controls.SetChildIndex(this.compilationLabel, 0);
    309       this.Controls.SetChildIndex(this.startStopButton, 0);
     246      this.Controls.SetChildIndex(this.compileButton, 0);
    310247      this.Controls.SetChildIndex(this.splitContainer1, 0);
    311248      this.Controls.SetChildIndex(this.nameLabel, 0);
    312249      this.Controls.SetChildIndex(this.nameTextBox, 0);
    313250      this.Controls.SetChildIndex(this.infoLabel, 0);
    314       this.Controls.SetChildIndex(this.compileButton, 0);
    315251      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
     252      this.infoTabControl.ResumeLayout(false);
     253      this.outputTabPage.ResumeLayout(false);
     254      this.outputTabPage.PerformLayout();
     255      this.errorListTabPage.ResumeLayout(false);
    316256      this.splitContainer1.Panel1.ResumeLayout(false);
    317257      this.splitContainer1.Panel2.ResumeLayout(false);
    318258      ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
    319259      this.splitContainer1.ResumeLayout(false);
    320       this.splitContainer2.Panel1.ResumeLayout(false);
    321       this.splitContainer2.Panel2.ResumeLayout(false);
    322       ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).EndInit();
    323       this.splitContainer2.ResumeLayout(false);
    324       this.infoTabControl.ResumeLayout(false);
    325       this.outputTabPage.ResumeLayout(false);
    326       this.outputTabPage.PerformLayout();
    327       this.errorListTabPage.ResumeLayout(false);
    328260      this.ResumeLayout(false);
    329261      this.PerformLayout();
     
    333265    #endregion
    334266
    335     private System.Windows.Forms.Label compilationLabel;
    336     private System.Windows.Forms.Button startStopButton;
    337     private System.Windows.Forms.ListView errorListView;
    338     private System.Windows.Forms.ColumnHeader descriptionColumnHeader;
    339     private System.Windows.Forms.ColumnHeader lineColumnHeader;
    340     private System.Windows.Forms.ColumnHeader columnColumnHeader;
    341     private CodeEditor.CodeEditor codeEditor;
    342     private System.Windows.Forms.SplitContainer splitContainer1;
    343     private System.Windows.Forms.SplitContainer splitContainer2;
    344     private MainForm.WindowsForms.ViewHost viewHost;
    345     private VariableStoreView variableStoreView;
    346     private System.Windows.Forms.ColumnHeader errorNumberColumnHeader;
    347     private System.Windows.Forms.ColumnHeader categoryColumnHeader;
    348     private System.Windows.Forms.TabControl infoTabControl;
    349     private System.Windows.Forms.TabPage errorListTabPage;
    350     private System.Windows.Forms.TabPage outputTabPage;
    351     private System.Windows.Forms.TextBox outputTextBox;
    352     private System.Windows.Forms.Button compileButton;
    353     private System.Windows.Forms.ColumnHeader iconColumnHeader;
    354     private System.Windows.Forms.ImageList imageList;
     267    protected System.Windows.Forms.Label compilationLabel;
     268    protected System.Windows.Forms.Button compileButton;
     269    protected System.Windows.Forms.ImageList imageList;
     270    protected System.Windows.Forms.TabControl infoTabControl;
     271    protected System.Windows.Forms.TabPage outputTabPage;
     272    protected System.Windows.Forms.TextBox outputTextBox;
     273    protected System.Windows.Forms.TabPage errorListTabPage;
     274    protected System.Windows.Forms.ListView errorListView;
     275    protected System.Windows.Forms.ColumnHeader iconColumnHeader;
     276    protected System.Windows.Forms.ColumnHeader categoryColumnHeader;
     277    protected System.Windows.Forms.ColumnHeader errorNumberColumnHeader;
     278    protected System.Windows.Forms.ColumnHeader lineColumnHeader;
     279    protected System.Windows.Forms.ColumnHeader columnColumnHeader;
     280    protected System.Windows.Forms.ColumnHeader descriptionColumnHeader;
     281    protected CodeEditor.CodeEditor codeEditor;
     282    protected System.Windows.Forms.SplitContainer splitContainer1;
    355283  }
    356284}
Note: See TracChangeset for help on using the changeset viewer.