- Put RO Adjustment code prior to Replace Words - Match 16 Bit
- Replaced logic for Replace Words so that they are replaced sequentially through the text rather than sequentially through the word list. - Added DoTransitionAdjustments that adds hardspaces to Transitions. - Changed the NextUnicode module to ignore Hard Spaces - Added logic to find 'real' spaces in ROs and replace only them. Spaces are also used to terminate RTF commands. Added code to handle "AND Range" Transitions - Use new ToolTip property - Use new MyStepSectionLayoutData - Remove Debug Remove unused code Renamed TwipsPerPage to PointsPerPage Adjusted Superscript offset to match 16-Bit - Added Debug Code to compare 16-Bit and 32-Bit text - Added Debug Code forr Pagination - Added optional code to match 16-Bit pagination Added Ruler for 6 and 7 lines per inch.
This commit is contained in:
@@ -33,6 +33,8 @@ namespace Volian.Controls.Library
|
||||
this.btnTranCancel = new DevComponents.DotNetBar.ButtonX();
|
||||
this.btnTranSave = new DevComponents.DotNetBar.ButtonX();
|
||||
this.groupPanelTranFmt = new DevComponents.DotNetBar.Controls.GroupPanel();
|
||||
this.rbEntireSec = new System.Windows.Forms.RadioButton();
|
||||
this.rbEntireProc = new System.Windows.Forms.RadioButton();
|
||||
this.listBoxTranFmt = new System.Windows.Forms.ListBox();
|
||||
this.groupPanelTransitionSets = new DevComponents.DotNetBar.Controls.GroupPanel();
|
||||
this.vlnTreeComboSets = new Volian.Controls.Library.vlnTreeCombo();
|
||||
@@ -66,7 +68,7 @@ namespace Volian.Controls.Library
|
||||
this.groupPanelBtns.Location = new System.Drawing.Point(0, 0);
|
||||
this.groupPanelBtns.Margin = new System.Windows.Forms.Padding(4);
|
||||
this.groupPanelBtns.Name = "groupPanelBtns";
|
||||
this.groupPanelBtns.Size = new System.Drawing.Size(501, 52);
|
||||
this.groupPanelBtns.Size = new System.Drawing.Size(501, 44);
|
||||
//
|
||||
//
|
||||
//
|
||||
@@ -92,10 +94,12 @@ namespace Volian.Controls.Library
|
||||
//
|
||||
//
|
||||
this.groupPanelBtns.StyleMouseDown.Class = "";
|
||||
this.groupPanelBtns.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
||||
//
|
||||
//
|
||||
//
|
||||
this.groupPanelBtns.StyleMouseOver.Class = "";
|
||||
this.groupPanelBtns.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
||||
this.groupPanelBtns.TabIndex = 25;
|
||||
//
|
||||
// btnTranCancel
|
||||
@@ -134,12 +138,14 @@ namespace Volian.Controls.Library
|
||||
//
|
||||
this.groupPanelTranFmt.CanvasColor = System.Drawing.SystemColors.Control;
|
||||
this.groupPanelTranFmt.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
|
||||
this.groupPanelTranFmt.Controls.Add(this.rbEntireSec);
|
||||
this.groupPanelTranFmt.Controls.Add(this.rbEntireProc);
|
||||
this.groupPanelTranFmt.Controls.Add(this.listBoxTranFmt);
|
||||
this.groupPanelTranFmt.Dock = System.Windows.Forms.DockStyle.Top;
|
||||
this.groupPanelTranFmt.Location = new System.Drawing.Point(0, 52);
|
||||
this.groupPanelTranFmt.Location = new System.Drawing.Point(0, 44);
|
||||
this.groupPanelTranFmt.Margin = new System.Windows.Forms.Padding(4);
|
||||
this.groupPanelTranFmt.Name = "groupPanelTranFmt";
|
||||
this.groupPanelTranFmt.Size = new System.Drawing.Size(501, 138);
|
||||
this.groupPanelTranFmt.Size = new System.Drawing.Size(501, 182);
|
||||
//
|
||||
//
|
||||
//
|
||||
@@ -165,13 +171,39 @@ namespace Volian.Controls.Library
|
||||
//
|
||||
//
|
||||
this.groupPanelTranFmt.StyleMouseDown.Class = "";
|
||||
this.groupPanelTranFmt.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
||||
//
|
||||
//
|
||||
//
|
||||
this.groupPanelTranFmt.StyleMouseOver.Class = "";
|
||||
this.groupPanelTranFmt.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
||||
this.groupPanelTranFmt.TabIndex = 27;
|
||||
this.groupPanelTranFmt.Text = "Select Format";
|
||||
//
|
||||
// rbEntireSec
|
||||
//
|
||||
this.rbEntireSec.AutoSize = true;
|
||||
this.rbEntireSec.Dock = System.Windows.Forms.DockStyle.Right;
|
||||
this.rbEntireSec.Location = new System.Drawing.Point(419, 116);
|
||||
this.rbEntireSec.Name = "rbEntireSec";
|
||||
this.rbEntireSec.Size = new System.Drawing.Size(76, 43);
|
||||
this.rbEntireSec.TabIndex = 15;
|
||||
this.rbEntireSec.TabStop = true;
|
||||
this.rbEntireSec.Text = "Entire\r\nSection";
|
||||
this.rbEntireSec.UseVisualStyleBackColor = true;
|
||||
//
|
||||
// rbEntireProc
|
||||
//
|
||||
this.rbEntireProc.AutoSize = true;
|
||||
this.rbEntireProc.Dock = System.Windows.Forms.DockStyle.Left;
|
||||
this.rbEntireProc.Location = new System.Drawing.Point(0, 116);
|
||||
this.rbEntireProc.Name = "rbEntireProc";
|
||||
this.rbEntireProc.Size = new System.Drawing.Size(95, 43);
|
||||
this.rbEntireProc.TabIndex = 14;
|
||||
this.rbEntireProc.TabStop = true;
|
||||
this.rbEntireProc.Text = "Entire\r\nProcedure";
|
||||
this.rbEntireProc.UseVisualStyleBackColor = true;
|
||||
//
|
||||
// listBoxTranFmt
|
||||
//
|
||||
this.listBoxTranFmt.Dock = System.Windows.Forms.DockStyle.Top;
|
||||
@@ -181,7 +213,7 @@ namespace Volian.Controls.Library
|
||||
this.listBoxTranFmt.Location = new System.Drawing.Point(0, 0);
|
||||
this.listBoxTranFmt.Margin = new System.Windows.Forms.Padding(4);
|
||||
this.listBoxTranFmt.Name = "listBoxTranFmt";
|
||||
this.listBoxTranFmt.Size = new System.Drawing.Size(495, 100);
|
||||
this.listBoxTranFmt.Size = new System.Drawing.Size(495, 116);
|
||||
this.superToolTipDispTran.SetSuperTooltip(this.listBoxTranFmt, new DevComponents.DotNetBar.SuperTooltipInfo("", "", resources.GetString("listBoxTranFmt.SuperTooltip"), null, null, DevComponents.DotNetBar.eTooltipColor.Gray));
|
||||
this.listBoxTranFmt.TabIndex = 13;
|
||||
this.listBoxTranFmt.SelectedIndexChanged += new System.EventHandler(this.listBoxTranFmt_Click);
|
||||
@@ -192,7 +224,7 @@ namespace Volian.Controls.Library
|
||||
this.groupPanelTransitionSets.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
|
||||
this.groupPanelTransitionSets.Controls.Add(this.vlnTreeComboSets);
|
||||
this.groupPanelTransitionSets.Dock = System.Windows.Forms.DockStyle.Top;
|
||||
this.groupPanelTransitionSets.Location = new System.Drawing.Point(0, 190);
|
||||
this.groupPanelTransitionSets.Location = new System.Drawing.Point(0, 226);
|
||||
this.groupPanelTransitionSets.Margin = new System.Windows.Forms.Padding(4);
|
||||
this.groupPanelTransitionSets.Name = "groupPanelTransitionSets";
|
||||
this.groupPanelTransitionSets.Size = new System.Drawing.Size(501, 59);
|
||||
@@ -221,10 +253,12 @@ namespace Volian.Controls.Library
|
||||
//
|
||||
//
|
||||
this.groupPanelTransitionSets.StyleMouseDown.Class = "";
|
||||
this.groupPanelTransitionSets.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
||||
//
|
||||
//
|
||||
//
|
||||
this.groupPanelTransitionSets.StyleMouseOver.Class = "";
|
||||
this.groupPanelTransitionSets.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
||||
this.groupPanelTransitionSets.TabIndex = 31;
|
||||
this.groupPanelTransitionSets.Text = "Select Procedure Set";
|
||||
//
|
||||
@@ -246,7 +280,7 @@ namespace Volian.Controls.Library
|
||||
this.groupPanelTransitionProcs.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
|
||||
this.groupPanelTransitionProcs.Controls.Add(this.cbTranProcs);
|
||||
this.groupPanelTransitionProcs.Dock = System.Windows.Forms.DockStyle.Top;
|
||||
this.groupPanelTransitionProcs.Location = new System.Drawing.Point(0, 249);
|
||||
this.groupPanelTransitionProcs.Location = new System.Drawing.Point(0, 285);
|
||||
this.groupPanelTransitionProcs.Margin = new System.Windows.Forms.Padding(4);
|
||||
this.groupPanelTransitionProcs.Name = "groupPanelTransitionProcs";
|
||||
this.groupPanelTransitionProcs.Size = new System.Drawing.Size(501, 57);
|
||||
@@ -275,10 +309,12 @@ namespace Volian.Controls.Library
|
||||
//
|
||||
//
|
||||
this.groupPanelTransitionProcs.StyleMouseDown.Class = "";
|
||||
this.groupPanelTransitionProcs.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
||||
//
|
||||
//
|
||||
//
|
||||
this.groupPanelTransitionProcs.StyleMouseOver.Class = "";
|
||||
this.groupPanelTransitionProcs.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
||||
this.groupPanelTransitionProcs.TabIndex = 32;
|
||||
this.groupPanelTransitionProcs.Text = "Select Procedure";
|
||||
//
|
||||
@@ -300,7 +336,7 @@ namespace Volian.Controls.Library
|
||||
this.groupPanelTransitionSect.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
|
||||
this.groupPanelTransitionSect.Controls.Add(this.cbTranSects);
|
||||
this.groupPanelTransitionSect.Dock = System.Windows.Forms.DockStyle.Top;
|
||||
this.groupPanelTransitionSect.Location = new System.Drawing.Point(0, 306);
|
||||
this.groupPanelTransitionSect.Location = new System.Drawing.Point(0, 342);
|
||||
this.groupPanelTransitionSect.Margin = new System.Windows.Forms.Padding(4);
|
||||
this.groupPanelTransitionSect.Name = "groupPanelTransitionSect";
|
||||
this.groupPanelTransitionSect.Size = new System.Drawing.Size(501, 60);
|
||||
@@ -329,10 +365,12 @@ namespace Volian.Controls.Library
|
||||
//
|
||||
//
|
||||
this.groupPanelTransitionSect.StyleMouseDown.Class = "";
|
||||
this.groupPanelTransitionSect.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
||||
//
|
||||
//
|
||||
//
|
||||
this.groupPanelTransitionSect.StyleMouseOver.Class = "";
|
||||
this.groupPanelTransitionSect.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
||||
this.groupPanelTransitionSect.TabIndex = 33;
|
||||
this.groupPanelTransitionSect.Text = "Select Section";
|
||||
//
|
||||
@@ -356,10 +394,10 @@ namespace Volian.Controls.Library
|
||||
this.groupPanelTranstionSteps.Controls.Add(this.tvTran);
|
||||
this.groupPanelTranstionSteps.Controls.Add(this.pnlTranStepBtns);
|
||||
this.groupPanelTranstionSteps.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||
this.groupPanelTranstionSteps.Location = new System.Drawing.Point(0, 366);
|
||||
this.groupPanelTranstionSteps.Location = new System.Drawing.Point(0, 402);
|
||||
this.groupPanelTranstionSteps.Margin = new System.Windows.Forms.Padding(4);
|
||||
this.groupPanelTranstionSteps.Name = "groupPanelTranstionSteps";
|
||||
this.groupPanelTranstionSteps.Size = new System.Drawing.Size(501, 466);
|
||||
this.groupPanelTranstionSteps.Size = new System.Drawing.Size(501, 430);
|
||||
//
|
||||
//
|
||||
//
|
||||
@@ -385,10 +423,12 @@ namespace Volian.Controls.Library
|
||||
//
|
||||
//
|
||||
this.groupPanelTranstionSteps.StyleMouseDown.Class = "";
|
||||
this.groupPanelTranstionSteps.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
||||
//
|
||||
//
|
||||
//
|
||||
this.groupPanelTranstionSteps.StyleMouseOver.Class = "";
|
||||
this.groupPanelTranstionSteps.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
||||
this.groupPanelTranstionSteps.TabIndex = 34;
|
||||
this.groupPanelTranstionSteps.Text = "Select Step";
|
||||
//
|
||||
@@ -399,7 +439,7 @@ namespace Volian.Controls.Library
|
||||
this.tvTran.Location = new System.Drawing.Point(0, 57);
|
||||
this.tvTran.Margin = new System.Windows.Forms.Padding(4);
|
||||
this.tvTran.Name = "tvTran";
|
||||
this.tvTran.Size = new System.Drawing.Size(495, 386);
|
||||
this.tvTran.Size = new System.Drawing.Size(495, 350);
|
||||
this.superToolTipDispTran.SetSuperTooltip(this.tvTran, new DevComponents.DotNetBar.SuperTooltipInfo("", "", resources.GetString("tvTran.SuperTooltip"), null, null, DevComponents.DotNetBar.eTooltipColor.Gray));
|
||||
this.tvTran.TabIndex = 31;
|
||||
this.tvTran.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.tvTran_AfterSelect);
|
||||
@@ -422,6 +462,7 @@ namespace Volian.Controls.Library
|
||||
//
|
||||
//
|
||||
this.lblxTranRangeTip.BackgroundStyle.Class = "";
|
||||
this.lblxTranRangeTip.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
||||
this.lblxTranRangeTip.Dock = System.Windows.Forms.DockStyle.Right;
|
||||
this.lblxTranRangeTip.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.lblxTranRangeTip.Location = new System.Drawing.Point(355, 0);
|
||||
@@ -482,6 +523,7 @@ namespace Volian.Controls.Library
|
||||
this.groupPanelBtns.ResumeLayout(false);
|
||||
this.groupPanelBtns.PerformLayout();
|
||||
this.groupPanelTranFmt.ResumeLayout(false);
|
||||
this.groupPanelTranFmt.PerformLayout();
|
||||
this.groupPanelTransitionSets.ResumeLayout(false);
|
||||
this.groupPanelTransitionProcs.ResumeLayout(false);
|
||||
this.groupPanelTransitionSect.ResumeLayout(false);
|
||||
@@ -511,5 +553,7 @@ namespace Volian.Controls.Library
|
||||
private DevComponents.DotNetBar.LabelX lblxTranRangeTip;
|
||||
private vlnTreeView3 tvTran;
|
||||
private DevComponents.DotNetBar.SuperTooltip superToolTipDispTran;
|
||||
private System.Windows.Forms.RadioButton rbEntireSec;
|
||||
private System.Windows.Forms.RadioButton rbEntireProc;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user