using FastReport.Controls; namespace FastReport.Forms { partial class PluginsOptions { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.tab2 = new System.Windows.Forms.TabPage(); this.dgPlugins = new System.Windows.Forms.DataGridView(); this.lblNote = new System.Windows.Forms.Label(); this.btnDown = new System.Windows.Forms.Button(); this.btnUp = new System.Windows.Forms.Button(); this.btnRemove = new System.Windows.Forms.Button(); this.btnAdd = new System.Windows.Forms.Button(); this.lblHint = new System.Windows.Forms.Label(); this.lblUIStyle = new System.Windows.Forms.Label(); this.cbxUIStyle = new System.Windows.Forms.ComboBox(); this.cbRibbon = new System.Windows.Forms.CheckBox(); this.cbWelcome = new System.Windows.Forms.CheckBox(); this.lblRightToLeft = new System.Windows.Forms.Label(); this.cbxRightToLeft = new System.Windows.Forms.ComboBox(); this.cbDisableHotkeys = new System.Windows.Forms.CheckBox(); this.buttonX1 = new System.Windows.Forms.Button(); this.btnFonts = new System.Windows.Forms.Button(); this.btnExportsMenuEdit = new System.Windows.Forms.Button(); this.lblIconPack = new System.Windows.Forms.Label(); this.cbxIconPack = new System.Windows.Forms.ComboBox(); this.lblRestart = new System.Windows.Forms.Label(); this.btnResetConfig = new System.Windows.Forms.Button(); this.tc1.SuspendLayout(); this.tab1.SuspendLayout(); this.tab2.SuspendLayout(); this.SuspendLayout(); // // tc1 // this.tc1.Controls.Add(this.tab2); this.tc1.Controls.SetChildIndex(this.tab2, 0); this.tc1.Controls.SetChildIndex(this.tab1, 0); // // tab1 // this.tab1.Controls.Add(this.btnResetConfig); this.tab1.Controls.Add(this.lblRestart); this.tab1.Controls.Add(this.btnExportsMenuEdit); this.tab1.Controls.Add(this.btnFonts); this.tab1.Controls.Add(this.cbDisableHotkeys); this.tab1.Controls.Add(this.cbxRightToLeft); this.tab1.Controls.Add(this.lblRightToLeft); this.tab1.Controls.Add(this.cbWelcome); this.tab1.Controls.Add(this.cbRibbon); this.tab1.Controls.Add(this.cbxIconPack); this.tab1.Controls.Add(this.cbxUIStyle); this.tab1.Controls.Add(this.lblIconPack); this.tab1.Controls.Add(this.lblUIStyle); this.tab1.Text = "User Interface"; // // tab2 // this.tab2.Controls.Add(this.dgPlugins); this.tab2.Controls.Add(this.lblNote); this.tab2.Controls.Add(this.btnDown); this.tab2.Controls.Add(this.btnUp); this.tab2.Controls.Add(this.btnRemove); this.tab2.Controls.Add(this.btnAdd); this.tab2.Controls.Add(this.lblHint); this.tab2.Location = new System.Drawing.Point(4, 22); this.tab2.Name = "tab2"; this.tab2.Padding = new System.Windows.Forms.Padding(3); this.tab2.Size = new System.Drawing.Size(368, 250); this.tab2.TabIndex = 1; this.tab2.Text = "Plugins"; this.tab2.UseVisualStyleBackColor = true; // // dgPlugins // this.dgPlugins.Location = new System.Drawing.Point(16, 36); this.dgPlugins.Name = "dgPlugins"; this.dgPlugins.Size = new System.Drawing.Size(252, 176); this.dgPlugins.BackColor = System.Drawing.Color.WhiteSmoke; this.dgPlugins.AllowUserToAddRows = false; this.dgPlugins.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect; this.dgPlugins.MultiSelect = false; this.dgPlugins.AllowUserToDeleteRows = false; this.dgPlugins.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; this.dgPlugins.ColumnHeadersVisible = false; this.dgPlugins.RowHeadersVisible = false; this.dgPlugins.EditMode = System.Windows.Forms.DataGridViewEditMode.EditProgrammatically; this.dgPlugins.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.None; this.dgPlugins.SelectionChanged += new System.EventHandler(this.dgPlugins_SelectedIndexChanged); System.Windows.Forms.DataGridViewImageColumn imageColumn = new System.Windows.Forms.DataGridViewImageColumn(); imageColumn.Name = "Picture"; imageColumn.HeaderText = "Picture"; imageColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None; imageColumn.Resizable = System.Windows.Forms.DataGridViewTriState.False; imageColumn.Width = 30; System.Windows.Forms.DataGridViewColumn column = new System.Windows.Forms.DataGridViewColumn(); column.Name = "name"; column.HeaderText = "Name"; column.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill; column.Resizable = System.Windows.Forms.DataGridViewTriState.False; column.CellTemplate = new System.Windows.Forms.DataGridViewTextBoxCell(); dgPlugins.Columns.Add(imageColumn); dgPlugins.Columns.Add(column); // // lblNote // this.lblNote.Location = new System.Drawing.Point(16, 216); this.lblNote.Name = "lblNote"; this.lblNote.Size = new System.Drawing.Size(336, 28); this.lblNote.TabIndex = 13; this.lblNote.Text = "Note: changes made will take effect on FastReport restart."; // // btnDown // this.btnDown.Location = new System.Drawing.Point(280, 188); this.btnDown.Name = "btnDown"; this.btnDown.Size = new System.Drawing.Size(24, 23); this.btnDown.TabIndex = 12; this.btnDown.UseVisualStyleBackColor = true; this.btnDown.Click += new System.EventHandler(this.btnDown_Click); // // btnUp // this.btnUp.Location = new System.Drawing.Point(280, 160); this.btnUp.Name = "btnUp"; this.btnUp.Size = new System.Drawing.Size(24, 23); this.btnUp.TabIndex = 11; this.btnUp.UseVisualStyleBackColor = true; this.btnUp.Click += new System.EventHandler(this.btnUp_Click); // // btnRemove // this.btnRemove.Location = new System.Drawing.Point(280, 64); this.btnRemove.Name = "btnRemove"; this.btnRemove.Size = new System.Drawing.Size(75, 23); this.btnRemove.TabIndex = 10; this.btnRemove.Text = "Remove"; this.btnRemove.UseVisualStyleBackColor = true; this.btnRemove.Click += new System.EventHandler(this.btnRemove_Click); // // btnAdd // this.btnAdd.Location = new System.Drawing.Point(280, 36); this.btnAdd.Name = "btnAdd"; this.btnAdd.Size = new System.Drawing.Size(75, 23); this.btnAdd.TabIndex = 9; this.btnAdd.Text = "Add"; this.btnAdd.UseVisualStyleBackColor = true; this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click); // // lblHint // this.lblHint.AutoSize = true; this.lblHint.Location = new System.Drawing.Point(16, 16); this.lblHint.Name = "lblHint"; this.lblHint.Size = new System.Drawing.Size(175, 13); this.lblHint.TabIndex = 8; this.lblHint.Text = "List of installed FastReport plugins:"; // // lblUIStyle // this.lblUIStyle.AutoSize = true; this.lblUIStyle.Location = new System.Drawing.Point(16, 20); this.lblUIStyle.Name = "lblUIStyle"; this.lblUIStyle.Size = new System.Drawing.Size(105, 13); this.lblUIStyle.TabIndex = 0; this.lblUIStyle.Text = "User interface style:"; // // cbxUIStyle // this.cbxUIStyle.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cbxUIStyle.FormattingEnabled = true; this.cbxUIStyle.Location = new System.Drawing.Point(192, 16); this.cbxUIStyle.Name = "cbxUIStyle"; this.cbxUIStyle.Size = new System.Drawing.Size(160, 21); this.cbxUIStyle.TabIndex = 1; // // cbRibbon // this.cbRibbon.AutoSize = true; this.cbRibbon.Location = new System.Drawing.Point(19, 107); this.cbRibbon.Name = "cbRibbon"; this.cbRibbon.Size = new System.Drawing.Size(168, 17); this.cbRibbon.TabIndex = 2; this.cbRibbon.Text = "Use the new Ribbon interface"; this.cbRibbon.UseVisualStyleBackColor = true; // // cbWelcome // this.cbWelcome.AutoSize = true; this.cbWelcome.Location = new System.Drawing.Point(19, 130); this.cbWelcome.Name = "cbWelcome"; this.cbWelcome.Size = new System.Drawing.Size(188, 17); this.cbWelcome.TabIndex = 3; this.cbWelcome.Text = "Show welcome window on startup"; this.cbWelcome.UseVisualStyleBackColor = true; // // lblRightToLeft // this.lblRightToLeft.AutoSize = true; this.lblRightToLeft.Location = new System.Drawing.Point(16, 73); this.lblRightToLeft.Name = "lblRightToLeft"; this.lblRightToLeft.Size = new System.Drawing.Size(141, 13); this.lblRightToLeft.TabIndex = 4; this.lblRightToLeft.Text = "Right to Left user interface:"; // // cbxRightToLeft // this.cbxRightToLeft.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cbxRightToLeft.FormattingEnabled = true; this.cbxRightToLeft.Location = new System.Drawing.Point(192, 70); this.cbxRightToLeft.Name = "cbxRightToLeft"; this.cbxRightToLeft.Size = new System.Drawing.Size(160, 21); this.cbxRightToLeft.TabIndex = 5; this.cbxRightToLeft.SelectedIndexChanged += new System.EventHandler(this.cbxRightToLeft_SelectedIndexChanged); // // cbDisableHotkeys // this.cbDisableHotkeys.AutoSize = true; this.cbDisableHotkeys.Location = new System.Drawing.Point(19, 153); this.cbDisableHotkeys.Name = "cbDisableHotkeys"; this.cbDisableHotkeys.Size = new System.Drawing.Size(101, 17); this.cbDisableHotkeys.TabIndex = 6; this.cbDisableHotkeys.Text = "Disable hotkeys"; this.cbDisableHotkeys.UseVisualStyleBackColor = true; // // buttonX1 // this.buttonX1.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; this.buttonX1.Location = new System.Drawing.Point(0, 0); this.buttonX1.Name = "buttonX1"; this.buttonX1.Size = new System.Drawing.Size(75, 23); this.buttonX1.TabIndex = 0; // // btnFonts // this.btnFonts.Location = new System.Drawing.Point(19, 211); this.btnFonts.Name = "btnFonts"; this.btnFonts.Size = new System.Drawing.Size(85, 23); this.btnFonts.TabIndex = 7; this.btnFonts.Text = "Fonts"; this.btnFonts.UseVisualStyleBackColor = true; this.btnFonts.Click += new System.EventHandler(this.btnFonts_Click); // // btnExportsMenuEdit // this.btnExportsMenuEdit.Location = new System.Drawing.Point(111, 211); this.btnExportsMenuEdit.Name = "btnExportsMenuEdit"; this.btnExportsMenuEdit.Size = new System.Drawing.Size(96, 23); this.btnExportsMenuEdit.TabIndex = 8; this.btnExportsMenuEdit.Text = "Exports Menu"; this.btnExportsMenuEdit.UseVisualStyleBackColor = true; this.btnExportsMenuEdit.Click += new System.EventHandler(this.BtnExportsMenuEdit_Click); // // lblIconPack // this.lblIconPack.AutoSize = true; this.lblIconPack.Location = new System.Drawing.Point(16, 46); this.lblIconPack.Name = "lblIconPack"; this.lblIconPack.Size = new System.Drawing.Size(37, 13); this.lblIconPack.TabIndex = 0; this.lblIconPack.Text = "Icons:"; // // cbxIconPack // this.cbxIconPack.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cbxIconPack.FormattingEnabled = true; this.cbxIconPack.Location = new System.Drawing.Point(192, 43); this.cbxIconPack.Name = "cbxIconPack"; this.cbxIconPack.Size = new System.Drawing.Size(160, 21); this.cbxIconPack.TabIndex = 1; this.cbxIconPack.SelectedIndexChanged += new System.EventHandler(this.cbxRightToLeft_SelectedIndexChanged); // // lblRestart // this.lblRestart.AutoSize = true; this.lblRestart.Location = new System.Drawing.Point(16, 186); this.lblRestart.Name = "lblRestart"; this.lblRestart.Size = new System.Drawing.Size(95, 13); this.lblRestart.TabIndex = 9; this.lblRestart.Text = "* Restart required"; // // btnResetConfig // this.btnResetConfig.Location = new System.Drawing.Point(229, 211); this.btnResetConfig.Name = "btnResetConfig"; this.btnResetConfig.Size = new System.Drawing.Size(123, 23); this.btnResetConfig.TabIndex = 10; this.btnResetConfig.Text = "Reset config"; this.btnResetConfig.UseVisualStyleBackColor = true; this.btnResetConfig.Click += new System.EventHandler(this.btnResetConfig_Click); // // PluginsOptions // this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi; this.ClientSize = new System.Drawing.Size(398, 323); this.Name = "PluginsOptions"; this.tc1.ResumeLayout(false); this.tab1.ResumeLayout(false); this.tab1.PerformLayout(); this.tab2.ResumeLayout(false); this.tab2.PerformLayout(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.TabPage tab2; private System.Windows.Forms.DataGridView dgPlugins; private System.Windows.Forms.Label lblNote; private System.Windows.Forms.Button btnDown; private System.Windows.Forms.Button btnUp; private System.Windows.Forms.Button btnRemove; private System.Windows.Forms.Button btnAdd; private System.Windows.Forms.Label lblHint; private System.Windows.Forms.ComboBox cbxUIStyle; private System.Windows.Forms.Label lblUIStyle; private System.Windows.Forms.ComboBox cbxRightToLeft; private System.Windows.Forms.Label lblRightToLeft; private System.Windows.Forms.Button btnFonts; private System.Windows.Forms.Button buttonX1; private System.Windows.Forms.Button btnExportsMenuEdit; private System.Windows.Forms.CheckBox cbRibbon; private System.Windows.Forms.CheckBox cbWelcome; private System.Windows.Forms.CheckBox cbDisableHotkeys; private System.Windows.Forms.ComboBox cbxIconPack; private System.Windows.Forms.Label lblIconPack; private System.Windows.Forms.Label lblRestart; private System.Windows.Forms.Button btnResetConfig; } }