00001 namespace Mcs.Epm.MicrosoftProject.mpFx.Client.Shared.Forms
00002 {
00003 partial class PluginManagerForm
00004 {
00005
00006
00007
00008 private System.ComponentModel.IContainer components = null;
00009
00010
00011
00012
00013
00014 protected override void Dispose(bool disposing)
00015 {
00016 if (disposing && (components != null))
00017 {
00018 components.Dispose();
00019 }
00020 base.Dispose(disposing);
00021 }
00022
00023 #region Windows Form Designer generated code
00024
00025
00026
00027
00028
00029 private void InitializeComponent()
00030 {
00031 System.Windows.Forms.TreeNode treeNode1 = new System.Windows.Forms.TreeNode("Installed Plugins");
00032 System.Windows.Forms.TreeNode treeNode2 = new System.Windows.Forms.TreeNode("Options");
00033 System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(PluginManagerForm));
00034 this.treeView = new System.Windows.Forms.TreeView();
00035 this.okButton = new System.Windows.Forms.Button();
00036 this.pluginsPanel = new System.Windows.Forms.Panel();
00037 this.pluginsDataGridView = new System.Windows.Forms.DataGridView();
00038 this.statusColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
00039 this.guidColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
00040 this.nameColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
00041 this.descriptionColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
00042 this.authorColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
00043 this.versionColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
00044 this.pluginsToolStrip = new System.Windows.Forms.ToolStrip();
00045 this.addToolStripButton = new System.Windows.Forms.ToolStripDropDownButton();
00046 this.installFromToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
00047 this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
00048 this.visitMpFxPluginGalleryToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
00049 this.statusToolStripLabel = new System.Windows.Forms.ToolStripLabel();
00050 this.toolStripProgressBar = new System.Windows.Forms.ToolStripProgressBar();
00051 this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
00052 this.loadToolStripButton = new System.Windows.Forms.ToolStripButton();
00053 this.unloadToolStripButton = new System.Windows.Forms.ToolStripButton();
00054 this.removeToolStripButton = new System.Windows.Forms.ToolStripButton();
00055 this.optionsPanel = new System.Windows.Forms.Panel();
00056 this.optionsTabControl = new System.Windows.Forms.TabControl();
00057 this.noPluginsLoadedLabel = new System.Windows.Forms.Label();
00058 this.pluginsPanel.SuspendLayout();
00059 ((System.ComponentModel.ISupportInitialize)(this.pluginsDataGridView)).BeginInit();
00060 this.pluginsToolStrip.SuspendLayout();
00061 this.optionsPanel.SuspendLayout();
00062 this.SuspendLayout();
00063
00064
00065
00066 this.treeView.Location = new System.Drawing.Point(13, 13);
00067 this.treeView.Name = "treeView";
00068 treeNode1.Name = "pluginNode";
00069 treeNode1.Text = "Installed Plugins";
00070 treeNode2.Name = "optionsNode";
00071 treeNode2.Text = "Options";
00072 this.treeView.Nodes.AddRange(new System.Windows.Forms.TreeNode[] {
00073 treeNode1,
00074 treeNode2});
00075 this.treeView.Size = new System.Drawing.Size(121, 413);
00076 this.treeView.TabIndex = 0;
00077 this.treeView.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.treeView_AfterSelect);
00078
00079
00080
00081 this.okButton.Location = new System.Drawing.Point(493, 437);
00082 this.okButton.Name = "okButton";
00083 this.okButton.Size = new System.Drawing.Size(75, 23);
00084 this.okButton.TabIndex = 1;
00085 this.okButton.Text = "&OK";
00086 this.okButton.UseVisualStyleBackColor = true;
00087 this.okButton.Click += new System.EventHandler(this.okButton_Click);
00088
00089
00090
00091 this.pluginsPanel.Controls.Add(this.pluginsDataGridView);
00092 this.pluginsPanel.Controls.Add(this.pluginsToolStrip);
00093 this.pluginsPanel.Location = new System.Drawing.Point(141, 13);
00094 this.pluginsPanel.Name = "pluginsPanel";
00095 this.pluginsPanel.Size = new System.Drawing.Size(427, 413);
00096 this.pluginsPanel.TabIndex = 2;
00097
00098
00099
00100 this.pluginsDataGridView.AllowUserToAddRows = false;
00101 this.pluginsDataGridView.AllowUserToDeleteRows = false;
00102 this.pluginsDataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
00103 this.pluginsDataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
00104 this.statusColumn,
00105 this.guidColumn,
00106 this.nameColumn,
00107 this.descriptionColumn,
00108 this.authorColumn,
00109 this.versionColumn});
00110 this.pluginsDataGridView.Dock = System.Windows.Forms.DockStyle.Fill;
00111 this.pluginsDataGridView.Location = new System.Drawing.Point(0, 25);
00112 this.pluginsDataGridView.MultiSelect = false;
00113 this.pluginsDataGridView.Name = "pluginsDataGridView";
00114 this.pluginsDataGridView.ReadOnly = true;
00115 this.pluginsDataGridView.RowHeadersVisible = false;
00116 this.pluginsDataGridView.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
00117 this.pluginsDataGridView.Size = new System.Drawing.Size(427, 388);
00118 this.pluginsDataGridView.TabIndex = 0;
00119 this.pluginsDataGridView.SelectionChanged += new System.EventHandler(this.pluginsDataGridView_SelectionChanged);
00120
00121
00122
00123 this.statusColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
00124 this.statusColumn.HeaderText = "Status";
00125 this.statusColumn.Name = "statusColumn";
00126 this.statusColumn.ReadOnly = true;
00127 this.statusColumn.Resizable = System.Windows.Forms.DataGridViewTriState.False;
00128 this.statusColumn.Width = 62;
00129
00130
00131
00132 this.guidColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
00133 this.guidColumn.HeaderText = "Guid";
00134 this.guidColumn.Name = "guidColumn";
00135 this.guidColumn.ReadOnly = true;
00136 this.guidColumn.Width = 54;
00137
00138
00139
00140 this.nameColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
00141 this.nameColumn.HeaderText = "Name";
00142 this.nameColumn.Name = "nameColumn";
00143 this.nameColumn.ReadOnly = true;
00144 this.nameColumn.Width = 60;
00145
00146
00147
00148 this.descriptionColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
00149 this.descriptionColumn.HeaderText = "Description";
00150 this.descriptionColumn.Name = "descriptionColumn";
00151 this.descriptionColumn.ReadOnly = true;
00152 this.descriptionColumn.Width = 85;
00153
00154
00155
00156 this.authorColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
00157 this.authorColumn.HeaderText = "Author";
00158 this.authorColumn.Name = "authorColumn";
00159 this.authorColumn.ReadOnly = true;
00160 this.authorColumn.Width = 63;
00161
00162
00163
00164 this.versionColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
00165 this.versionColumn.HeaderText = "Version";
00166 this.versionColumn.Name = "versionColumn";
00167 this.versionColumn.ReadOnly = true;
00168 this.versionColumn.Width = 67;
00169
00170
00171
00172 this.pluginsToolStrip.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
00173 this.pluginsToolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
00174 this.addToolStripButton,
00175 this.statusToolStripLabel,
00176 this.toolStripProgressBar,
00177 this.toolStripSeparator1,
00178 this.loadToolStripButton,
00179 this.unloadToolStripButton,
00180 this.removeToolStripButton});
00181 this.pluginsToolStrip.Location = new System.Drawing.Point(0, 0);
00182 this.pluginsToolStrip.Name = "pluginsToolStrip";
00183 this.pluginsToolStrip.Padding = new System.Windows.Forms.Padding(0);
00184 this.pluginsToolStrip.Size = new System.Drawing.Size(427, 25);
00185 this.pluginsToolStrip.TabIndex = 1;
00186 this.pluginsToolStrip.Text = "toolStrip1";
00187
00188
00189
00190 this.addToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
00191 this.addToolStripButton.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
00192 this.installFromToolStripMenuItem,
00193 this.toolStripSeparator2,
00194 this.visitMpFxPluginGalleryToolStripMenuItem});
00195 this.addToolStripButton.Image = global::Mcs.Epm.MicrosoftProject.mpFx.Client.Shared.Properties.Resources.application_form_add;
00196 this.addToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
00197 this.addToolStripButton.Name = "addToolStripButton";
00198 this.addToolStripButton.Size = new System.Drawing.Size(29, 22);
00199 this.addToolStripButton.Text = "&Add";
00200
00201
00202
00203 this.installFromToolStripMenuItem.Name = "installFromToolStripMenuItem";
00204 this.installFromToolStripMenuItem.Size = new System.Drawing.Size(213, 22);
00205 this.installFromToolStripMenuItem.Text = "&Install... ";
00206 this.installFromToolStripMenuItem.Click += new System.EventHandler(this.installFromToolStripMenuItem_Click);
00207
00208
00209
00210 this.toolStripSeparator2.Name = "toolStripSeparator2";
00211 this.toolStripSeparator2.Size = new System.Drawing.Size(210, 6);
00212
00213
00214
00215 this.visitMpFxPluginGalleryToolStripMenuItem.Name = "visitMpFxPluginGalleryToolStripMenuItem";
00216 this.visitMpFxPluginGalleryToolStripMenuItem.Size = new System.Drawing.Size(213, 22);
00217 this.visitMpFxPluginGalleryToolStripMenuItem.Text = "&Visit mpFx Plugin Gallery...";
00218 this.visitMpFxPluginGalleryToolStripMenuItem.Click += new System.EventHandler(this.visitMpFxPluginGalleryToolStripMenuItem_Click);
00219
00220
00221
00222 this.statusToolStripLabel.Name = "statusToolStripLabel";
00223 this.statusToolStripLabel.Size = new System.Drawing.Size(64, 22);
00224 this.statusToolStripLabel.Text = "Installing...";
00225 this.statusToolStripLabel.Visible = false;
00226
00227
00228
00229 this.toolStripProgressBar.Name = "toolStripProgressBar";
00230 this.toolStripProgressBar.Size = new System.Drawing.Size(100, 22);
00231 this.toolStripProgressBar.Style = System.Windows.Forms.ProgressBarStyle.Marquee;
00232 this.toolStripProgressBar.Visible = false;
00233
00234
00235
00236 this.toolStripSeparator1.Name = "toolStripSeparator1";
00237 this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
00238
00239
00240
00241 this.loadToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
00242 this.loadToolStripButton.Enabled = false;
00243 this.loadToolStripButton.Image = global::Mcs.Epm.MicrosoftProject.mpFx.Client.Shared.Properties.Resources.application_get;
00244 this.loadToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
00245 this.loadToolStripButton.Name = "loadToolStripButton";
00246 this.loadToolStripButton.Size = new System.Drawing.Size(23, 22);
00247 this.loadToolStripButton.Text = "&Load";
00248 this.loadToolStripButton.Click += new System.EventHandler(this.loadToolStripButton_Click);
00249
00250
00251
00252 this.unloadToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
00253 this.unloadToolStripButton.Enabled = false;
00254 this.unloadToolStripButton.Image = global::Mcs.Epm.MicrosoftProject.mpFx.Client.Shared.Properties.Resources.application_put;
00255 this.unloadToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
00256 this.unloadToolStripButton.Name = "unloadToolStripButton";
00257 this.unloadToolStripButton.Size = new System.Drawing.Size(23, 22);
00258 this.unloadToolStripButton.Text = "&Unload";
00259 this.unloadToolStripButton.Click += new System.EventHandler(this.unloadToolStripButton_Click);
00260
00261
00262
00263 this.removeToolStripButton.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
00264 this.removeToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
00265 this.removeToolStripButton.Enabled = false;
00266 this.removeToolStripButton.Image = global::Mcs.Epm.MicrosoftProject.mpFx.Client.Shared.Properties.Resources.application_form_delete;
00267 this.removeToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
00268 this.removeToolStripButton.Name = "removeToolStripButton";
00269 this.removeToolStripButton.Size = new System.Drawing.Size(23, 22);
00270 this.removeToolStripButton.Text = "&Remove";
00271 this.removeToolStripButton.Click += new System.EventHandler(this.removeToolStripButton_Click);
00272
00273
00274
00275 this.optionsPanel.Controls.Add(this.optionsTabControl);
00276 this.optionsPanel.Controls.Add(this.noPluginsLoadedLabel);
00277 this.optionsPanel.Location = new System.Drawing.Point(49, 64);
00278 this.optionsPanel.Name = "optionsPanel";
00279 this.optionsPanel.Size = new System.Drawing.Size(427, 413);
00280 this.optionsPanel.TabIndex = 3;
00281
00282
00283
00284 this.optionsTabControl.Dock = System.Windows.Forms.DockStyle.Fill;
00285 this.optionsTabControl.Location = new System.Drawing.Point(0, 0);
00286 this.optionsTabControl.Name = "optionsTabControl";
00287 this.optionsTabControl.SelectedIndex = 0;
00288 this.optionsTabControl.Size = new System.Drawing.Size(427, 413);
00289 this.optionsTabControl.TabIndex = 0;
00290
00291
00292
00293 this.noPluginsLoadedLabel.Dock = System.Windows.Forms.DockStyle.Fill;
00294 this.noPluginsLoadedLabel.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
00295 this.noPluginsLoadedLabel.Location = new System.Drawing.Point(0, 0);
00296 this.noPluginsLoadedLabel.Name = "noPluginsLoadedLabel";
00297 this.noPluginsLoadedLabel.Size = new System.Drawing.Size(427, 413);
00298 this.noPluginsLoadedLabel.TabIndex = 1;
00299 this.noPluginsLoadedLabel.Text = "No Plugins Loaded";
00300 this.noPluginsLoadedLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
00301 this.noPluginsLoadedLabel.Visible = false;
00302
00303
00304
00305 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
00306 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
00307 this.ClientSize = new System.Drawing.Size(580, 470);
00308 this.Controls.Add(this.optionsPanel);
00309 this.Controls.Add(this.pluginsPanel);
00310 this.Controls.Add(this.okButton);
00311 this.Controls.Add(this.treeView);
00312 this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
00313 this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
00314 this.MaximizeBox = false;
00315 this.MinimizeBox = false;
00316 this.Name = "PluginManagerForm";
00317 this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
00318 this.Text = "Plugin Manager";
00319 this.Shown += new System.EventHandler(this.PluginManagerForm_Shown);
00320 this.pluginsPanel.ResumeLayout(false);
00321 this.pluginsPanel.PerformLayout();
00322 ((System.ComponentModel.ISupportInitialize)(this.pluginsDataGridView)).EndInit();
00323 this.pluginsToolStrip.ResumeLayout(false);
00324 this.pluginsToolStrip.PerformLayout();
00325 this.optionsPanel.ResumeLayout(false);
00326 this.ResumeLayout(false);
00327
00328 }
00329
00330 #endregion
00331
00332 private System.Windows.Forms.TreeView treeView;
00333 private System.Windows.Forms.Button okButton;
00334 private System.Windows.Forms.Panel pluginsPanel;
00335 private System.Windows.Forms.Panel optionsPanel;
00336 private System.Windows.Forms.DataGridView pluginsDataGridView;
00337 private System.Windows.Forms.ToolStrip pluginsToolStrip;
00338 private System.Windows.Forms.ToolStripButton removeToolStripButton;
00339 private System.Windows.Forms.ToolStripButton unloadToolStripButton;
00340 private System.Windows.Forms.TabControl optionsTabControl;
00341 private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
00342 private System.Windows.Forms.ToolStripButton loadToolStripButton;
00343 private System.Windows.Forms.DataGridViewTextBoxColumn statusColumn;
00344 private System.Windows.Forms.DataGridViewTextBoxColumn guidColumn;
00345 private System.Windows.Forms.DataGridViewTextBoxColumn nameColumn;
00346 private System.Windows.Forms.DataGridViewTextBoxColumn descriptionColumn;
00347 private System.Windows.Forms.DataGridViewTextBoxColumn authorColumn;
00348 private System.Windows.Forms.DataGridViewTextBoxColumn versionColumn;
00349 private System.Windows.Forms.ToolStripDropDownButton addToolStripButton;
00350 private System.Windows.Forms.ToolStripMenuItem installFromToolStripMenuItem;
00351 private System.Windows.Forms.ToolStripSeparator toolStripSeparator2;
00352 private System.Windows.Forms.ToolStripMenuItem visitMpFxPluginGalleryToolStripMenuItem;
00353 private System.Windows.Forms.Label noPluginsLoadedLabel;
00354 private System.Windows.Forms.ToolStripLabel statusToolStripLabel;
00355 private System.Windows.Forms.ToolStripProgressBar toolStripProgressBar;
00356 }
00357 }