using System.Windows.Forms; using FastReport.Utils; using FastReport.Design.PageDesigners.Code; using FastReport.Controls; namespace FastReport.Forms { internal class CodePageOptions : DesignerOptionsPage { private CodePageDesigner editor; private CheckBox cbEnableCodeCompletion; private CheckBox cbEnableVirtualSpace; private CheckBox cbAllowOutlining; private NumericUpDown udTabSize; private Label lblTabSize; private CheckBox cbLineNumbers; private GroupBox gbScriptLanguage; private RadioButton rbVBNet; private RadioButton rbCSharp; private CheckBox cbUseSpaces; private void InitializeComponent() { this.cbEnableCodeCompletion = new CheckBox(); this.cbEnableVirtualSpace = new CheckBox(); this.cbUseSpaces = new CheckBox(); this.cbAllowOutlining = new CheckBox(); this.udTabSize = new NumericUpDown(); this.lblTabSize = new Label(); this.cbLineNumbers = new CheckBox(); this.gbScriptLanguage = new GroupBox(); this.rbVBNet = new RadioButton(); this.rbCSharp = new RadioButton(); this.tc1.SuspendLayout(); this.tab1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udTabSize)).BeginInit(); this.gbScriptLanguage.SuspendLayout(); this.SuspendLayout(); // // tab1 // this.tab1.Controls.Add(this.gbScriptLanguage); this.tab1.Controls.Add(this.cbLineNumbers); this.tab1.Controls.Add(this.udTabSize); this.tab1.Controls.Add(this.lblTabSize); this.tab1.Controls.Add(this.cbEnableCodeCompletion); this.tab1.Controls.Add(this.cbEnableVirtualSpace); this.tab1.Controls.Add(this.cbUseSpaces); this.tab1.Controls.Add(this.cbAllowOutlining); // // cbEnableCodeCompletion // this.cbEnableCodeCompletion.AutoSize = true; this.cbEnableCodeCompletion.Location = new System.Drawing.Point(16, 16); this.cbEnableCodeCompletion.Name = "cbEnableCodeCompletion"; this.cbEnableCodeCompletion.Size = new System.Drawing.Size(138, 17); this.cbEnableCodeCompletion.TabIndex = 7; this.cbEnableCodeCompletion.Text = "Enable code completion"; this.cbEnableCodeCompletion.UseVisualStyleBackColor = true; // // cbEnableVirtualSpace // this.cbEnableVirtualSpace.AutoSize = true; this.cbEnableVirtualSpace.Location = new System.Drawing.Point(16, 40); this.cbEnableVirtualSpace.Name = "cbEnableVirtualSpace"; this.cbEnableVirtualSpace.Size = new System.Drawing.Size(122, 17); this.cbEnableVirtualSpace.TabIndex = 0; this.cbEnableVirtualSpace.Text = "Enable virtual space"; this.cbEnableVirtualSpace.UseVisualStyleBackColor = true; // // cbUseSpaces // this.cbUseSpaces.AutoSize = true; this.cbUseSpaces.Location = new System.Drawing.Point(16, 64); this.cbUseSpaces.Name = "cbUseSpaces"; this.cbUseSpaces.Size = new System.Drawing.Size(130, 17); this.cbUseSpaces.TabIndex = 1; this.cbUseSpaces.Text = "Use spaces to fill tabs"; this.cbUseSpaces.UseVisualStyleBackColor = true; // // cbAllowOutlining // this.cbAllowOutlining.AutoSize = true; this.cbAllowOutlining.Location = new System.Drawing.Point(16, 88); this.cbAllowOutlining.Name = "cbAllowOutlining"; this.cbAllowOutlining.Size = new System.Drawing.Size(94, 17); this.cbAllowOutlining.TabIndex = 2; this.cbAllowOutlining.Text = "Allow outlining"; this.cbAllowOutlining.UseVisualStyleBackColor = true; // // udTabSize // this.udTabSize.Location = new System.Drawing.Point(199, 138); this.udTabSize.Maximum = new decimal(new int[] { 16, 0, 0, 0}); this.udTabSize.Minimum = new decimal(new int[] { 1, 0, 0, 0}); this.udTabSize.Name = "udTabSize"; this.udTabSize.Size = new System.Drawing.Size(76, 21); this.udTabSize.TabIndex = 5; this.udTabSize.Value = new decimal(new int[] { 1, 0, 0, 0}); // // lblTabSize // this.lblTabSize.AutoSize = true; this.lblTabSize.Location = new System.Drawing.Point(16, 140); this.lblTabSize.Name = "lblTabSize"; this.lblTabSize.Size = new System.Drawing.Size(50, 13); this.lblTabSize.TabIndex = 4; this.lblTabSize.Text = "Tab size:"; // // cbLineNumbers // this.cbLineNumbers.AutoSize = true; this.cbLineNumbers.Location = new System.Drawing.Point(16, 112); this.cbLineNumbers.Name = "cbLineNumbers"; this.cbLineNumbers.Size = new System.Drawing.Size(89, 17); this.cbLineNumbers.TabIndex = 6; this.cbLineNumbers.Text = "Line numbers"; this.cbLineNumbers.UseVisualStyleBackColor = true; // // gbScriptLanguage // this.gbScriptLanguage.Controls.Add(this.rbVBNet); this.gbScriptLanguage.Controls.Add(this.rbCSharp); this.gbScriptLanguage.Location = new System.Drawing.Point(16, 165); this.gbScriptLanguage.Name = "gbScriptLanguage"; this.gbScriptLanguage.Size = new System.Drawing.Size(335, 68); this.gbScriptLanguage.TabIndex = 10; this.gbScriptLanguage.TabStop = false; this.gbScriptLanguage.Text = "Default script language:"; // // rbVBNet // this.rbVBNet.AutoSize = true; this.rbVBNet.Location = new System.Drawing.Point(154, 29); this.rbVBNet.Name = "rbVBNet"; this.rbVBNet.Size = new System.Drawing.Size(105, 17); this.rbVBNet.TabIndex = 1; this.rbVBNet.Text = "Visual Basic .NET"; this.rbVBNet.UseVisualStyleBackColor = true; // // rbCSharp // this.rbCSharp.AutoSize = true; this.rbCSharp.Checked = true; this.rbCSharp.Location = new System.Drawing.Point(10, 29); this.rbCSharp.Name = "rbCSharp"; this.rbCSharp.Size = new System.Drawing.Size(40, 17); this.rbCSharp.TabIndex = 0; this.rbCSharp.TabStop = true; this.rbCSharp.Text = "C#"; this.rbCSharp.UseVisualStyleBackColor = true; // // CodePageOptions // this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi; this.ClientSize = new System.Drawing.Size(389, 313); this.Name = "CodePageOptions"; this.tc1.ResumeLayout(false); this.tab1.ResumeLayout(false); this.tab1.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.udTabSize)).EndInit(); this.gbScriptLanguage.ResumeLayout(false); this.gbScriptLanguage.PerformLayout(); this.ResumeLayout(false); this.PerformLayout(); } public void Localize() { MyRes res = new MyRes("Forms,CodePageOptions"); tab1.Text = res.Get(""); cbEnableCodeCompletion.Text = res.Get("EnableCodeCompletion"); cbEnableVirtualSpace.Text = res.Get("EnableVirtualSpace"); cbUseSpaces.Text = res.Get("UseSpaces"); cbAllowOutlining.Text = res.Get("AllowOutlining"); cbLineNumbers.Text = res.Get("LineNumbers"); lblTabSize.Text = res.Get("TabSize"); gbScriptLanguage.Text = res.Get("DefaultScriptLanguage"); rbCSharp.Text = res.Get("CSharp"); rbVBNet.Text = res.Get("VBNet"); } public override void Init() { cbEnableCodeCompletion.Checked = CodePageSettings.EnableCodeCompletion; cbEnableVirtualSpace.Checked = CodePageSettings.EnableVirtualSpace; cbUseSpaces.Checked = CodePageSettings.UseSpaces; cbAllowOutlining.Checked = CodePageSettings.AllowOutlining; cbLineNumbers.Checked = CodePageSettings.LineNumbers; udTabSize.Value = CodePageSettings.TabSize; if (CodePageSettings.DefaultScriptLanguage == Language.CSharp) { rbCSharp.Checked = true; rbVBNet.Checked = false; } else { rbCSharp.Checked = false; rbVBNet.Checked = true; } } public override void Done(DialogResult result) { if (result == DialogResult.OK) { CodePageSettings.EnableCodeCompletion = cbEnableCodeCompletion.Checked; CodePageSettings.EnableVirtualSpace = cbEnableVirtualSpace.Checked; CodePageSettings.UseSpaces = cbUseSpaces.Checked; CodePageSettings.AllowOutlining = cbAllowOutlining.Checked; CodePageSettings.LineNumbers = cbLineNumbers.Checked; CodePageSettings.TabSize = (int)udTabSize.Value; CodePageSettings.DefaultScriptLanguage = rbCSharp.Checked ? Language.CSharp : Language.Vb; editor.UpdateOptions(); } } public CodePageOptions(CodePageDesigner editor) : base() { this.editor = editor; InitializeComponent(); Localize(); } } }