Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/19/10 11:46:07 (14 years ago)
Author:
gkronber
Message:
  • Added missing license headers
  • performance improvement in listview_itemchecked handlers
  • added functionality to switch between simple and advanced view in remote plugins view
  • changed url of deployment service in preparation for next release of the test version
  • added default user credentials for the deployment service in preparation for the next release of the test version

#891 (Refactor GUI for plugin management)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.PluginInfrastructure/Advanced/RemotePluginInstaller.Designer.cs

    r3090 r3112  
    5353      this.versionHeader = new System.Windows.Forms.ColumnHeader();
    5454      this.descriptionHeader = new System.Windows.Forms.ColumnHeader();
     55      this.radioButton1 = new System.Windows.Forms.RadioButton();
     56      this.advancedViewButton = new System.Windows.Forms.RadioButton();
     57      this.simpleViewButton = new System.Windows.Forms.RadioButton();
     58      this.viewButtonGroupBox = new System.Windows.Forms.GroupBox();
     59      this.viewButtonGroupBox.SuspendLayout();
    5560      this.SuspendLayout();
    5661      //
     
    6368      // remotePluginsListView
    6469      //
     70      this.remotePluginsListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     71                  | System.Windows.Forms.AnchorStyles.Left)
     72                  | System.Windows.Forms.AnchorStyles.Right)));
    6573      this.remotePluginsListView.CheckBoxes = true;
    6674      this.remotePluginsListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     
    6876            this.versionHeader,
    6977            this.descriptionHeader});
    70       this.remotePluginsListView.Dock = System.Windows.Forms.DockStyle.Fill;
    7178      listViewGroup1.Header = "Products";
    7279      listViewGroup1.Name = "productsGroup";
     
    7986            listViewGroup2,
    8087            listViewGroup3});
    81       this.remotePluginsListView.Location = new System.Drawing.Point(0, 0);
     88      this.remotePluginsListView.Location = new System.Drawing.Point(0, 50);
    8289      this.remotePluginsListView.Name = "remotePluginsListView";
    83       this.remotePluginsListView.Size = new System.Drawing.Size(533, 558);
     90      this.remotePluginsListView.Size = new System.Drawing.Size(533, 508);
    8491      this.remotePluginsListView.StateImageList = this.imageListForRemoteItems;
    8592      this.remotePluginsListView.SuppressItemCheckedEvents = false;
     
    104111      this.descriptionHeader.Width = 250;
    105112      //
     113      // radioButton1
     114      //
     115      this.radioButton1.AutoSize = true;
     116      this.radioButton1.Location = new System.Drawing.Point(-15, -15);
     117      this.radioButton1.Name = "radioButton1";
     118      this.radioButton1.Size = new System.Drawing.Size(85, 17);
     119      this.radioButton1.TabIndex = 2;
     120      this.radioButton1.TabStop = true;
     121      this.radioButton1.Text = "radioButton1";
     122      this.radioButton1.UseVisualStyleBackColor = true;
     123      //
     124      // advancedViewButton
     125      //
     126      this.advancedViewButton.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     127                  | System.Windows.Forms.AnchorStyles.Left)));
     128      this.advancedViewButton.Appearance = System.Windows.Forms.Appearance.Button;
     129      this.advancedViewButton.AutoSize = true;
     130      this.advancedViewButton.Location = new System.Drawing.Point(104, 9);
     131      this.advancedViewButton.Name = "advancedViewButton";
     132      this.advancedViewButton.Size = new System.Drawing.Size(92, 23);
     133      this.advancedViewButton.TabIndex = 3;
     134      this.advancedViewButton.Text = "Advanced View";
     135      this.advancedViewButton.UseVisualStyleBackColor = true;
     136      this.advancedViewButton.CheckedChanged += new System.EventHandler(this.advancedViewButton_CheckedChanged);
     137      //
     138      // simpleViewButton
     139      //
     140      this.simpleViewButton.Appearance = System.Windows.Forms.Appearance.Button;
     141      this.simpleViewButton.Checked = true;
     142      this.simpleViewButton.Location = new System.Drawing.Point(6, 9);
     143      this.simpleViewButton.Name = "simpleViewButton";
     144      this.simpleViewButton.Size = new System.Drawing.Size(92, 23);
     145      this.simpleViewButton.TabIndex = 3;
     146      this.simpleViewButton.TabStop = true;
     147      this.simpleViewButton.Text = "Simple View";
     148      this.simpleViewButton.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     149      this.simpleViewButton.UseVisualStyleBackColor = true;
     150      this.simpleViewButton.CheckedChanged += new System.EventHandler(this.advancedViewButton_CheckedChanged);
     151      //
     152      // viewButtonGroupBox
     153      //
     154      this.viewButtonGroupBox.Controls.Add(this.advancedViewButton);
     155      this.viewButtonGroupBox.Controls.Add(this.simpleViewButton);
     156      this.viewButtonGroupBox.Location = new System.Drawing.Point(3, 8);
     157      this.viewButtonGroupBox.Name = "viewButtonGroupBox";
     158      this.viewButtonGroupBox.Size = new System.Drawing.Size(204, 36);
     159      this.viewButtonGroupBox.TabIndex = 5;
     160      this.viewButtonGroupBox.TabStop = false;
     161      //
    106162      // RemotePluginInstaller
    107163      //
    108164      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
    109165      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     166      this.Controls.Add(this.viewButtonGroupBox);
     167      this.Controls.Add(this.radioButton1);
    110168      this.Controls.Add(this.remotePluginsListView);
    111169      this.Name = "RemotePluginInstaller";
    112170      this.Size = new System.Drawing.Size(533, 558);
     171      this.viewButtonGroupBox.ResumeLayout(false);
     172      this.viewButtonGroupBox.PerformLayout();
    113173      this.ResumeLayout(false);
     174      this.PerformLayout();
    114175
    115176    }
     
    122183    private System.Windows.Forms.ColumnHeader versionHeader;
    123184    private System.Windows.Forms.ColumnHeader descriptionHeader;
     185    private System.Windows.Forms.RadioButton radioButton1;
     186    private System.Windows.Forms.RadioButton advancedViewButton;
     187    private System.Windows.Forms.RadioButton simpleViewButton;
     188    private System.Windows.Forms.GroupBox viewButtonGroupBox;
    124189  }
    125190}
Note: See TracChangeset for help on using the changeset viewer.