Compare commits
56 Commits
061bcfdc0f
...
548b845f62
Author | SHA1 | Date | |
---|---|---|---|
548b845f62 | |||
4f733656a0 | |||
f4ef244a10 | |||
839000d48c | |||
bcb8f419ee | |||
059c399240 | |||
13b3cd6bc4 | |||
3cd4f4c5d9 | |||
02b20df652 | |||
416bdf16e0 | |||
75a4f66714 | |||
a5b9c26a97 | |||
0aa476d9dd | |||
0f4eec1df6 | |||
4bc73f847c | |||
e1271c16d9 | |||
c7d2140e16 | |||
ac6ee6ff83 | |||
1507cf31ce | |||
aad04647ac | |||
934d3977d8 | |||
03b0e52bef | |||
1da2b8e87c | |||
e3d16142ac | |||
b972e40a28 | |||
c508255ab3 | |||
e9ec884eb9 | |||
592d28e898 | |||
b826fa6a20 | |||
74c2a303da | |||
dcf50073e7 | |||
375871012c | |||
b7b67cce69 | |||
6c22bff1fd | |||
0b12805d4a | |||
4bac1a4628 | |||
2cf164c445 | |||
11904e177b | |||
527e6b5053 | |||
053ebca267 | |||
5e7fae9d47 | |||
0e4ce99612 | |||
3c75637752 | |||
fb890ded1f | |||
4399f31a83 | |||
ca4b21e593 | |||
23a4edb610 | |||
accc1c622c | |||
e50ea6a5db | |||
04ce6f55db | |||
f0493e60d8 | |||
13edc9c9ff | |||
fd0ea4404b | |||
df9d0f908a | |||
779394ffd6 | |||
a230ecef9b |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -377,6 +377,7 @@ namespace ROEditor
|
|||||||
this.btnOK.TabIndex = 3;
|
this.btnOK.TabIndex = 3;
|
||||||
this.btnOK.Text = "OK";
|
this.btnOK.Text = "OK";
|
||||||
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
|
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
|
||||||
|
this.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK;
|
||||||
//
|
//
|
||||||
// btnCancel
|
// btnCancel
|
||||||
//
|
//
|
||||||
@ -553,6 +554,7 @@ namespace ROEditor
|
|||||||
// update the local/internal copy of the schema.
|
// update the local/internal copy of the schema.
|
||||||
if (success != true)
|
if (success != true)
|
||||||
{
|
{
|
||||||
|
this.DialogResult = DialogResult.Cancel;
|
||||||
return; // DO YET process an error.
|
return; // DO YET process an error.
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
@ -266,6 +266,7 @@ namespace ROEditor
|
|||||||
|
|
||||||
if (success != true)
|
if (success != true)
|
||||||
{
|
{
|
||||||
|
this.DialogResult = DialogResult.Cancel;
|
||||||
return; // DO YET process an error.
|
return; // DO YET process an error.
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
@ -367,6 +368,7 @@ namespace ROEditor
|
|||||||
//
|
//
|
||||||
// btnOK
|
// btnOK
|
||||||
//
|
//
|
||||||
|
this.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK;
|
||||||
this.btnOK.Location = new System.Drawing.Point(216, 72);
|
this.btnOK.Location = new System.Drawing.Point(216, 72);
|
||||||
this.btnOK.Name = "btnOK";
|
this.btnOK.Name = "btnOK";
|
||||||
this.btnOK.Size = new System.Drawing.Size(88, 24);
|
this.btnOK.Size = new System.Drawing.Size(88, 24);
|
||||||
|
@ -248,6 +248,7 @@ namespace ROEditor
|
|||||||
|
|
||||||
if (success != true)
|
if (success != true)
|
||||||
{
|
{
|
||||||
|
this.DialogResult = DialogResult.Cancel;
|
||||||
return; // DO YET process an error.
|
return; // DO YET process an error.
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
|
@ -433,6 +433,7 @@ namespace ROEditor
|
|||||||
//
|
//
|
||||||
// btnOK
|
// btnOK
|
||||||
//
|
//
|
||||||
|
this.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK;
|
||||||
this.btnOK.Location = new System.Drawing.Point(24, 248);
|
this.btnOK.Location = new System.Drawing.Point(24, 248);
|
||||||
this.btnOK.Name = "btnOK";
|
this.btnOK.Name = "btnOK";
|
||||||
this.btnOK.Size = new System.Drawing.Size(144, 24);
|
this.btnOK.Size = new System.Drawing.Size(144, 24);
|
||||||
|
@ -1251,6 +1251,9 @@ namespace ROEditor
|
|||||||
{
|
{
|
||||||
tbMenuVal.Text = tbMenuVal.Text.Replace($"<{origname}>", $"<{newname}>");
|
tbMenuVal.Text = tbMenuVal.Text.Replace($"<{origname}>", $"<{newname}>");
|
||||||
tbRetVal.Text = tbRetVal.Text.Replace($"<{origname}>", $"<{newname}>");
|
tbRetVal.Text = tbRetVal.Text.Replace($"<{origname}>", $"<{newname}>");
|
||||||
|
//CSM-C2024-035 This is needed for items like Setpoint Value that may have commas with field lengths in them
|
||||||
|
tbMenuVal.Text = tbMenuVal.Text.Replace($"<{origname},", $"<{newname},");
|
||||||
|
tbRetVal.Text = tbRetVal.Text.Replace($"<{origname},", $"<{newname},");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
@ -504,7 +504,6 @@ namespace ROEditor
|
|||||||
// if a specific RO was passed in. Load the xml tree from it to the root & then
|
// if a specific RO was passed in. Load the xml tree from it to the root & then
|
||||||
// edit it through the ctlXmledit.
|
// edit it through the ctlXmledit.
|
||||||
// from the input tbl string, get a table name.
|
// from the input tbl string, get a table name.
|
||||||
|
|
||||||
ArrayList levelRecids = new ArrayList();
|
ArrayList levelRecids = new ArrayList();
|
||||||
int itbl = System.Convert.ToInt32(specificro.Substring(0,4),16);
|
int itbl = System.Convert.ToInt32(specificro.Substring(0,4),16);
|
||||||
string stbl = System.Convert.ToString(itbl,10);
|
string stbl = System.Convert.ToString(itbl,10);
|
||||||
@ -594,7 +593,6 @@ namespace ROEditor
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
roTreeView.SelectedNode = trnd;
|
roTreeView.SelectedNode = trnd;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
protected void roTreeView_AfterSelect (object sender,
|
protected void roTreeView_AfterSelect (object sender,
|
||||||
@ -676,12 +674,14 @@ namespace ROEditor
|
|||||||
//if Ctrl/Shift Key is held down
|
//if Ctrl/Shift Key is held down
|
||||||
if (ROsSelectedforMultiMove == null)
|
if (ROsSelectedforMultiMove == null)
|
||||||
ROsSelectedforMultiMove = new List<TreeNode>();
|
ROsSelectedforMultiMove = new List<TreeNode>();
|
||||||
|
// B2021-094 added check that Control and Alt keys were not pressed with shift key
|
||||||
if ((Control.ModifierKeys & Keys.Shift) != 0)
|
// if user does the <Ctrl><Shift><G> keystroke (Goto selected RO from step editor)
|
||||||
|
// but only lifts up on the G key, it was dropping down into this code below
|
||||||
|
// and getting a null reference error upon initial entry in to the RO Editor
|
||||||
|
if ((Control.ModifierKeys & Keys.Shift) != 0 && (Control.ModifierKeys & Keys.Control) == 0 && (Control.ModifierKeys & Keys.Alt) == 0)
|
||||||
{
|
{
|
||||||
//if shift is held down, clear existing nodes then add the range of nodes
|
//if shift is held down, clear existing nodes then add the range of nodes
|
||||||
roTreeView_ClearAllMultiSelect();
|
roTreeView_ClearAllMultiSelect();
|
||||||
|
|
||||||
if (PreviousNode.Index < CurrentNode.Index)
|
if (PreviousNode.Index < CurrentNode.Index)
|
||||||
{
|
{
|
||||||
//Traverse Down
|
//Traverse Down
|
||||||
@ -1673,9 +1673,9 @@ namespace ROEditor
|
|||||||
{
|
{
|
||||||
ROCutWasSelected = true;
|
ROCutWasSelected = true;
|
||||||
|
|
||||||
string msgstr = "It is recommended that after moving ROs, you create a FST an use it to update RO Values in PROMS to ensure RO Links properly move to the new location as well.\n\n Are you sure you wish to move the RO(s)?";
|
string msgstr = "It is recommended that after moving ROs, you create a FST and use it to update RO Values in PROMS to ensure RO Links properly move to the new location as well.\n\n Are you sure you wish to move the RO(s)?";
|
||||||
|
|
||||||
DialogResult AnswerYN = MessageBox.Show(msgstr, "RO Editor", MessageBoxButtons.YesNo);
|
DialogResult AnswerYN = MessageBox.Show(msgstr, "Moving ROs", MessageBoxButtons.YesNo);
|
||||||
if (AnswerYN != DialogResult.Yes)
|
if (AnswerYN != DialogResult.Yes)
|
||||||
ROCutWasSelected = false;
|
ROCutWasSelected = false;
|
||||||
|
|
||||||
|
@ -2667,8 +2667,9 @@ namespace RODBInterface
|
|||||||
bool isused = RODB_CheckForStandardName(oldname);
|
bool isused = RODB_CheckForStandardName(oldname);
|
||||||
if (isused == true)
|
if (isused == true)
|
||||||
{
|
{
|
||||||
MessageBox.Show("The field name is used to define new Setpoints or Graphics Database.\n The update will be for this local (database) group only.", "Field name modification.");
|
DialogResult result = MessageBox.Show($"The field name is used to define new Setpoints or Graphics Database.\n\n The update will be for this local (database) group only.\n\n Select OK to update local definition for all items in that table ({GetTopParentName(myelem)}).", "Field name modification.", MessageBoxButtons.OKCancel, MessageBoxIcon.Question);
|
||||||
changegeneric = false;
|
changegeneric = false;
|
||||||
|
if(result == DialogResult.Cancel) return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -2680,8 +2681,8 @@ namespace RODBInterface
|
|||||||
// Generic definition, i.e. all Groups, and No updates only Local definition, i.e. just this Group Added a
|
// Generic definition, i.e. all Groups, and No updates only Local definition, i.e. just this Group Added a
|
||||||
// Cancel button to Cancel from this dialog and return to previous dialog. Added more information to the
|
// Cancel button to Cancel from this dialog and return to previous dialog. Added more information to the
|
||||||
// dialog to inform user of this
|
// dialog to inform user of this
|
||||||
string dmsg = "Update Generic definition?\r\n\r\n Yes - updates Generic definitions, \r\n No - updates Local definitions, \r\n Cancel - returns to previous dialog." +
|
string dmsg = $"Update Generic definition?\r\n\r\n Yes - updates Generic definitions, \r\n No - updates Local definitions, \r\n Cancel - returns to previous dialog." +
|
||||||
"\r\n\r\n 'Generic' updates definition in ALL groups that use the name\r\n 'Local' updates definition only in the selected group.";
|
$"\r\n\r\n 'Generic' updates definition in ALL groups that use the name\r\n 'Local' updates definition only in the selected group, and will change the definition for all items in that table ({GetTopParentName(myelem)}).";
|
||||||
System.Windows.Forms.DialogResult result = MessageBox.Show(dmsg, "Referenced Object Definition", MessageBoxButtons.YesNoCancel, MessageBoxIcon.Question);
|
System.Windows.Forms.DialogResult result = MessageBox.Show(dmsg, "Referenced Object Definition", MessageBoxButtons.YesNoCancel, MessageBoxIcon.Question);
|
||||||
if (result == DialogResult.Cancel) return false;
|
if (result == DialogResult.Cancel) return false;
|
||||||
if (result == DialogResult.No) changegeneric = false;
|
if (result == DialogResult.No) changegeneric = false;
|
||||||
@ -2786,6 +2787,19 @@ namespace RODBInterface
|
|||||||
return success;
|
return success;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//CSM-C2024-030
|
||||||
|
//Explain that Local is local to that table (and include Table name in wording displayed to user)
|
||||||
|
public string GetTopParentName(VlnXmlElement elem)
|
||||||
|
{
|
||||||
|
VlnXmlElement nodetocheck = elem;
|
||||||
|
while (nodetocheck.GetAttribute("ParentID") != "00000000" && nodetocheck.ParentNode != null)
|
||||||
|
{
|
||||||
|
nodetocheck = (VlnXmlElement) nodetocheck.ParentNode;
|
||||||
|
}
|
||||||
|
|
||||||
|
return nodetocheck.FirstChild.InnerText;
|
||||||
|
}
|
||||||
|
|
||||||
public override XmlSchema RODB_GetGroupSchema(VlnXmlElement elem)
|
public override XmlSchema RODB_GetGroupSchema(VlnXmlElement elem)
|
||||||
{
|
{
|
||||||
XmlSchema myschema;
|
XmlSchema myschema;
|
||||||
|
@ -24039,6 +24039,66 @@ GO
|
|||||||
==========================================================================================================
|
==========================================================================================================
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
---The following RememberOpenTabs/AlwaysOpenTabs columns were added for Remeber Open Tabs.
|
||||||
|
--- RememberOpenTabs = Do not prompt User when PROMS opens
|
||||||
|
--- AutoOpenTabs = OpenTabs when PROMS opens - Default to On
|
||||||
|
IF NOT EXISTS(SELECT *
|
||||||
|
FROM INFORMATION_SCHEMA.COLUMNS
|
||||||
|
WHERE TABLE_NAME = 'Users'
|
||||||
|
AND COLUMN_NAME = 'RememberOpenTabs')
|
||||||
|
ALTER TABLE Users ADD RememberOpenTabs bit NOT NULL DEFAULT(0);
|
||||||
|
go
|
||||||
|
-- Display the status
|
||||||
|
IF (@@Error = 0) PRINT 'Altered table [Users] Succeeded for RememberOpenTabs'
|
||||||
|
ELSE PRINT 'Altered table [Users] Error on Alter for RememberOpenTabs'
|
||||||
|
go
|
||||||
|
|
||||||
|
IF NOT EXISTS(SELECT *
|
||||||
|
FROM INFORMATION_SCHEMA.COLUMNS
|
||||||
|
WHERE TABLE_NAME = 'Users'
|
||||||
|
AND COLUMN_NAME = 'AutoOpenTabs')
|
||||||
|
ALTER TABLE Users ADD AutoOpenTabs bit NOT NULL DEFAULT(1);
|
||||||
|
go
|
||||||
|
-- Display the status
|
||||||
|
IF (@@Error = 0) PRINT 'Altered table [Users] Succeeded for AutoOpenTabs'
|
||||||
|
ELSE PRINT 'Altered table [Users] Error on Alter for AutoOpenTabs'
|
||||||
|
go
|
||||||
|
|
||||||
|
/****** Object: StoredProcedure [dbo].[vesp_UpdateUserSettings] Script Date: 10/24/2024 11:29:44 AM ******/
|
||||||
|
IF EXISTS (SELECT * FROM dbo.sysobjects WHERE id = OBJECT_ID(N'[vesp_UpdateUserSettings]') AND OBJECTPROPERTY(id,N'IsProcedure') = 1)
|
||||||
|
DROP PROCEDURE [vesp_UpdateUserSettings];
|
||||||
|
GO
|
||||||
|
|
||||||
|
SET ANSI_NULLS ON
|
||||||
|
GO
|
||||||
|
SET QUOTED_IDENTIFIER ON
|
||||||
|
GO
|
||||||
|
-- =============================================
|
||||||
|
-- Author: Matthew Schill
|
||||||
|
-- Create date: 10/24/2024
|
||||||
|
-- Description: Update User Settings
|
||||||
|
-- =============================================
|
||||||
|
CREATE PROCEDURE [dbo].[vesp_UpdateUserSettings]
|
||||||
|
|
||||||
|
(
|
||||||
|
@UID varchar(100),
|
||||||
|
@Remember bit = null,
|
||||||
|
@AutoOpen bit = null
|
||||||
|
)
|
||||||
|
WITH EXECUTE AS OWNER
|
||||||
|
AS
|
||||||
|
UPDATE Users SET
|
||||||
|
RememberOpenTabs = ISNULL(@Remember,RememberOpenTabs),
|
||||||
|
AutoOpenTabs = ISNULL(@AutoOpen,AutoOpenTabs)
|
||||||
|
WHERE UserID =@UID
|
||||||
|
|
||||||
|
RETURN
|
||||||
|
GO
|
||||||
|
|
||||||
|
IF (@@Error = 0) PRINT 'Running vesp_UpdateUserSettings Succeeded'
|
||||||
|
ELSE PRINT 'Running vesp_UpdateUserSettings Failed to Execute'
|
||||||
|
GO
|
||||||
|
|
||||||
/*
|
/*
|
||||||
---------------------------------------------------------------------------
|
---------------------------------------------------------------------------
|
||||||
| ADD New Code Before this Block |
|
| ADD New Code Before this Block |
|
||||||
@ -24072,7 +24132,7 @@ BEGIN TRY -- Try Block
|
|||||||
DECLARE @RevDate varchar(255)
|
DECLARE @RevDate varchar(255)
|
||||||
DECLARE @RevDescription varchar(255)
|
DECLARE @RevDescription varchar(255)
|
||||||
|
|
||||||
set @RevDate = '10/03/2024 11:24'
|
set @RevDate = '10/28/2024 11:24'
|
||||||
set @RevDescription = 'Add the ability for PROMS to remember the procedure tabs that were open when you closed PROMS'
|
set @RevDescription = 'Add the ability for PROMS to remember the procedure tabs that were open when you closed PROMS'
|
||||||
|
|
||||||
Select cast(@RevDate as datetime) RevDate, @RevDescription RevDescription
|
Select cast(@RevDate as datetime) RevDate, @RevDescription RevDescription
|
||||||
|
@ -163,6 +163,12 @@
|
|||||||
<Compile Include="dlgCheckedOutProcedure.designer.cs">
|
<Compile Include="dlgCheckedOutProcedure.designer.cs">
|
||||||
<DependentUpon>dlgCheckedOutProcedure.cs</DependentUpon>
|
<DependentUpon>dlgCheckedOutProcedure.cs</DependentUpon>
|
||||||
</Compile>
|
</Compile>
|
||||||
|
<Compile Include="dlgCheckOpenTabs.cs">
|
||||||
|
<SubType>Form</SubType>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="dlgCheckOpenTabs.Designer.cs">
|
||||||
|
<DependentUpon>dlgCheckOpenTabs.cs</DependentUpon>
|
||||||
|
</Compile>
|
||||||
<Compile Include="DlgCloseTabsOrExit.cs">
|
<Compile Include="DlgCloseTabsOrExit.cs">
|
||||||
<SubType>Form</SubType>
|
<SubType>Form</SubType>
|
||||||
</Compile>
|
</Compile>
|
||||||
@ -324,6 +330,9 @@
|
|||||||
<SubType>Designer</SubType>
|
<SubType>Designer</SubType>
|
||||||
<DependentUpon>AboutVEPROMS.cs</DependentUpon>
|
<DependentUpon>AboutVEPROMS.cs</DependentUpon>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
|
<EmbeddedResource Include="dlgCheckOpenTabs.resx">
|
||||||
|
<DependentUpon>dlgCheckOpenTabs.cs</DependentUpon>
|
||||||
|
</EmbeddedResource>
|
||||||
<EmbeddedResource Include="DlgCloseTabsOrExit.resx">
|
<EmbeddedResource Include="DlgCloseTabsOrExit.resx">
|
||||||
<DependentUpon>DlgCloseTabsOrExit.cs</DependentUpon>
|
<DependentUpon>DlgCloseTabsOrExit.cs</DependentUpon>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
@ -626,4 +635,4 @@
|
|||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<PreBuildEvent>cmd /c "$(ProjectDir)FixRev.bat"</PreBuildEvent>
|
<PreBuildEvent>cmd /c "$(ProjectDir)FixRev.bat"</PreBuildEvent>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
</Project>
|
</Project>
|
116
PROMS/VEPROMS User Interface/dlgCheckOpenTabs.Designer.cs
generated
Normal file
116
PROMS/VEPROMS User Interface/dlgCheckOpenTabs.Designer.cs
generated
Normal file
@ -0,0 +1,116 @@
|
|||||||
|
|
||||||
|
namespace VEPROMS
|
||||||
|
{
|
||||||
|
partial class dlgCheckOpenTabs
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Required designer variable.
|
||||||
|
/// </summary>
|
||||||
|
private System.ComponentModel.IContainer components = null;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Clean up any resources being used.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
||||||
|
protected override void Dispose(bool disposing)
|
||||||
|
{
|
||||||
|
if (disposing && (components != null))
|
||||||
|
{
|
||||||
|
components.Dispose();
|
||||||
|
}
|
||||||
|
base.Dispose(disposing);
|
||||||
|
}
|
||||||
|
|
||||||
|
#region Windows Form Designer generated code
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Required method for Designer support - do not modify
|
||||||
|
/// the contents of this method with the code editor.
|
||||||
|
/// </summary>
|
||||||
|
private void InitializeComponent()
|
||||||
|
{
|
||||||
|
this.labelX1 = new DevComponents.DotNetBar.LabelX();
|
||||||
|
this.cbRemember = new DevComponents.DotNetBar.Controls.CheckBoxX();
|
||||||
|
this.btnOpenTabs = new DevComponents.DotNetBar.ButtonX();
|
||||||
|
this.btnNoTabs = new DevComponents.DotNetBar.ButtonX();
|
||||||
|
this.SuspendLayout();
|
||||||
|
//
|
||||||
|
// labelX1
|
||||||
|
//
|
||||||
|
//
|
||||||
|
//
|
||||||
|
//
|
||||||
|
this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
||||||
|
this.labelX1.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||||
|
this.labelX1.Location = new System.Drawing.Point(23, 2);
|
||||||
|
this.labelX1.Name = "labelX1";
|
||||||
|
this.labelX1.Size = new System.Drawing.Size(363, 78);
|
||||||
|
this.labelX1.TabIndex = 0;
|
||||||
|
this.labelX1.Text = "Would you like for PROMS to reopen the tabs that you had open during your last se" +
|
||||||
|
"ssion?";
|
||||||
|
this.labelX1.WordWrap = true;
|
||||||
|
//
|
||||||
|
// cbRemember
|
||||||
|
//
|
||||||
|
//
|
||||||
|
//
|
||||||
|
//
|
||||||
|
this.cbRemember.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
||||||
|
this.cbRemember.Location = new System.Drawing.Point(23, 75);
|
||||||
|
this.cbRemember.Name = "cbRemember";
|
||||||
|
this.cbRemember.Size = new System.Drawing.Size(376, 47);
|
||||||
|
this.cbRemember.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
|
||||||
|
this.cbRemember.TabIndex = 1;
|
||||||
|
this.cbRemember.Text = "Check this box to not be prompted in the future when opening PROMS. \nNote that th" +
|
||||||
|
"ese settings can be adjusted at any time from the \nOPTIONS menu for PROMS.";
|
||||||
|
//
|
||||||
|
// btnOpenTabs
|
||||||
|
//
|
||||||
|
this.btnOpenTabs.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
|
||||||
|
this.btnOpenTabs.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
|
||||||
|
this.btnOpenTabs.DialogResult = System.Windows.Forms.DialogResult.Yes;
|
||||||
|
this.btnOpenTabs.Location = new System.Drawing.Point(23, 139);
|
||||||
|
this.btnOpenTabs.Name = "btnOpenTabs";
|
||||||
|
this.btnOpenTabs.Size = new System.Drawing.Size(150, 42);
|
||||||
|
this.btnOpenTabs.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
|
||||||
|
this.btnOpenTabs.TabIndex = 2;
|
||||||
|
this.btnOpenTabs.Text = "Yes, Open Tabs from Last Session";
|
||||||
|
this.btnOpenTabs.Click += new System.EventHandler(this.btnTabs_Click);
|
||||||
|
//
|
||||||
|
// btnNoTabs
|
||||||
|
//
|
||||||
|
this.btnNoTabs.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
|
||||||
|
this.btnNoTabs.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
|
||||||
|
this.btnNoTabs.DialogResult = System.Windows.Forms.DialogResult.No;
|
||||||
|
this.btnNoTabs.Location = new System.Drawing.Point(216, 139);
|
||||||
|
this.btnNoTabs.Name = "btnNoTabs";
|
||||||
|
this.btnNoTabs.Size = new System.Drawing.Size(150, 42);
|
||||||
|
this.btnNoTabs.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
|
||||||
|
this.btnNoTabs.TabIndex = 3;
|
||||||
|
this.btnNoTabs.Text = "No, Do Not Open Tabs from Previous Session";
|
||||||
|
this.btnNoTabs.Click += new System.EventHandler(this.btnTabs_Click);
|
||||||
|
//
|
||||||
|
// dlgCheckOpenTabs
|
||||||
|
//
|
||||||
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||||||
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||||
|
this.ClientSize = new System.Drawing.Size(411, 193);
|
||||||
|
this.ControlBox = false;
|
||||||
|
this.Controls.Add(this.btnNoTabs);
|
||||||
|
this.Controls.Add(this.btnOpenTabs);
|
||||||
|
this.Controls.Add(this.cbRemember);
|
||||||
|
this.Controls.Add(this.labelX1);
|
||||||
|
this.Name = "dlgCheckOpenTabs";
|
||||||
|
this.Text = "Open Tabs from Previous Session";
|
||||||
|
this.ResumeLayout(false);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
private DevComponents.DotNetBar.LabelX labelX1;
|
||||||
|
private DevComponents.DotNetBar.Controls.CheckBoxX cbRemember;
|
||||||
|
private DevComponents.DotNetBar.ButtonX btnOpenTabs;
|
||||||
|
private DevComponents.DotNetBar.ButtonX btnNoTabs;
|
||||||
|
}
|
||||||
|
}
|
28
PROMS/VEPROMS User Interface/dlgCheckOpenTabs.cs
Normal file
28
PROMS/VEPROMS User Interface/dlgCheckOpenTabs.cs
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.ComponentModel;
|
||||||
|
using System.Data;
|
||||||
|
using System.Drawing;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
using System.Windows.Forms;
|
||||||
|
|
||||||
|
namespace VEPROMS
|
||||||
|
{
|
||||||
|
public partial class dlgCheckOpenTabs : Form
|
||||||
|
{
|
||||||
|
public dlgCheckOpenTabs()
|
||||||
|
{
|
||||||
|
InitializeComponent();
|
||||||
|
}
|
||||||
|
|
||||||
|
public bool Remember { get; set; } = false;
|
||||||
|
|
||||||
|
private void btnTabs_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
Remember = this.cbRemember.Checked;
|
||||||
|
this.Close();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
120
PROMS/VEPROMS User Interface/dlgCheckOpenTabs.resx
Normal file
120
PROMS/VEPROMS User Interface/dlgCheckOpenTabs.resx
Normal file
@ -0,0 +1,120 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<!--
|
||||||
|
Microsoft ResX Schema
|
||||||
|
|
||||||
|
Version 2.0
|
||||||
|
|
||||||
|
The primary goals of this format is to allow a simple XML format
|
||||||
|
that is mostly human readable. The generation and parsing of the
|
||||||
|
various data types are done through the TypeConverter classes
|
||||||
|
associated with the data types.
|
||||||
|
|
||||||
|
Example:
|
||||||
|
|
||||||
|
... ado.net/XML headers & schema ...
|
||||||
|
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||||
|
<resheader name="version">2.0</resheader>
|
||||||
|
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||||
|
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||||
|
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||||
|
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||||
|
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||||
|
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||||
|
</data>
|
||||||
|
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||||
|
<comment>This is a comment</comment>
|
||||||
|
</data>
|
||||||
|
|
||||||
|
There are any number of "resheader" rows that contain simple
|
||||||
|
name/value pairs.
|
||||||
|
|
||||||
|
Each data row contains a name, and value. The row also contains a
|
||||||
|
type or mimetype. Type corresponds to a .NET class that support
|
||||||
|
text/value conversion through the TypeConverter architecture.
|
||||||
|
Classes that don't support this are serialized and stored with the
|
||||||
|
mimetype set.
|
||||||
|
|
||||||
|
The mimetype is used for serialized objects, and tells the
|
||||||
|
ResXResourceReader how to depersist the object. This is currently not
|
||||||
|
extensible. For a given mimetype the value must be set accordingly:
|
||||||
|
|
||||||
|
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||||
|
that the ResXResourceWriter will generate, however the reader can
|
||||||
|
read any of the formats listed below.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.binary.base64
|
||||||
|
value : The object must be serialized with
|
||||||
|
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.soap.base64
|
||||||
|
value : The object must be serialized with
|
||||||
|
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||||
|
value : The object must be serialized into a byte array
|
||||||
|
: using a System.ComponentModel.TypeConverter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
-->
|
||||||
|
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||||
|
<xsd:attribute name="type" type="xsd:string" />
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||||
|
<xsd:attribute ref="xml:space" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string" />
|
||||||
|
<xsd:attribute name="name" type="xsd:string" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||||
|
<xsd:attribute ref="xml:space" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
</root>
|
@ -481,12 +481,14 @@ namespace VEPROMS
|
|||||||
// B2018-002 - Invalid Transitions - Define Transition Refresh Statistics
|
// B2018-002 - Invalid Transitions - Define Transition Refresh Statistics
|
||||||
private int numTransProcessed = 0;
|
private int numTransProcessed = 0;
|
||||||
private int numTransFixed = 0;
|
private int numTransFixed = 0;
|
||||||
|
private int numTransCantFix = 0;
|
||||||
private int numTransConverted = 0;
|
private int numTransConverted = 0;
|
||||||
// B2018-002 - Invalid Transitions - Initialize Transition Refresh Statistics
|
// B2018-002 - Invalid Transitions - Initialize Transition Refresh Statistics
|
||||||
private void ResetTransNumbers()
|
private void ResetTransNumbers()
|
||||||
{
|
{
|
||||||
numTransProcessed = 0;
|
numTransProcessed = 0;
|
||||||
numTransFixed = 0;
|
numTransFixed = 0;
|
||||||
|
numTransCantFix = 0;
|
||||||
numTransConverted = 0;
|
numTransConverted = 0;
|
||||||
}
|
}
|
||||||
private void RefreshTransitions()
|
private void RefreshTransitions()
|
||||||
@ -535,11 +537,12 @@ namespace VEPROMS
|
|||||||
numTransConverted += ProcedureInfo.TranConvertCount;
|
numTransConverted += ProcedureInfo.TranConvertCount;
|
||||||
numTransProcessed += ProcedureInfo.TranCheckCount;
|
numTransProcessed += ProcedureInfo.TranCheckCount;
|
||||||
numTransFixed += ProcedureInfo.TranFixCount;
|
numTransFixed += ProcedureInfo.TranFixCount;
|
||||||
|
numTransCantFix += ProcedureInfo.TranCantFixCount; //Bad Transition Link
|
||||||
pbProcess.PerformStep();
|
pbProcess.PerformStep();
|
||||||
Application.DoEvents();
|
Application.DoEvents();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (numTransFixed == 0 && numTransConverted == 0)
|
if (numTransFixed == 0 && numTransConverted == 0 && numTransCantFix == 0)
|
||||||
{
|
{
|
||||||
txtResults.AppendText("No Transitions Needed Updated.");
|
txtResults.AppendText("No Transitions Needed Updated.");
|
||||||
txtResults.AppendText(Environment.NewLine);
|
txtResults.AppendText(Environment.NewLine);
|
||||||
@ -551,16 +554,18 @@ namespace VEPROMS
|
|||||||
txtProcess.AppendText(string.Format("Transitions Checked: {0}", numTransProcessed));
|
txtProcess.AppendText(string.Format("Transitions Checked: {0}", numTransProcessed));
|
||||||
txtProcess.AppendText(Environment.NewLine);
|
txtProcess.AppendText(Environment.NewLine);
|
||||||
// B2018-002 - Invalid Transitions - Display Transition Refresh Statistics
|
// B2018-002 - Invalid Transitions - Display Transition Refresh Statistics
|
||||||
txtProcess.AppendText(string.Format("Transitions Correct As Is: {0}", numTransProcessed - (numTransConverted + numTransFixed)));
|
txtProcess.AppendText(string.Format("Transitions Correct As Is: {0}", numTransProcessed - (numTransConverted + numTransFixed + numTransCantFix)));
|
||||||
txtProcess.AppendText(Environment.NewLine);
|
txtProcess.AppendText(Environment.NewLine);
|
||||||
txtProcess.AppendText(string.Format("Transitions Modified: {0}", numTransFixed));
|
txtProcess.AppendText(string.Format("Transitions Modified: {0}", numTransFixed));
|
||||||
txtProcess.AppendText(Environment.NewLine);
|
txtProcess.AppendText(Environment.NewLine);
|
||||||
txtProcess.AppendText(string.Format("Transitions Converted to text: {0}", numTransConverted));
|
txtProcess.AppendText(string.Format("Transitions Converted to text: {0}", numTransConverted));
|
||||||
|
txtProcess.AppendText(Environment.NewLine);
|
||||||
|
txtProcess.AppendText(string.Format("Transitions Unable to be Automatically Fixed (Annotation: Bad Transition Link): {0}", numTransCantFix));
|
||||||
Application.DoEvents();
|
Application.DoEvents();
|
||||||
if (pil.Count > 0)
|
if (pil.Count > 0)
|
||||||
{
|
{
|
||||||
StringBuilder sb = new StringBuilder();
|
StringBuilder sb = new StringBuilder();
|
||||||
sb.AppendLine("The batch refresh process was not usccessful for all procedures selected.");
|
sb.AppendLine("The batch refresh process was not successful for all procedures selected.");
|
||||||
sb.AppendLine("The following procedures were not able to be refreshed...");
|
sb.AppendLine("The following procedures were not able to be refreshed...");
|
||||||
sb.AppendLine();
|
sb.AppendLine();
|
||||||
sb.AppendLine(sbProcs.ToString());
|
sb.AppendLine(sbProcs.ToString());
|
||||||
@ -579,11 +584,11 @@ namespace VEPROMS
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
this.Cursor = Cursors.Default;
|
this.Cursor = Cursors.Default;
|
||||||
// B2018-002 - Invalid Transitions - Display Transition Refresh Statisitic
|
// B2018-002 - Invalid Transitions - Display Transition Refresh Statistic
|
||||||
if (numTransFixed == 0 && numTransConverted == 0)
|
if (numTransFixed == 0 && numTransConverted == 0 && numTransCantFix == 0)
|
||||||
MessageBox.Show(string.Format("{0} Transitions Checked.\n\nNo Transitions Modified.", numTransProcessed), "Refresh Transitions Completed");
|
MessageBox.Show(string.Format("{0} Transitions Checked.\n\nNo Transitions Modified.", numTransProcessed), "Refresh Transitions Completed");
|
||||||
else
|
else
|
||||||
MessageBox.Show(string.Format("{0} Transitions Checked.\n\n {1} Correct as is.\n\n {2} Transitions modified.\n\n {3} Transitions converted to text.", numTransProcessed, numTransProcessed - (numTransFixed + numTransConverted), numTransFixed, numTransConverted), "Refresh Transitions Completed");
|
MessageBox.Show(string.Format("{0} Transitions Checked.\n\n {1} Correct as is.\n\n {2} Transitions modified.\n\n {3} Transitions converted to text.\n\n {4} Transitions unable to be automatically fixed (Annotation: Bad Transition Link).", numTransProcessed, numTransProcessed - (numTransFixed + numTransConverted + numTransCantFix), numTransFixed, numTransConverted, numTransCantFix), "Refresh Transitions Completed");
|
||||||
}
|
}
|
||||||
|
|
||||||
// C2017-030 - new Admin Tools user interface
|
// C2017-030 - new Admin Tools user interface
|
||||||
@ -1103,8 +1108,7 @@ namespace VEPROMS
|
|||||||
ProcedureInfo.RefreshTransitions(pq);//, transitionsToDisconnected, transitionsToNonEditable);
|
ProcedureInfo.RefreshTransitions(pq);//, transitionsToDisconnected, transitionsToNonEditable);
|
||||||
TimeSpan ts = DateTime.Now - start;
|
TimeSpan ts = DateTime.Now - start;
|
||||||
// B2018-002 - Invalid Transitions - Display Transition Refresh Statistics
|
// B2018-002 - Invalid Transitions - Display Transition Refresh Statistics
|
||||||
txtProcess.AppendText(string.Format("Procedure: {1}{0}Checked {2} Transitions{0}Fixed {3} Transitions{0}Converted to Text {4} Transitions{0}Elapsed Seconds:{5}{0}{0}", Environment.NewLine, pq.DisplayNumber, ProcedureInfo.TranCheckCount, ProcedureInfo.TranFixCount, ProcedureInfo.TranConvertCount, ts.TotalSeconds));
|
txtProcess.AppendText(string.Format("Procedure: {1}{0}Checked {2} Transitions{0}Fixed {3} Transitions{0}Converted to Text {4} Transitions{0}Cant Fix (Annotation: Bad Transition Link) {5} Transitions{0}Elapsed Seconds:{6}{0}{0}", Environment.NewLine, pq.DisplayNumber, ProcedureInfo.TranCheckCount, ProcedureInfo.TranFixCount, ProcedureInfo.TranConvertCount, ProcedureInfo.TranCantFixCount, ts.TotalSeconds));
|
||||||
//Console.WriteLine("\"{0}\"\t{1}\t{2}\t{3}\t{4}\t{5}\t{6}\t{7}", pq.DisplayNumber, ProcedureInfo.TranCheckCount, ProcedureInfo.TranFixCount, ProcedureInfo.TranConvertCount, ts.TotalSeconds, numTransProcessed, numTransFixed, numTransConverted);
|
|
||||||
if (myFixes.Length > 0)
|
if (myFixes.Length > 0)
|
||||||
{
|
{
|
||||||
txtResults.AppendText(myFixes.ToString());
|
txtResults.AppendText(myFixes.ToString());
|
||||||
|
2293
PROMS/VEPROMS User Interface/frmSysOptions.Designer.cs
generated
2293
PROMS/VEPROMS User Interface/frmSysOptions.Designer.cs
generated
File diff suppressed because it is too large
Load Diff
@ -11,6 +11,7 @@ using DevComponents.DotNetBar;
|
|||||||
using VEPROMS.Properties;
|
using VEPROMS.Properties;
|
||||||
using Volian.Base.Library;
|
using Volian.Base.Library;
|
||||||
using DescriptiveEnum;
|
using DescriptiveEnum;
|
||||||
|
using VEPROMS.CSLA.Library;
|
||||||
|
|
||||||
namespace VEPROMS
|
namespace VEPROMS
|
||||||
{
|
{
|
||||||
@ -24,6 +25,9 @@ namespace VEPROMS
|
|||||||
get { return _CanChangeSeparateWindowsSetting; }
|
get { return _CanChangeSeparateWindowsSetting; }
|
||||||
set { _CanChangeSeparateWindowsSetting = value; }
|
set { _CanChangeSeparateWindowsSetting = value; }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private UserSettings _usersettings;
|
||||||
|
|
||||||
public frmSysOptions()
|
public frmSysOptions()
|
||||||
{
|
{
|
||||||
_initializing = true;
|
_initializing = true;
|
||||||
@ -89,6 +93,13 @@ namespace VEPROMS
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//CSM - C2024-031 - Getting User Settings
|
||||||
|
//and set checkboxes based on what they are set to
|
||||||
|
_usersettings = new UserSettings(VlnSettings.UserID);
|
||||||
|
cbOTRemember.Checked = _usersettings.UserSetting_OpenTabs_Remember;
|
||||||
|
cbOTAutoOpen.Enabled = cbOTAutoOpen.Visible = cbOTRemember.Checked;
|
||||||
|
cbOTAutoOpen.Checked = _usersettings.UserSetting_OpenTabs_AutoOpen || !cbOTRemember.Checked;
|
||||||
|
|
||||||
}
|
}
|
||||||
private void cbEnhancedDocumentSync_CheckedChanged(object sender, System.EventArgs e)
|
private void cbEnhancedDocumentSync_CheckedChanged(object sender, System.EventArgs e)
|
||||||
{
|
{
|
||||||
@ -151,6 +162,15 @@ namespace VEPROMS
|
|||||||
Settings.Default.PropPageStyle = 3;
|
Settings.Default.PropPageStyle = 3;
|
||||||
|
|
||||||
Settings.Default.Save();
|
Settings.Default.Save();
|
||||||
|
//CSM - C2024-031 - Save User Settings
|
||||||
|
//based on what checkboxes are set to
|
||||||
|
bool? OTAuto = null;
|
||||||
|
if (cbOTRemember.Checked)
|
||||||
|
{
|
||||||
|
OTAuto = cbOTAutoOpen.Checked;
|
||||||
|
}
|
||||||
|
_usersettings.SetUserSettings(cbOTRemember.Checked, OTAuto);
|
||||||
|
|
||||||
this.DialogResult = DialogResult.OK;
|
this.DialogResult = DialogResult.OK;
|
||||||
this.Close();
|
this.Close();
|
||||||
}
|
}
|
||||||
@ -324,5 +344,10 @@ namespace VEPROMS
|
|||||||
Settings.Default.UCFImportOpt = 4;
|
Settings.Default.UCFImportOpt = 4;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
private void cbOTRemember_CheckedChanged(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
cbOTAutoOpen.Enabled = cbOTAutoOpen.Visible = cbOTRemember.Checked;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
@ -112,21 +112,20 @@
|
|||||||
<value>2.0</value>
|
<value>2.0</value>
|
||||||
</resheader>
|
</resheader>
|
||||||
<resheader name="reader">
|
<resheader name="reader">
|
||||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
</resheader>
|
</resheader>
|
||||||
<resheader name="writer">
|
<resheader name="writer">
|
||||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
</resheader>
|
</resheader>
|
||||||
<metadata name="superTooltip1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
<metadata name="superTooltip1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
<value>17, 17</value>
|
<value>17, 17</value>
|
||||||
</metadata>
|
</metadata>
|
||||||
<assembly alias="System.Drawing" name="System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
|
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
|
||||||
<data name="colorPickerButton1.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
<data name="colorPickerButton1.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
<value>
|
<value>
|
||||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
|
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6
|
||||||
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAScQAA
|
JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAACXBIWXMAABJxAAAScQHz3HqOAAAAKklE
|
||||||
EnEB89x6jgAAACpJREFUOE9j+P//P0UYQgApcjCKASCaFDxqwKgBIDwcDSAHww0gH/9nAACxLJWH1IMf
|
QVQ4T2P4//8/RRhCAClyMIoBIJoUPGrAqAEgPBwNIAfDDSAf/2cAALEslYfUgx+eAAAAAElFTkSuQmCC
|
||||||
ngAAAABJRU5ErkJggg==
|
|
||||||
</value>
|
</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="$this.Icon" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
<data name="$this.Icon" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
@ -2355,17 +2355,47 @@ namespace VEPROMS
|
|||||||
{
|
{
|
||||||
// Retrieve edit tab state from database.
|
// Retrieve edit tab state from database.
|
||||||
DataTable DisPlayTabState = VEPROMS.CSLA.Library.Item.GetDisplayTabs(VlnSettings.UserID);
|
DataTable DisPlayTabState = VEPROMS.CSLA.Library.Item.GetDisplayTabs(VlnSettings.UserID);
|
||||||
|
|
||||||
if (DisPlayTabState.Rows.Count > 0)
|
//CSM - C2024-031 - Getting User Settings
|
||||||
|
//and set checkboxes based on what they are set to
|
||||||
|
UserSettings usersettings = new UserSettings(VlnSettings.UserID);
|
||||||
|
|
||||||
|
if (DisPlayTabState.Rows.Count > 0 && (usersettings.UserSetting_OpenTabs_AutoOpen || !usersettings.UserSetting_OpenTabs_Remember))
|
||||||
{
|
{
|
||||||
foreach (DataRow TabState in DisPlayTabState.Rows)
|
//will open tabs by default / ask by default
|
||||||
|
DialogResult result = DialogResult.Yes;
|
||||||
|
if (!usersettings.UserSetting_OpenTabs_Remember)
|
||||||
{
|
{
|
||||||
int _ItemID = (int)TabState["ItemID"];
|
dlgCheckOpenTabs checkOpenTabs = new dlgCheckOpenTabs();
|
||||||
ItemInfo _Procedure = ItemInfo.Get(_ItemID);
|
result = checkOpenTabs.ShowDialog();
|
||||||
// Open procedure in the editor.
|
|
||||||
OpenItem(_Procedure);
|
//if checkbox was checked in form, then update User Settings in database
|
||||||
// SelectedStepTabPanel needs to be set so the print buttons on the ribbon will work.
|
if (checkOpenTabs.Remember)
|
||||||
SelectedStepTabPanel = tc.MyEditItem.MyStepPanel.MyStepTabPanel;
|
usersettings.SetUserSettings(true, result == DialogResult.Yes);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
if (result == DialogResult.Yes)
|
||||||
|
{
|
||||||
|
foreach (DataRow TabState in DisPlayTabState.Rows)
|
||||||
|
{
|
||||||
|
int _ItemID = (int)TabState["ItemID"];
|
||||||
|
ItemInfo _Procedure = ItemInfo.Get(_ItemID);
|
||||||
|
// Open procedure in the editor.
|
||||||
|
OpenItem(_Procedure);
|
||||||
|
// SelectedStepTabPanel needs to be set so the print buttons on the ribbon will work.
|
||||||
|
SelectedStepTabPanel = tc.MyEditItem.MyStepPanel.MyStepTabPanel;
|
||||||
|
|
||||||
|
//CSM B2024-090 - if last displaytab item,
|
||||||
|
//select the steptab panel for it
|
||||||
|
//and set the EditItem for Find/Replace
|
||||||
|
//otherwise will cause PROMS to crash if Find clicked before a Tab is given Focus
|
||||||
|
if ((DisPlayTabState.Rows.IndexOf(TabState) == DisPlayTabState.Rows.Count - 1))
|
||||||
|
{
|
||||||
|
SelectedStepTabPanel.Select();
|
||||||
|
dlgFindReplace.MyEditItem = tc.MyEditItem;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -474,6 +474,25 @@ namespace VEPROMS.CSLA.Library
|
|||||||
OnPropertyChanged("Step_FixedTblForSrch");
|
OnPropertyChanged("Step_FixedTblForSrch");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
//CSM F2024-080: For South Texas - Ability to toggle off Initial Line
|
||||||
|
public bool Step_DisableInitialLine
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
string s = _Xp["Step", "DisableInitialLine"];
|
||||||
|
|
||||||
|
if (s == string.Empty) return false;
|
||||||
|
if (s == "True") return true;
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
set
|
||||||
|
{
|
||||||
|
string s = _Xp["Step", "DisableInitialLine"];
|
||||||
|
if (value.ToString() == s) return;
|
||||||
|
_Xp["Step", "DisableInitialLine"] = value.ToString();
|
||||||
|
OnPropertyChanged("Step_DisableInitialLine");
|
||||||
|
}
|
||||||
|
}
|
||||||
#region RO image sizing
|
#region RO image sizing
|
||||||
// if the RO image (figure) is resized, save it in the step config, not in the ROImageConfig. If stored in ROImageConfig
|
// if the RO image (figure) is resized, save it in the step config, not in the ROImageConfig. If stored in ROImageConfig
|
||||||
// the size is set for ALL uses.
|
// the size is set for ALL uses.
|
||||||
|
@ -687,19 +687,35 @@ namespace VEPROMS.CSLA.Library
|
|||||||
myLength += mg.Groups[3].Length;
|
myLength += mg.Groups[3].Length;
|
||||||
}
|
}
|
||||||
string gg = MyGrid.Data.Substring(myIndex, myLength);
|
string gg = MyGrid.Data.Substring(myIndex, myLength);
|
||||||
|
//CSM B2024-003 Updating RO Values inside a text Grid, adding a karat
|
||||||
|
// and/or dash into the RO value changes to question marks in the UI,
|
||||||
if (newvalue.Contains(@"\u8209?"))
|
if (newvalue.Contains(@"\u8209?"))
|
||||||
{
|
{
|
||||||
Match m = Regex.Match(newvalue, @"(\\f[0-9]+)(\\u[0-9]{1,4}\?)(\\f[0-9]+ ?)");
|
Match m = Regex.Match(newvalue, @"(\\f[0-9]+)(\\u[0-9]{1,4}\?)(\\f[0-9]+ ?)");
|
||||||
if (m == null)
|
if (m == null)
|
||||||
newvalue = newvalue.Replace(@"\u8209?", "-");
|
newvalue = newvalue.Replace(@"\u8209?", "-");
|
||||||
|
else if (m.Groups[1].Value == "")
|
||||||
|
newvalue = newvalue.Replace(@"\u8209?", @"\f1\u8209?\f0 ");
|
||||||
else
|
else
|
||||||
newvalue = newvalue.Replace(@"\u8209?", m.Groups[1].Value + @"\u8209?" + m.Groups[3].Value);
|
newvalue = newvalue.Replace(@"\u8209?", m.Groups[1].Value + @"\u8209?" + m.Groups[3].Value);
|
||||||
}
|
}
|
||||||
|
if (newvalue.Contains(@"\u916?"))
|
||||||
|
{
|
||||||
|
Match m = Regex.Match(newvalue, @"(\\f[0-9]+)(\\u[0-9]{1,4}\?)(\\f[0-9]+ ?)");
|
||||||
|
if (m == null)
|
||||||
|
newvalue = newvalue.Replace(@"\u916?", "^");
|
||||||
|
else if (m.Groups[1].Value == "")
|
||||||
|
newvalue = newvalue.Replace(@"\u916?", @"\f1\u916?\f0 ");
|
||||||
|
else
|
||||||
|
newvalue = newvalue.Replace(@"\u916?", m.Groups[1].Value + @"\u916?" + m.Groups[3].Value);
|
||||||
|
}
|
||||||
if (newvalue.Contains(@"\u8593?"))
|
if (newvalue.Contains(@"\u8593?"))
|
||||||
{
|
{
|
||||||
Match m = Regex.Match(newvalue, @"(\\f[0-9]+)(\\u[0-9]{1,4}\?)(\\f[0-9]+ ?)");
|
Match m = Regex.Match(newvalue, @"(\\f[0-9]+)(\\u[0-9]{1,4}\?)(\\f[0-9]+ ?)");
|
||||||
if (m == null)
|
if (m == null)
|
||||||
newvalue = newvalue.Replace(@"\u8593?", "^");
|
newvalue = newvalue.Replace(@"\u8593?", "^");
|
||||||
|
else if (m.Groups[1].Value == "")
|
||||||
|
newvalue = newvalue.Replace(@"\u8593?", @"\f1\u8593?\f0 ");
|
||||||
else
|
else
|
||||||
newvalue = newvalue.Replace(@"\u8593?", m.Groups[1].Value + @"\u8593?" + m.Groups[3].Value);
|
newvalue = newvalue.Replace(@"\u8593?", m.Groups[1].Value + @"\u8593?" + m.Groups[3].Value);
|
||||||
}
|
}
|
||||||
@ -708,6 +724,8 @@ namespace VEPROMS.CSLA.Library
|
|||||||
Match m = Regex.Match(newvalue, @"(\\f[0-9]+)(\\u[0-9]{1,4}\?)(\\f[0-9]+ ?)");
|
Match m = Regex.Match(newvalue, @"(\\f[0-9]+)(\\u[0-9]{1,4}\?)(\\f[0-9]+ ?)");
|
||||||
if (m == null)
|
if (m == null)
|
||||||
newvalue = newvalue.Replace(@"\u9586?", @"\\");
|
newvalue = newvalue.Replace(@"\u9586?", @"\\");
|
||||||
|
else if (m.Groups[1].Value == "")
|
||||||
|
newvalue = newvalue.Replace(@"\u9586?", @"\f1\u9586?\f0 ");
|
||||||
else
|
else
|
||||||
newvalue = newvalue.Replace(@"\u9586?", m.Groups[1].Value + @"\u9586?" + m.Groups[3].Value);
|
newvalue = newvalue.Replace(@"\u9586?", m.Groups[1].Value + @"\u9586?" + m.Groups[3].Value);
|
||||||
}
|
}
|
||||||
|
@ -11,6 +11,7 @@ using System.Xml;
|
|||||||
using System.Drawing;
|
using System.Drawing;
|
||||||
using System.Text.RegularExpressions;
|
using System.Text.RegularExpressions;
|
||||||
using Volian.Base.Library;
|
using Volian.Base.Library;
|
||||||
|
using System.Linq;
|
||||||
|
|
||||||
namespace VEPROMS.CSLA.Library
|
namespace VEPROMS.CSLA.Library
|
||||||
{
|
{
|
||||||
@ -402,6 +403,99 @@ namespace VEPROMS.CSLA.Library
|
|||||||
return tmpForLink;
|
return tmpForLink;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//CSM B2021-043 Step numbering is out of order in RO usage report if RO values exist on steps 10 or higher.
|
||||||
|
// This will be used to simulate the non-high level part of a tab
|
||||||
|
// for case where sorting and all other fields match
|
||||||
|
// Note: This is cut down to improve the sort's performance
|
||||||
|
// but congruent to Volian.Print.Library.PDFReport-> BuildStepTab(ItemInfo item)
|
||||||
|
public string BuildStepTab()
|
||||||
|
{
|
||||||
|
StringBuilder sret = new StringBuilder();
|
||||||
|
ItemInfo pitem = this;
|
||||||
|
|
||||||
|
while (!pitem.IsSection && !pitem.IsHigh)
|
||||||
|
{
|
||||||
|
using (StepInfo stpinfo = StepInfo.Get(pitem.ItemID))
|
||||||
|
{
|
||||||
|
string thisTab = stpinfo.MyTab.CleanText;
|
||||||
|
|
||||||
|
string typeName = stpinfo.FormatStepData.StepEditData.TypeMenu.MenuItem;
|
||||||
|
|
||||||
|
if (!string.IsNullOrEmpty(thisTab))
|
||||||
|
{
|
||||||
|
thisTab = thisTab.Trim();
|
||||||
|
}
|
||||||
|
|
||||||
|
// if the tab is null or
|
||||||
|
// if the the tab is not a letter or number OR
|
||||||
|
// the tab is an AND or OR type and is the letter "o"
|
||||||
|
// then reset the tab an empty string so that the type name along with the count of that type
|
||||||
|
// (ex. "AND 2", "OR 3")
|
||||||
|
if (string.IsNullOrEmpty(thisTab) || (thisTab != string.Empty && (!(char.IsLetterOrDigit(thisTab[0])) || ((pitem.IsAnd || pitem.IsOr || pitem.IsCaution || pitem.IsNote) && thisTab.Contains("o")))))
|
||||||
|
{
|
||||||
|
thisTab = string.Empty;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (pitem.IsRNOPart)
|
||||||
|
{
|
||||||
|
if (string.IsNullOrEmpty(thisTab))
|
||||||
|
{
|
||||||
|
sret.Insert(0, "RNO.");
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
thisTab = thisTab.Trim();
|
||||||
|
|
||||||
|
if (!thisTab.EndsWith(".") && !thisTab.EndsWith(")"))
|
||||||
|
{
|
||||||
|
thisTab += ".";
|
||||||
|
}
|
||||||
|
|
||||||
|
sret.Insert(0, "RNO." + thisTab);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else if (pitem.IsCaution || pitem.IsNote)
|
||||||
|
{
|
||||||
|
// add the Caution or Note count to the tab (ex "Caution 1", "Note 2")
|
||||||
|
if (string.IsNullOrEmpty(thisTab))
|
||||||
|
{
|
||||||
|
sret.Append("{" + typeName + " " + pitem.Ordinal.ToString() + "}");
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
thisTab = thisTab.Trim(" ".ToCharArray());
|
||||||
|
sret.Append(thisTab + " " + pitem.Ordinal.ToString() + sret);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
if (!string.IsNullOrEmpty(thisTab))
|
||||||
|
{
|
||||||
|
thisTab = thisTab.Trim(" ".ToCharArray());
|
||||||
|
|
||||||
|
if (!thisTab.EndsWith(".") && !thisTab.EndsWith(")"))
|
||||||
|
{
|
||||||
|
thisTab += ".";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
thisTab = "{" + typeName + " " + pitem.Ordinal.ToString() + "}.";
|
||||||
|
}
|
||||||
|
|
||||||
|
sret.Insert(0, thisTab);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pitem = pitem.ActiveParent as ItemInfo;
|
||||||
|
|
||||||
|
if (pitem == null)
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
return sret.ToString().Trim(" .)".ToCharArray());
|
||||||
|
}
|
||||||
|
|
||||||
public void SetHeader(VE_Font myFont, string myText)
|
public void SetHeader(VE_Font myFont, string myText)
|
||||||
{
|
{
|
||||||
_MyHeader = new MetaTag(myFont);
|
_MyHeader = new MetaTag(myFont);
|
||||||
@ -619,12 +713,14 @@ namespace VEPROMS.CSLA.Library
|
|||||||
{
|
{
|
||||||
TranCheckCount = 0;
|
TranCheckCount = 0;
|
||||||
TranFixCount = 0;
|
TranFixCount = 0;
|
||||||
|
TranCantFixCount = 0;
|
||||||
TranConvertCount = 0;// B2018-002 - Invalid Transitions - Initialize Transition Conversion Count
|
TranConvertCount = 0;// B2018-002 - Invalid Transitions - Initialize Transition Conversion Count
|
||||||
}
|
}
|
||||||
|
|
||||||
public static int TranCheckCount = 0;
|
public static int TranCheckCount = 0;
|
||||||
public static int TranFixCount = 0;
|
public static int TranFixCount = 0;
|
||||||
public static int TranConvertCount = 0;// B2018-002 - Invalid Transitions - Declare Transition Conversion Count
|
public static int TranConvertCount = 0;// B2018-002 - Invalid Transitions - Declare Transition Conversion Count
|
||||||
|
public static int TranCantFixCount = 0;
|
||||||
internal static TransitionInfoList TransitionsToDisconnected;
|
internal static TransitionInfoList TransitionsToDisconnected;
|
||||||
internal static TransitionInfoList TransitionsToNonEditable;
|
internal static TransitionInfoList TransitionsToNonEditable;
|
||||||
|
|
||||||
@ -731,6 +827,15 @@ namespace VEPROMS.CSLA.Library
|
|||||||
content.Save();
|
content.Save();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
else if (newText.Contains("<CTID=-"))
|
||||||
|
{
|
||||||
|
//CSM C2024-028 - Bad Transition Link - Make an annotation
|
||||||
|
using (Item itm = Item.Get(itemInfo.ItemID))
|
||||||
|
{
|
||||||
|
TranCantFixCount++;
|
||||||
|
Annotation.MakeAnnotation(itm, AnnotationType.GetByNameOrCreate("Bad Transition Link"), "", $"Invalid Transition Link: ({ItemInfo.ConvertToDisplayText(newValue)})", null);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -2752,6 +2857,29 @@ namespace VEPROMS.CSLA.Library
|
|||||||
}
|
}
|
||||||
#endregion UnlinkEnhanced
|
#endregion UnlinkEnhanced
|
||||||
#region Search
|
#region Search
|
||||||
|
|
||||||
|
//CSM C2024-025 Removing the strange tall box characters that appear in the search results tree
|
||||||
|
//Create cleaned version of variable for use in DisplaySearch
|
||||||
|
//This is the Function that does the cleaning
|
||||||
|
public string CleanSearchString(string value)
|
||||||
|
{
|
||||||
|
// \u000C = PageBreak
|
||||||
|
// \u0009 = Tab
|
||||||
|
// \u160? = Hard Space
|
||||||
|
// \u0007 = Bell (Separates Parent Path and Child Path)
|
||||||
|
// \u0011 - Separates DisplayNumber & DisplayText of Step
|
||||||
|
|
||||||
|
if (value == null)
|
||||||
|
return null;
|
||||||
|
|
||||||
|
string tmp = value.Replace("\a", "\\").Replace("\u0007", "\\");
|
||||||
|
tmp = tmp.Replace("\u000C", " ").Replace("\u0009", " ").Replace(@"\u160?", " ").Replace("\u0011", " ");
|
||||||
|
|
||||||
|
if (tmp.StartsWith("\\"))
|
||||||
|
tmp = tmp.Substring(1);
|
||||||
|
return tmp;
|
||||||
|
}
|
||||||
|
|
||||||
internal string _SearchDVPath;
|
internal string _SearchDVPath;
|
||||||
public string SearchDVPath
|
public string SearchDVPath
|
||||||
{
|
{
|
||||||
@ -2767,7 +2895,11 @@ namespace VEPROMS.CSLA.Library
|
|||||||
return _SearchDVPath;
|
return _SearchDVPath;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
internal string _SearchPath;
|
//CSM C2024-025 Removing the strange tall box characters that appear in the search results tree
|
||||||
|
//Create cleaned version of variable for use in DisplaySearch
|
||||||
|
public string SearchDVPath_clean => CleanSearchString(SearchDVPath);
|
||||||
|
|
||||||
|
internal string _SearchPath;
|
||||||
public string SearchPath
|
public string SearchPath
|
||||||
{
|
{
|
||||||
get
|
get
|
||||||
@ -2790,6 +2922,10 @@ namespace VEPROMS.CSLA.Library
|
|||||||
return _SearchPath;
|
return _SearchPath;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
//CSM C2024-025 Removing the strange tall box characters that appear in the search results tree
|
||||||
|
//Create cleaned version of variable for use in DisplaySearch
|
||||||
|
public string SearchPath_clean => CleanSearchString(SearchPath);
|
||||||
|
|
||||||
public string ShortSearchPath
|
public string ShortSearchPath
|
||||||
{
|
{
|
||||||
get
|
get
|
||||||
@ -2800,6 +2936,9 @@ namespace VEPROMS.CSLA.Library
|
|||||||
return dtext;
|
return dtext;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
//CSM C2024-025 Removing the strange tall box characters that appear in the search results tree
|
||||||
|
//Create cleaned version of variable for use in DisplaySearch
|
||||||
|
public string ShortSearchPath_clean => CleanSearchString(ShortSearchPath);
|
||||||
|
|
||||||
// B2021-076: Proms search results are not presented in order when printed to PDF
|
// B2021-076: Proms search results are not presented in order when printed to PDF
|
||||||
internal string _SearchDefaultSort;
|
internal string _SearchDefaultSort;
|
||||||
@ -3100,6 +3239,24 @@ namespace VEPROMS.CSLA.Library
|
|||||||
//get { return ConvertToDisplayText(MyContent.Number); }
|
//get { return ConvertToDisplayText(MyContent.Number); }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//CSM B2021-043 Step numbering is out of order in RO usage report if RO values exist on steps 10 or higher.
|
||||||
|
//Get Numeric part of HLS Tab
|
||||||
|
//Used for Certain sorting situations
|
||||||
|
//If no numeric part then use 999 (will be at end of that level of the sort if there are other items with numbered HLS)
|
||||||
|
public int NumericSortNumber
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
string numericpart = null;
|
||||||
|
if (MyHLS != null)
|
||||||
|
numericpart = new string(MyHLS?.MyTab?.CleanTextNoSymbols.TakeWhile(Char.IsDigit).ToArray());
|
||||||
|
if (!string.IsNullOrEmpty(numericpart) && numericpart.All(char.IsNumber))
|
||||||
|
return int.Parse(numericpart);
|
||||||
|
else
|
||||||
|
return 999;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// for step designators (a redefined caution type used in Comanche Peak with the SameRowAsParentMultiLines format flag)
|
// for step designators (a redefined caution type used in Comanche Peak with the SameRowAsParentMultiLines format flag)
|
||||||
// we what to allow for a hard return to allow for multiple designator lines - jsj 5/21/2015
|
// we what to allow for a hard return to allow for multiple designator lines - jsj 5/21/2015
|
||||||
public static string ConvertToMulitLineStepDesignatorDisplayText(string txt)
|
public static string ConvertToMulitLineStepDesignatorDisplayText(string txt)
|
||||||
@ -4251,6 +4408,13 @@ namespace VEPROMS.CSLA.Library
|
|||||||
if (tbformat.Contains("{!.+?}"))
|
if (tbformat.Contains("{!.+?}"))
|
||||||
tstr = tbformat.Replace("{!.+?}", " "); // Comanche Peak Indented Paragraph
|
tstr = tbformat.Replace("{!.+?}", " "); // Comanche Peak Indented Paragraph
|
||||||
_MyTab.Text = tstr;
|
_MyTab.Text = tstr;
|
||||||
|
//CSM F2024 - 080: For South Texas - if format contains initial line and it is not disabled, show an initial line
|
||||||
|
if (!string.IsNullOrEmpty(FormatStepData?.TabData?.MacroEditTag) && FormatStepData.TabData.MacroList != null && FormatStepData.TabData.MacroList.Count > 0 && !(this.IsRNOPart && FormatStepData.TabData.MacroList[0].NotInRNO) && !IsInitialLineDisabled)
|
||||||
|
{
|
||||||
|
if (tstr.StartsWith(" "))
|
||||||
|
tstr = tstr.Substring(1);
|
||||||
|
tstr = FormatStepData.TabData.MacroEditTag + tstr;
|
||||||
|
}
|
||||||
_MyTab.CleanText = tstr;
|
_MyTab.CleanText = tstr;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -4341,25 +4505,73 @@ namespace VEPROMS.CSLA.Library
|
|||||||
incSub = (ord + 1).ToString();
|
incSub = (ord + 1).ToString();
|
||||||
if (MyParent.MyTab.CleanText.Trim().EndsWith(")"))
|
if (MyParent.MyTab.CleanText.Trim().EndsWith(")"))
|
||||||
{
|
{
|
||||||
_MyTab.CleanText = MyParent.MyTab.CleanText.Trim() + "." + incSub;
|
//CSM F2024 - 080: For South Texas - if format contains initial line and it is not disabled, show an initial line
|
||||||
|
string tstr = MyParent.MyTab.CleanText.Trim() + "." + incSub;
|
||||||
|
if (!string.IsNullOrEmpty(FormatStepData?.TabData?.MacroEditTag) && FormatStepData.TabData.MacroList != null && FormatStepData.TabData.MacroList.Count > 0 && !(this.IsRNOPart && FormatStepData.TabData.MacroList[0].NotInRNO) && !IsInitialLineDisabled && !tstr.StartsWith("_"))
|
||||||
|
{
|
||||||
|
if (tstr.StartsWith(" "))
|
||||||
|
tstr = tstr.Substring(1);
|
||||||
|
tstr = FormatStepData.TabData.MacroEditTag + tstr;
|
||||||
|
}
|
||||||
|
else if (IsInitialLineDisabled && tstr.StartsWith("_"))
|
||||||
|
tstr = tstr.Substring(1);
|
||||||
|
|
||||||
|
_MyTab.CleanText = tstr;
|
||||||
_MyTab.Text = _MyTab.CleanText;
|
_MyTab.Text = _MyTab.CleanText;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (MyParent.MyTab.CleanText.Contains(ActiveFormat.PlantFormat.FormatData.SectData.StepSectionData.IdentB))
|
if (MyParent.MyTab.CleanText.Contains(ActiveFormat.PlantFormat.FormatData.SectData.StepSectionData.IdentB))
|
||||||
{
|
{
|
||||||
_MyTab.CleanText = MyParent.MyTab.CleanText.Trim() + "." + incSub + " ";
|
//CSM F2024 - 080: For South Texas - if format contains initial line and it is not disabled, show an initial line
|
||||||
|
string tstr = MyParent.MyTab.CleanText.Trim() + "." + incSub + " ";
|
||||||
|
if (!string.IsNullOrEmpty(FormatStepData?.TabData?.MacroEditTag) && FormatStepData.TabData.MacroList != null && FormatStepData.TabData.MacroList.Count > 0 && !(this.IsRNOPart && FormatStepData.TabData.MacroList[0].NotInRNO) && !IsInitialLineDisabled && !tstr.StartsWith("_"))
|
||||||
|
{
|
||||||
|
if (tstr.StartsWith(" "))
|
||||||
|
tstr = tstr.Substring(1);
|
||||||
|
tstr = FormatStepData.TabData.MacroEditTag + tstr;
|
||||||
|
}
|
||||||
|
else if(IsInitialLineDisabled && tstr.StartsWith("_"))
|
||||||
|
tstr = tstr.Substring(1);
|
||||||
|
|
||||||
|
_MyTab.CleanText = tstr;
|
||||||
_MyTab.Text = _MyTab.CleanText;
|
_MyTab.Text = _MyTab.CleanText;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
string tmprnotab = MyParent.MyTab.CleanText.Substring(0, MyParent.MyTab.CleanText.IndexOf(".") + 1) + incSub;
|
string tmprnotab = MyParent.MyTab.CleanText.Substring(0, MyParent.MyTab.CleanText.IndexOf(".") + 1) + incSub;
|
||||||
_MyTab.CleanText = tmprnotab.TrimStart();
|
//CSM F2024 - 080: For South Texas - if format contains initial line and it is not disabled, show an initial line
|
||||||
_MyTab.Text = tmprnotab.TrimStart();
|
tmprnotab = tmprnotab.TrimStart();
|
||||||
|
if (!string.IsNullOrEmpty(FormatStepData?.TabData?.MacroEditTag) && FormatStepData.TabData.MacroList != null && FormatStepData.TabData.MacroList.Count > 0 && !(this.IsRNOPart && FormatStepData.TabData.MacroList[0].NotInRNO) && !IsInitialLineDisabled && !tmprnotab.StartsWith("_"))
|
||||||
|
{
|
||||||
|
if (tmprnotab.StartsWith(" "))
|
||||||
|
tmprnotab = tmprnotab.Substring(1);
|
||||||
|
tmprnotab = FormatStepData.TabData.MacroEditTag + tmprnotab;
|
||||||
|
}
|
||||||
|
else if (IsInitialLineDisabled && tmprnotab.StartsWith("_"))
|
||||||
|
tmprnotab = tmprnotab.Substring(1);
|
||||||
|
|
||||||
|
_MyTab.CleanText = tmprnotab;
|
||||||
|
_MyTab.Text = tmprnotab;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if ((((ItemInfo)ActiveParent).IsHigh && FormatStepData.NumberHighLevel) || ((!((ItemInfo)ActiveParent).IsHigh) && ((tbformat == null || tbformat == "") && (RNOLevel <= ColumnMode))))
|
if ((((ItemInfo)ActiveParent).IsHigh && FormatStepData.NumberHighLevel) || ((!((ItemInfo)ActiveParent).IsHigh) && ((tbformat == null || tbformat == "") && (RNOLevel <= ColumnMode))))
|
||||||
{
|
{
|
||||||
_MyTab.CleanText = ((ItemInfo)ActiveParent).MyTab.CleanText;
|
_MyTab.CleanText = ((ItemInfo)ActiveParent).MyTab.CleanText;
|
||||||
_MyTab.Text = ((ItemInfo)ActiveParent).MyTab.Text;
|
_MyTab.Text = ((ItemInfo)ActiveParent).MyTab.Text;
|
||||||
|
//CSM F2024 - 080: For South Texas - if format contains initial line and it is not disabled, show an initial line
|
||||||
|
if (!string.IsNullOrEmpty(FormatStepData?.TabData?.MacroEditTag) && FormatStepData.TabData.MacroList != null && FormatStepData.TabData.MacroList.Count > 0 && !(this.IsRNOPart && FormatStepData.TabData.MacroList[0].NotInRNO) && !IsInitialLineDisabled && !_MyTab.CleanText.StartsWith("_"))
|
||||||
|
{
|
||||||
|
if (_MyTab.CleanText.StartsWith(" "))
|
||||||
|
_MyTab.CleanText = _MyTab.CleanText.Substring(1);
|
||||||
|
_MyTab.CleanText = FormatStepData.TabData.MacroEditTag + _MyTab.CleanText;
|
||||||
|
}
|
||||||
|
if (IsInitialLineDisabled && _MyTab.CleanText.StartsWith("_"))
|
||||||
|
{
|
||||||
|
_MyTab.CleanText = _MyTab.CleanText.Substring(1);
|
||||||
|
}
|
||||||
|
if (IsInitialLineDisabled && _MyTab.Text.StartsWith("_"))
|
||||||
|
{
|
||||||
|
_MyTab.Text = _MyTab.Text.Substring(1);
|
||||||
|
}
|
||||||
_MyTab.RNOTabWidthAdjust = ((ItemInfo)ActiveParent).FormatStepData.TabData.RNOAdjustTabSize ?? 0;
|
_MyTab.RNOTabWidthAdjust = ((ItemInfo)ActiveParent).FormatStepData.TabData.RNOAdjustTabSize ?? 0;
|
||||||
if (((ItemInfo)ActiveParent).MyTab.Offset != 0) _MyTab.Offset = ((ItemInfo)ActiveParent).MyTab.Offset;
|
if (((ItemInfo)ActiveParent).MyTab.Offset != 0) _MyTab.Offset = ((ItemInfo)ActiveParent).MyTab.Offset;
|
||||||
if (((ItemInfo)ActiveParent).FormatStepData.TabData.RNOExcludeMacros)
|
if (((ItemInfo)ActiveParent).FormatStepData.TabData.RNOExcludeMacros)
|
||||||
@ -4694,7 +4906,7 @@ namespace VEPROMS.CSLA.Library
|
|||||||
// Note could have modified logic for clock macro (above) but older logic uses the IdentEdit setting
|
// Note could have modified logic for clock macro (above) but older logic uses the IdentEdit setting
|
||||||
// for CAS (Continuous Action Summary steps) that have a circle printed around the step number
|
// for CAS (Continuous Action Summary steps) that have a circle printed around the step number
|
||||||
// this is the least impact of current code/formats
|
// this is the least impact of current code/formats
|
||||||
if (!string.IsNullOrEmpty(FormatStepData.TabData.MacroEditTag))
|
if (!string.IsNullOrEmpty(FormatStepData?.TabData?.MacroEditTag))
|
||||||
{
|
{
|
||||||
int eidx = tbformat.IndexOf("}", macroindx);
|
int eidx = tbformat.IndexOf("}", macroindx);
|
||||||
if (eidx > -1)
|
if (eidx > -1)
|
||||||
@ -4716,6 +4928,17 @@ namespace VEPROMS.CSLA.Library
|
|||||||
cltext = cltext + " ";
|
cltext = cltext + " ";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
//CSM F2024 - 080: For South Texas - if format contains initial line and it is not disabled, show an initial line
|
||||||
|
else if (macroindx == -1 && !string.IsNullOrEmpty(FormatStepData?.TabData?.MacroEditTag) && FormatStepData.TabData.MacroList != null && FormatStepData.TabData.MacroList.Count > 0 && !(this.IsRNOPart && FormatStepData.TabData.MacroList[0].NotInRNO) && !IsInitialLineDisabled)
|
||||||
|
{
|
||||||
|
if (cltext == null)
|
||||||
|
cltext = tbformat;
|
||||||
|
if (cltext.StartsWith(" "))
|
||||||
|
cltext = cltext.Substring(1);
|
||||||
|
if (tbformat.StartsWith(" "))
|
||||||
|
tbformat = tbformat.Substring(1);
|
||||||
|
cltext = FormatStepData.TabData.MacroEditTag + cltext;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
macroindx = tbformat.IndexOf("{!diamond1}");
|
macroindx = tbformat.IndexOf("{!diamond1}");
|
||||||
if (macroindx > -1) //i found it
|
if (macroindx > -1) //i found it
|
||||||
@ -5520,15 +5743,32 @@ namespace VEPROMS.CSLA.Library
|
|||||||
}
|
}
|
||||||
if (count <= macro.Grouping) addToList = false;
|
if (count <= macro.Grouping) addToList = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//CSM F2024 - 080: For South Texas - if initial line is disabled for this step, do not add the macro
|
||||||
|
if (macro.Name.ToUpper() == "CHECKOFF" && ActiveFormat.PlantFormat.FormatData.SectData.StepSectionData.ShowInitialLineDisable && !string.IsNullOrEmpty(FormatStepData?.TabData?.MacroEditTag) && FormatStepData.TabData.MacroEditTag == "_" && IsInitialLineDisabled)
|
||||||
|
addToList = false;
|
||||||
|
|
||||||
if (addToList) tmp.Add(macro);
|
if (addToList) tmp.Add(macro);
|
||||||
}
|
}
|
||||||
if (tmp.Count > 0) _MyMacros = tmp;
|
if (tmp.Count > 0) _MyMacros = tmp;
|
||||||
}
|
}
|
||||||
#endregion
|
|
||||||
#region UseSmartTemplate
|
|
||||||
|
|
||||||
// TemplateIndex is for Calvert only:
|
//CSM F2024 - 080: For South Texas - check if initial line is disabled for this step
|
||||||
private int _TemplateIndex = -2; // -2 not set; -1 not a template
|
public bool IsInitialLineDisabled
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
if (!IsStep) return false;
|
||||||
|
StepConfig sc = MyConfig as StepConfig;
|
||||||
|
return sc.Step_DisableInitialLine;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
#region UseSmartTemplate
|
||||||
|
|
||||||
|
// TemplateIndex is for Calvert only:
|
||||||
|
private int _TemplateIndex = -2; // -2 not set; -1 not a template
|
||||||
public int TemplateIndex
|
public int TemplateIndex
|
||||||
{
|
{
|
||||||
get
|
get
|
||||||
@ -6022,6 +6262,168 @@ namespace VEPROMS.CSLA.Library
|
|||||||
throw new DbCslaException("Error on ItemInfoList.GetChildren", ex);
|
throw new DbCslaException("Error on ItemInfoList.GetChildren", ex);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//CSM B2021-043 Step numbering is out of order in RO usage report if RO values exist on steps 10 or higher.
|
||||||
|
// Found various inconsistencies in the reports so adding this to manually sort
|
||||||
|
//instead of binding the sort to 1 or 2 individual fields
|
||||||
|
public List<ItemInfo> SortedList(bool sortbyFoundRoid = false)
|
||||||
|
{
|
||||||
|
List<ItemInfo> tmp = new List<ItemInfo>(this);
|
||||||
|
if (sortbyFoundRoid)
|
||||||
|
{
|
||||||
|
// Priority of Sorting order:
|
||||||
|
// 1. FoundRoid (by Referenced Object ID)
|
||||||
|
// 2. SearchDVPath_clean (Which Procedure Set it is in - I.E. EOPs, Background, SAMGs, etc...)
|
||||||
|
// 3. Keep in order of the Procedures within the set
|
||||||
|
// 4. Keep in the order of the Section within the Procedure
|
||||||
|
// 5. NumericSortNumber - numeric part of the HLS if there is one
|
||||||
|
// 6. Substep Tab - will sort as a string since combined numbers/text
|
||||||
|
tmp.Sort(comparison: delegate (ItemInfo x, ItemInfo y)
|
||||||
|
{
|
||||||
|
int cmp = 0;
|
||||||
|
int FoundROID_cmp = x.FoundROID.CompareTo(y.FoundROID);
|
||||||
|
switch (FoundROID_cmp)
|
||||||
|
{
|
||||||
|
case int result when result < 0:
|
||||||
|
cmp -= 10000000;
|
||||||
|
break;
|
||||||
|
case int result when result == 0:
|
||||||
|
break;
|
||||||
|
case int result when result > 0:
|
||||||
|
cmp += 10000000;
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
int DVPath_cmp = x.SearchDVPath_clean.CompareTo(y.SearchDVPath_clean);
|
||||||
|
switch (DVPath_cmp)
|
||||||
|
{
|
||||||
|
case int result when result < 0:
|
||||||
|
cmp -= 1000000;
|
||||||
|
break;
|
||||||
|
case int result when result == 0:
|
||||||
|
break;
|
||||||
|
case int result when result > 0:
|
||||||
|
cmp += 1000000;
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (x.MyProcedure != null && y.MyProcedure != null)
|
||||||
|
{
|
||||||
|
cmp += (x.MyProcedure.Ordinal.CompareTo(y.MyProcedure.Ordinal) * 100000);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (x.ActiveSection != null && y.ActiveSection != null)
|
||||||
|
{
|
||||||
|
cmp += (x.ActiveSection.Ordinal.CompareTo(y.ActiveSection.Ordinal) * 100000);
|
||||||
|
}
|
||||||
|
|
||||||
|
cmp += x.NumericSortNumber.CompareTo(y.NumericSortNumber) * 10;
|
||||||
|
|
||||||
|
if (cmp == 0)
|
||||||
|
{
|
||||||
|
int StepTab_cmp = (x.BuildStepTab()).CompareTo(y.BuildStepTab());
|
||||||
|
switch (StepTab_cmp)
|
||||||
|
{
|
||||||
|
case int result when result < 0:
|
||||||
|
cmp -= 1;
|
||||||
|
break;
|
||||||
|
case int result when result == 0:
|
||||||
|
break;
|
||||||
|
case int result when result > 0:
|
||||||
|
cmp += 1;
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return cmp;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
// Priority of Sorting order:
|
||||||
|
// 1. SearchDVPath_clean (Which Procedure Set it is in - I.E. EOPs, Background, SAMGs, etc...)
|
||||||
|
// 2. Keep in order of the Procedures within the set
|
||||||
|
// 3. Keep in the order of the Section within the Procedure
|
||||||
|
// 4. NumericSortNumber - numeric part of the HLS if there is one
|
||||||
|
// 5. Substep Tab - will sort as a string since combined numbers/text
|
||||||
|
// 6. FoundRoid (by Referenced Object ID)
|
||||||
|
tmp.Sort(comparison: delegate (ItemInfo x, ItemInfo y)
|
||||||
|
{
|
||||||
|
int cmp = 0;
|
||||||
|
|
||||||
|
int DVPath_cmp = x.SearchDVPath_clean.CompareTo(y.SearchDVPath_clean);
|
||||||
|
switch (DVPath_cmp)
|
||||||
|
{
|
||||||
|
case int result when result < 0:
|
||||||
|
cmp -= 10000000;
|
||||||
|
break;
|
||||||
|
case int result when result == 0:
|
||||||
|
break;
|
||||||
|
case int result when result > 0:
|
||||||
|
cmp += 10000000;
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (x.MyProcedure != null && y.MyProcedure != null)
|
||||||
|
{
|
||||||
|
cmp += (x.MyProcedure.Ordinal.CompareTo(y.MyProcedure.Ordinal) * 1000000);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (x.ActiveSection != null && y.ActiveSection != null)
|
||||||
|
{
|
||||||
|
cmp += (x.ActiveSection.Ordinal.CompareTo(y.ActiveSection.Ordinal) * 100000);
|
||||||
|
}
|
||||||
|
|
||||||
|
cmp += (x.NumericSortNumber.CompareTo(y.NumericSortNumber) * 100);
|
||||||
|
|
||||||
|
if (cmp == 0)
|
||||||
|
{
|
||||||
|
int StepTab_cmp = (x.BuildStepTab()).CompareTo(y.BuildStepTab());
|
||||||
|
switch (StepTab_cmp)
|
||||||
|
{
|
||||||
|
case int result when result < 0:
|
||||||
|
cmp -= 10;
|
||||||
|
break;
|
||||||
|
case int result when result == 0:
|
||||||
|
break;
|
||||||
|
case int result when result > 0:
|
||||||
|
cmp += 10;
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
int FoundROID_cmp = x.FoundROID.CompareTo(y.FoundROID);
|
||||||
|
switch (FoundROID_cmp)
|
||||||
|
{
|
||||||
|
case int result when result < 0:
|
||||||
|
cmp -= 1;
|
||||||
|
break;
|
||||||
|
case int result when result == 0:
|
||||||
|
break;
|
||||||
|
case int result when result > 0:
|
||||||
|
cmp += 1;
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
return cmp;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
return tmp;
|
||||||
|
}
|
||||||
|
|
||||||
[Serializable()]
|
[Serializable()]
|
||||||
private class MoveItemCriteria
|
private class MoveItemCriteria
|
||||||
{
|
{
|
||||||
@ -7197,11 +7599,11 @@ namespace VEPROMS.CSLA.Library
|
|||||||
}
|
}
|
||||||
this.RaiseListChangedEvents = true;
|
this.RaiseListChangedEvents = true;
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
#region new class TransitionLookup
|
#region new class TransitionLookup
|
||||||
public delegate ProcedureInfo TransitionLookupEvent(object sender, TransitionLookupEventArgs args);
|
public delegate ProcedureInfo TransitionLookupEvent(object sender, TransitionLookupEventArgs args);
|
||||||
public class TransitionLookupEventArgs
|
public class TransitionLookupEventArgs
|
||||||
{
|
{
|
||||||
private int _ProcID;
|
private int _ProcID;
|
||||||
|
@ -676,37 +676,47 @@ namespace VEPROMS.CSLA.Library
|
|||||||
}
|
}
|
||||||
public void AppendPrefix()
|
public void AppendPrefix()
|
||||||
{
|
{
|
||||||
if (HasText && Prefix != null)
|
if (Prefix == null) return; // no Prefix text to add
|
||||||
|
if (HasText)
|
||||||
{
|
{
|
||||||
if (!_Results.ToString().EndsWith(_Prefix))
|
if (!_Results.ToString().EndsWith(_Prefix)) //existing transition text does not end with Prefix text, OK to append
|
||||||
_Results.Append(Prefix);
|
_Results.Append(Prefix);
|
||||||
_Prefix = null;
|
_Prefix = null;
|
||||||
}
|
}
|
||||||
else if (_TranType == 4 && _ToItem.MoreThanOneStepSection())
|
else if (_TranType == 4 && _ToItem.MoreThanOneStepSection())
|
||||||
{
|
{
|
||||||
if (!HasText && Prefix != null && Prefix.ToUpper().StartsWith(", STEP")
|
// WEP (Point Beach) is no longer a customer - commented out
|
||||||
&& _FromItem.ActiveFormat.Name.StartsWith("WEP"))
|
//if (!HasText && Prefix.ToUpper().StartsWith(", STEP")
|
||||||
{
|
// && _FromItem.ActiveFormat.Name.StartsWith("WEP"))
|
||||||
Console.WriteLine("Format,'{0}'", _FromItem.ActiveFormat.Name);
|
//{
|
||||||
_Prefix = null;
|
// Console.WriteLine("Format,'{0}'", _FromItem.ActiveFormat.Name);
|
||||||
return;
|
// _Prefix = null;
|
||||||
}
|
// return;
|
||||||
|
//}
|
||||||
_Results.Append(Prefix);
|
_Results.Append(Prefix);
|
||||||
_Prefix = null;
|
_Prefix = null;
|
||||||
}
|
}
|
||||||
else if (_TranType == 5 && Prefix != null)
|
|
||||||
{
|
|
||||||
if (!HasText && Prefix.StartsWith(", "))
|
|
||||||
_Results.Append(Prefix.TrimStart(", ".ToCharArray()));
|
|
||||||
else
|
|
||||||
_Results.Append(Prefix);
|
|
||||||
_Prefix = null;
|
|
||||||
}
|
|
||||||
// If the prefix contains an open paren, we want to add the open paren regardless
|
// If the prefix contains an open paren, we want to add the open paren regardless
|
||||||
// of whether there already is text in the resulting string.
|
// of whether there already is text in the resulting string.
|
||||||
else if (!HasText && Prefix != null && Prefix.Contains("("))
|
else if (!HasText && Prefix.Contains("("))
|
||||||
{
|
{
|
||||||
_Results.Append(Prefix.TrimStart(" ".ToCharArray())); // since no text in result, trim starting space.
|
_Results.Append(Prefix.TrimStart(" ".ToCharArray())); // since no text in result, trim starting space.
|
||||||
|
_Prefix = null;
|
||||||
|
}
|
||||||
|
else if (!HasText && Prefix.StartsWith(", "))
|
||||||
|
{
|
||||||
|
_Results.Append(Prefix.TrimStart(", ".ToCharArray()));// no preceeding text, remove comma and space
|
||||||
|
_Prefix = null;
|
||||||
|
}
|
||||||
|
else if (!HasText && Prefix.StartsWith(","))
|
||||||
|
{
|
||||||
|
_Results.Append(Prefix.TrimStart(",".ToCharArray())); // no preceeding text, remove comma
|
||||||
|
_Prefix = null;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
_Results.Append(Prefix); // append prefix as is
|
||||||
|
_Prefix = null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
public string OverridePrefix
|
public string OverridePrefix
|
||||||
|
@ -3175,6 +3175,17 @@ namespace VEPROMS.CSLA.Library
|
|||||||
return LazyLoad(ref _ChangeFontUpperCaseIinArial, "@ChangeFontUpperCaseIinArial");
|
return LazyLoad(ref _ChangeFontUpperCaseIinArial, "@ChangeFontUpperCaseIinArial");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// F2024-080 South Texas
|
||||||
|
// Used to show if "Initial Line Disable" checkbox should show in the DisplayTab
|
||||||
|
private LazyLoad<bool> _ShowInitialLineDisable;
|
||||||
|
public bool ShowInitialLineDisable
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
return LazyLoad(ref _ShowInitialLineDisable, "@ShowInitialLineDisable");
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
#endregion - StepSectionData
|
#endregion - StepSectionData
|
||||||
#region TextTypeValue
|
#region TextTypeValue
|
||||||
@ -6202,6 +6213,36 @@ public StepData Equation // equation has a parent of embedded object.
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// F2024-078 adjusts the the spacing before the Note/Caution tab - the space betwee the top of the box and the tab text
|
||||||
|
private LazyLoad<float?> _AdjSpB4Tab;
|
||||||
|
public float? AdjSpB4Tab
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
return LazyLoad(ref _AdjSpB4Tab, "@AdjSpB4Tab");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// F2024-078 adjusts the the spacing after the Note/Caution tab - the space betwee the tab text and the first line of of Note/Caution text
|
||||||
|
private LazyLoad<float?> _AdjSpAftTab;
|
||||||
|
public float? AdjSpAftTab
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
return LazyLoad(ref _AdjSpAftTab, "@AdjSpAftTab");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// F2024-078 adjusts the the spacing after the last line of Note/Caution text - between the last line of text and the bottom of the box
|
||||||
|
private LazyLoad<float?> _AdjLastBlnkLn;
|
||||||
|
public float? AdjLastBlnkLn
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
return LazyLoad(ref _AdjLastBlnkLn, "@AdjLastBlnkLn");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// this will adjust the line spacing when an extra thick line is used for a box, so that the text below the box doesn't hit up against the bottom of the box
|
// this will adjust the line spacing when an extra thick line is used for a box, so that the text below the box doesn't hit up against the bottom of the box
|
||||||
private LazyLoad<bool> _ThickDouble; // F2021-026: Barakah single column 2 thick double lines around Warnings
|
private LazyLoad<bool> _ThickDouble; // F2021-026: Barakah single column 2 thick double lines around Warnings
|
||||||
public bool ThickDouble
|
public bool ThickDouble
|
||||||
@ -6396,7 +6437,7 @@ public StepData Equation // equation has a parent of embedded object.
|
|||||||
}
|
}
|
||||||
public TransData(XmlNode xmlNode) : base(xmlNode) { }
|
public TransData(XmlNode xmlNode) : base(xmlNode) { }
|
||||||
|
|
||||||
// a character that is placed before and after the title that's in the transition text
|
// a character that is placed before and after the procedure title that's in the transition text
|
||||||
private LazyLoad<string> _DelimiterForTransitionTitle;
|
private LazyLoad<string> _DelimiterForTransitionTitle;
|
||||||
public string DelimiterForTransitionTitle
|
public string DelimiterForTransitionTitle
|
||||||
{
|
{
|
||||||
@ -6673,7 +6714,9 @@ public StepData Equation // equation has a parent of embedded object.
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// holdover from 16bit, used to define whether transitions are range (types 2 & 3). this is used in the logic for transitions with page numbers
|
// Holdover from 16bit, used to define whether transitions are range (types 2 & 3).
|
||||||
|
// This is used in the logic for transitions with page numbers. This gets defined as "Type" in the code for the transition class.
|
||||||
|
// NOTE: the TransType you see in the code is actually the index into the list of transition definitions for given format.
|
||||||
private LazyLoad<int?> _Type;
|
private LazyLoad<int?> _Type;
|
||||||
public int? Type
|
public int? Type
|
||||||
{
|
{
|
||||||
|
91
PROMS/VEPROMS.CSLA.Library/Minimal/UserSettings.cs
Normal file
91
PROMS/VEPROMS.CSLA.Library/Minimal/UserSettings.cs
Normal file
@ -0,0 +1,91 @@
|
|||||||
|
using System;
|
||||||
|
using Csla.Data;
|
||||||
|
using System.Data;
|
||||||
|
using System.Data.SqlClient;
|
||||||
|
|
||||||
|
//CSM - C2024-031 - Minimal Class for Saving / Getting User Settings
|
||||||
|
//For Use with getting / saving if a User wishes to have tabs kept open
|
||||||
|
namespace VEPROMS.CSLA.Library
|
||||||
|
{
|
||||||
|
public class UserSettings
|
||||||
|
{
|
||||||
|
#region Private Properties
|
||||||
|
private readonly string _userid;
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
#region Public Properties
|
||||||
|
public bool UserSetting_OpenTabs_Remember { get; protected set; } = false;
|
||||||
|
public bool UserSetting_OpenTabs_AutoOpen { get; protected set; } = true;
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
|
||||||
|
#region Constructor
|
||||||
|
public UserSettings(string UserID)
|
||||||
|
{
|
||||||
|
_userid = UserID;
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
using (SqlConnection cn = Database.VEPROMS_SqlConnection)
|
||||||
|
{
|
||||||
|
using (SqlCommand cm = cn.CreateCommand())
|
||||||
|
{
|
||||||
|
cm.CommandType = CommandType.Text;
|
||||||
|
cm.CommandText = "Select RememberOpenTabs, AutoOpenTabs FROM Users where UserID = @UID";
|
||||||
|
cm.Parameters.AddWithValue("@UID", _userid);
|
||||||
|
cm.CommandTimeout = Database.DefaultTimeout;
|
||||||
|
using (SafeDataReader dr = new SafeDataReader(cm.ExecuteReader()))
|
||||||
|
{
|
||||||
|
if (dr.Read())
|
||||||
|
{
|
||||||
|
UserSetting_OpenTabs_Remember = (bool) dr.GetValue("RememberOpenTabs");
|
||||||
|
UserSetting_OpenTabs_AutoOpen = (bool) dr.GetValue("AutoOpenTabs");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
Database.LogException("UserSettings_GetData", ex);
|
||||||
|
throw new DbCslaException("UserSettings_GetData", ex);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
#region Save Properties
|
||||||
|
public void SetUserSettings(bool OpenTabs_Remember, bool? OpenTabs_AutoOpen = null)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
using (SqlConnection cn = Database.VEPROMS_SqlConnection)
|
||||||
|
{
|
||||||
|
using (SqlCommand cm = cn.CreateCommand())
|
||||||
|
{
|
||||||
|
cm.CommandType = CommandType.StoredProcedure;
|
||||||
|
cm.CommandText = "vesp_UpdateUserSettings";
|
||||||
|
cm.Parameters.AddWithValue("@UID", _userid);
|
||||||
|
UserSetting_OpenTabs_Remember = OpenTabs_Remember;
|
||||||
|
cm.Parameters.AddWithValue("@Remember", OpenTabs_Remember);
|
||||||
|
if (OpenTabs_AutoOpen != null)
|
||||||
|
{
|
||||||
|
UserSetting_OpenTabs_AutoOpen = (bool) OpenTabs_AutoOpen;
|
||||||
|
cm.Parameters.AddWithValue("@AutoOpen", OpenTabs_AutoOpen);
|
||||||
|
}
|
||||||
|
cm.CommandTimeout = Database.DefaultTimeout;
|
||||||
|
|
||||||
|
cm.ExecuteNonQuery();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
Database.LogException("UserSettings_SetUserSettings", ex);
|
||||||
|
throw new DbCslaException("UserSettings_SetUserSettings", ex);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
#endregion
|
||||||
|
}
|
||||||
|
}
|
@ -380,6 +380,7 @@
|
|||||||
<Compile Include="Generated\ZContentInfo.cs" />
|
<Compile Include="Generated\ZContentInfo.cs" />
|
||||||
<Compile Include="Generated\ZTransition.cs" />
|
<Compile Include="Generated\ZTransition.cs" />
|
||||||
<Compile Include="Generated\ZTransitionInfo.cs" />
|
<Compile Include="Generated\ZTransitionInfo.cs" />
|
||||||
|
<Compile Include="Minimal\UserSettings.cs" />
|
||||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||||
<Compile Include="VEObjects\VEDrillDown.cs" />
|
<Compile Include="VEObjects\VEDrillDown.cs" />
|
||||||
<Compile Include="VEObjects\VETreeNode.cs" />
|
<Compile Include="VEObjects\VETreeNode.cs" />
|
||||||
|
@ -236,7 +236,11 @@ namespace Volian.Controls.Library
|
|||||||
else
|
else
|
||||||
{
|
{
|
||||||
StringBuilder sb = new StringBuilder();
|
StringBuilder sb = new StringBuilder();
|
||||||
sb.AppendLine("Changing the applicability for this step will invalidate a transition in the following steps...");
|
string tmpwrd = MyItemInfo.IsSection ? "section" : "step";
|
||||||
|
sb.AppendLine($"The applicability for this {tmpwrd} cannot be changed due to transition links.");
|
||||||
|
sb.AppendLine("Applicability settings will return to original settings when OK is selected.");
|
||||||
|
sb.AppendLine($"Changing the applicability for this {tmpwrd} will invalidate a transition in the following steps...");
|
||||||
|
|
||||||
sb.AppendLine();
|
sb.AppendLine();
|
||||||
// B2021-149: if step, put out line for every invalidTrans, if procedure only put out those that are external
|
// B2021-149: if step, put out line for every invalidTrans, if procedure only put out those that are external
|
||||||
// determine this by looking strings for source and target (to), if procedure level and internal the target starts
|
// determine this by looking strings for source and target (to), if procedure level and internal the target starts
|
||||||
|
@ -1078,7 +1078,13 @@ namespace Volian.Controls.Library
|
|||||||
}
|
}
|
||||||
else if (searchValue.Contains("#Link:ReferencedObject")) // RO Link (roid)
|
else if (searchValue.Contains("#Link:ReferencedObject")) // RO Link (roid)
|
||||||
{
|
{
|
||||||
searchValue = searchValue.Replace("1[END>", string.Empty).Trim();
|
// we where only removing the END if the searchValue ended in "1[END>"
|
||||||
|
// but sometimes it ended in "2[END>" and cause a null reference error
|
||||||
|
// - was seen only running via Visual Studio debugger
|
||||||
|
// I cleaned up the code to remove in ether case so that we get the expected roid value - jsj 11-18-2024
|
||||||
|
string substr = searchValue.Substring(searchValue.LastIndexOf(" "));
|
||||||
|
if (substr.Contains("[END>"))
|
||||||
|
searchValue = searchValue.Substring(0, searchValue.Length - substr.Length);
|
||||||
string roid = ROFSTLookup.FormatRoidKey(searchValue.Substring(searchValue.LastIndexOf(" ")), true);
|
string roid = ROFSTLookup.FormatRoidKey(searchValue.Substring(searchValue.LastIndexOf(" ")), true);
|
||||||
|
|
||||||
if (roid != selectedChld.roid)
|
if (roid != selectedChld.roid)
|
||||||
|
@ -511,8 +511,8 @@ namespace Volian.Controls.Library
|
|||||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||||
this.Controls.Add(this.btnPrintReport);
|
this.Controls.Add(this.btnPrintReport);
|
||||||
this.Controls.Add(this.xpSetToReport);
|
|
||||||
this.Controls.Add(this.xpSelROs);
|
this.Controls.Add(this.xpSelROs);
|
||||||
|
this.Controls.Add(this.xpSetToReport);
|
||||||
this.Controls.Add(this.tctrlReports);
|
this.Controls.Add(this.tctrlReports);
|
||||||
this.Margin = new System.Windows.Forms.Padding(2);
|
this.Margin = new System.Windows.Forms.Padding(2);
|
||||||
this.Name = "DisplayReports";
|
this.Name = "DisplayReports";
|
||||||
|
@ -805,16 +805,8 @@ namespace Volian.Controls.Library
|
|||||||
string SearchString = GetListOfROs(true);// Include the RODbID in the RO list
|
string SearchString = GetListOfROs(true);// Include the RODbID in the RO list
|
||||||
ItemInfoList SearchResults = ItemInfoList.GetListFromROReport(DocVersionList, "", SearchString, "");
|
ItemInfoList SearchResults = ItemInfoList.GetListFromROReport(DocVersionList, "", SearchString, "");
|
||||||
|
|
||||||
if (!usageSortedByProcedure) // sort on ROs
|
List<ItemInfo> sortedResults = SearchResults.SortedList(!usageSortedByProcedure);
|
||||||
{
|
OnPrintRequest(new DisplayReportsEventArgs("Referenced Objects Usage By RO", "RO Usage", sortedResults, usageSortedByProcedure, cbxIncldMissingROs.Checked, paperSize));
|
||||||
Csla.SortedBindingList<ItemInfo> sortedResults = new Csla.SortedBindingList<ItemInfo>(SearchResults);
|
|
||||||
sortedResults.ApplySort("FoundROID", ListSortDirection.Ascending);
|
|
||||||
OnPrintRequest(new DisplayReportsEventArgs("Referenced Objects Usage By RO", "RO Usage", sortedResults, usageSortedByProcedure, cbxIncldMissingROs.Checked, paperSize));
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
OnPrintRequest(new DisplayReportsEventArgs("Referenced Objects Usage By Procedure", "RO Usage", SearchResults, usageSortedByProcedure, cbxIncldMissingROs.Checked, paperSize));
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
else if (cbxTransFromProcs.Checked)
|
else if (cbxTransFromProcs.Checked)
|
||||||
{
|
{
|
||||||
|
@ -658,7 +658,7 @@ namespace Volian.Controls.Library
|
|||||||
this.superTooltip1.SetSuperTooltip(this.cmboTreeROs, new DevComponents.DotNetBar.SuperTooltipInfo("Select the RO to Search", "", "Select the Referenced Object to search for.", null, null, DevComponents.DotNetBar.eTooltipColor.Gray));
|
this.superTooltip1.SetSuperTooltip(this.cmboTreeROs, new DevComponents.DotNetBar.SuperTooltipInfo("Select the RO to Search", "", "Select the Referenced Object to search for.", null, null, DevComponents.DotNetBar.eTooltipColor.Gray));
|
||||||
this.cmboTreeROs.TabIndex = 1;
|
this.cmboTreeROs.TabIndex = 1;
|
||||||
this.cmboTreeROs.ThemeAware = true;
|
this.cmboTreeROs.ThemeAware = true;
|
||||||
this.cmboTreeROs.WatermarkText = "Select an RO to seach";
|
this.cmboTreeROs.WatermarkText = "Select an RO to search";
|
||||||
this.cmboTreeROs.SelectedIndexChanged += new System.EventHandler(this.cmboTreeROs_SelectedIndexChanged);
|
this.cmboTreeROs.SelectedIndexChanged += new System.EventHandler(this.cmboTreeROs_SelectedIndexChanged);
|
||||||
//
|
//
|
||||||
// tabROSearch
|
// tabROSearch
|
||||||
|
@ -66,7 +66,7 @@ namespace Volian.Controls.Library
|
|||||||
private Color saveGrpPanSearchResults;
|
private Color saveGrpPanSearchResults;
|
||||||
private ItemInfoList _SearchResults;
|
private ItemInfoList _SearchResults;
|
||||||
|
|
||||||
private string _DisplayMember = "SearchPath";
|
private string _DisplayMember = "SearchPath_clean";
|
||||||
private bool _OpenDocFromSearch;
|
private bool _OpenDocFromSearch;
|
||||||
private ROFSTLookup _MyROFSTLookup;
|
private ROFSTLookup _MyROFSTLookup;
|
||||||
private bool _LoadingList = false;
|
private bool _LoadingList = false;
|
||||||
@ -1745,7 +1745,7 @@ namespace Volian.Controls.Library
|
|||||||
}
|
}
|
||||||
|
|
||||||
// B2021-076: Proms search results are not presented in order when printed to PDF
|
// B2021-076: Proms search results are not presented in order when printed to PDF
|
||||||
if (_DisplayMember == "SearchPath" || _DisplayMember == "ShortSearchPath")
|
if (_DisplayMember == "SearchPath_clean" || _DisplayMember == "ShortSearchPath_clean")
|
||||||
{
|
{
|
||||||
cbSorted.Checked = false;
|
cbSorted.Checked = false;
|
||||||
cbSorted.Enabled = false;
|
cbSorted.Enabled = false;
|
||||||
@ -1880,10 +1880,10 @@ namespace Volian.Controls.Library
|
|||||||
switch (cmbResultsStyle.Text)
|
switch (cmbResultsStyle.Text)
|
||||||
{
|
{
|
||||||
case "Document Path":
|
case "Document Path":
|
||||||
_DisplayMember = "SearchDVPath";
|
_DisplayMember = "SearchDVPath_clean";
|
||||||
break;
|
break;
|
||||||
case "Step Path":
|
case "Step Path":
|
||||||
_DisplayMember = "ShortSearchPath";
|
_DisplayMember = "ShortSearchPath_clean";
|
||||||
break;
|
break;
|
||||||
case "Annotation Text":
|
case "Annotation Text":
|
||||||
_DisplayMember = "SearchAnnotationText";
|
_DisplayMember = "SearchAnnotationText";
|
||||||
@ -1892,7 +1892,7 @@ namespace Volian.Controls.Library
|
|||||||
_DisplayMember = "DisplayText";
|
_DisplayMember = "DisplayText";
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
_DisplayMember = "SearchPath";
|
_DisplayMember = "SearchPath_clean";
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
DisplayResults();
|
DisplayResults();
|
||||||
|
1420
PROMS/Volian.Controls.Library/DisplayTags.Designer.cs
generated
1420
PROMS/Volian.Controls.Library/DisplayTags.Designer.cs
generated
File diff suppressed because it is too large
Load Diff
@ -142,6 +142,8 @@ namespace Volian.Controls.Library
|
|||||||
tbChgID.Enabled = false;
|
tbChgID.Enabled = false;
|
||||||
lblChgId.Visible = tbChgID.Visible = false;
|
lblChgId.Visible = tbChgID.Visible = false;
|
||||||
CurItemInfo = null;
|
CurItemInfo = null;
|
||||||
|
cbInitialLine.Visible = cbInitialLine.Enabled = false;
|
||||||
|
|
||||||
}
|
}
|
||||||
private bool StepOverRide()
|
private bool StepOverRide()
|
||||||
{
|
{
|
||||||
@ -553,6 +555,16 @@ namespace Volian.Controls.Library
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//CSM F2024 - 080: For South Texas (HLP formats), enable the initial line checkbox if it is in the formats
|
||||||
|
//Also, they want disable being selected to impact substeps - so do not show toggle if selected on a parent step
|
||||||
|
cbInitialLine.Visible = cbInitialLine.Enabled = false;
|
||||||
|
if (CurItemInfo.ActiveFormat.PlantFormat.FormatData.SectData.StepSectionData.ShowInitialLineDisable && !string.IsNullOrEmpty(CurItemInfo.FormatStepData?.TabData?.MacroEditTag) && CurItemInfo.FormatStepData.TabData.MacroEditTag == "_" && CurItemInfo.FormatStepData.TabData.MacroList != null && CurItemInfo.FormatStepData.TabData.MacroList.Count > 0 && !(CurItemInfo.IsRNOPart && CurItemInfo.FormatStepData.TabData.MacroList[0].NotInRNO))
|
||||||
|
{
|
||||||
|
cbInitialLine.Visible = cbInitialLine.Enabled = true;
|
||||||
|
cbInitialLine.Checked = sc.Step_DisableInitialLine;
|
||||||
|
}
|
||||||
|
|
||||||
_Initalizing = false;
|
_Initalizing = false;
|
||||||
}
|
}
|
||||||
public void SetFigure(double wd, double wd2)
|
public void SetFigure(double wd, double wd2)
|
||||||
@ -969,25 +981,42 @@ namespace Volian.Controls.Library
|
|||||||
sc.Step_PreferredPagebreak = cbPrefPageBreak.Checked;
|
sc.Step_PreferredPagebreak = cbPrefPageBreak.Checked;
|
||||||
MyEditItem.ChangeBarForConfigItemChange = true;
|
MyEditItem.ChangeBarForConfigItemChange = true;
|
||||||
}
|
}
|
||||||
//private void txbxAltConActSumText_Leave(object sender, EventArgs e)
|
|
||||||
//{
|
|
||||||
// // User left Atlernate Continuous Action Text field. If text changed, then prompt
|
|
||||||
// // to see if save should occur.
|
|
||||||
// StepConfig sc = CurItemInfo.MyConfig as StepConfig;
|
|
||||||
// if (sc == null) return;
|
|
||||||
// bool bothEmpty = (sc.Step_AlternateContActSumText == null || sc.Step_AlternateContActSumText == "") && (txbxAltConActSumText.Text == null || txbxAltConActSumText.Text == "");
|
|
||||||
// if (!bothEmpty && sc.Step_AlternateContActSumText != txbxAltConActSumText.Text)
|
|
||||||
// {
|
|
||||||
// if (MessageBox.Show(this, "Do you want to save the Alternate Continuous Action Text?", "Confirm Save", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
|
|
||||||
// {
|
|
||||||
// MyEditItem.SaveContents();
|
|
||||||
// sc.Step_AlternateContActSumText = txbxAltConActSumText.Text; // this actually saves the config
|
|
||||||
// }
|
|
||||||
// else
|
|
||||||
// txbxAltConActSumText.Text = sc.Step_AlternateContActSumText;
|
|
||||||
// }
|
|
||||||
|
|
||||||
//}
|
private void cbInitialLine_CheckedChanged(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
if (_Initalizing) return;
|
||||||
|
MyEditItem.SaveContents();
|
||||||
|
StepConfig sc = CurItemInfo.MyConfig as StepConfig;
|
||||||
|
if (sc == null) return;
|
||||||
|
MyEditItem.ChangeBarForConfigItemChange = false;
|
||||||
|
sc.Step_DisableInitialLine = cbInitialLine.Checked;
|
||||||
|
MyEditItem.ChangeBarForConfigItemChange = true;
|
||||||
|
|
||||||
}
|
//needed to refresh display changing
|
||||||
|
MyEditItem.RefreshContent();
|
||||||
|
MyEditItem.SetAllTabs();
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
//private void txbxAltConActSumText_Leave(object sender, EventArgs e)
|
||||||
|
//{
|
||||||
|
// // User left Atlernate Continuous Action Text field. If text changed, then prompt
|
||||||
|
// // to see if save should occur.
|
||||||
|
// StepConfig sc = CurItemInfo.MyConfig as StepConfig;
|
||||||
|
// if (sc == null) return;
|
||||||
|
// bool bothEmpty = (sc.Step_AlternateContActSumText == null || sc.Step_AlternateContActSumText == "") && (txbxAltConActSumText.Text == null || txbxAltConActSumText.Text == "");
|
||||||
|
// if (!bothEmpty && sc.Step_AlternateContActSumText != txbxAltConActSumText.Text)
|
||||||
|
// {
|
||||||
|
// if (MessageBox.Show(this, "Do you want to save the Alternate Continuous Action Text?", "Confirm Save", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
|
||||||
|
// {
|
||||||
|
// MyEditItem.SaveContents();
|
||||||
|
// sc.Step_AlternateContActSumText = txbxAltConActSumText.Text; // this actually saves the config
|
||||||
|
// }
|
||||||
|
// else
|
||||||
|
// txbxAltConActSumText.Text = sc.Step_AlternateContActSumText;
|
||||||
|
// }
|
||||||
|
|
||||||
|
//}
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -28,488 +28,507 @@ namespace Volian.Controls.Library
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
private void InitializeComponent()
|
private void InitializeComponent()
|
||||||
{
|
{
|
||||||
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DisplayTransition));
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DisplayTransition));
|
||||||
this.groupPanelBtns = new DevComponents.DotNetBar.Controls.GroupPanel();
|
this.groupPanelBtns = new DevComponents.DotNetBar.Controls.GroupPanel();
|
||||||
this.cbPageNum = new DevComponents.DotNetBar.Controls.CheckBoxX();
|
this.cbHoldProcSet = new DevComponents.DotNetBar.Controls.CheckBoxX();
|
||||||
this.btnTranCancel = new DevComponents.DotNetBar.ButtonX();
|
this.cbPageNum = new DevComponents.DotNetBar.Controls.CheckBoxX();
|
||||||
this.btnTranSave = new DevComponents.DotNetBar.ButtonX();
|
this.btnTranCancel = new DevComponents.DotNetBar.ButtonX();
|
||||||
this.groupPanelTranFmt = new DevComponents.DotNetBar.Controls.GroupPanel();
|
this.btnTranSave = new DevComponents.DotNetBar.ButtonX();
|
||||||
this.listBoxTranFmt = new System.Windows.Forms.ListBox();
|
this.groupPanelTranFmt = new DevComponents.DotNetBar.Controls.GroupPanel();
|
||||||
this.groupPanelTransitionSets = new DevComponents.DotNetBar.Controls.GroupPanel();
|
this.listBoxTranFmt = new System.Windows.Forms.ListBox();
|
||||||
this.groupPanelTransitionProcs = new DevComponents.DotNetBar.Controls.GroupPanel();
|
this.groupPanelTransitionSets = new DevComponents.DotNetBar.Controls.GroupPanel();
|
||||||
this.cbTranProcs = new System.Windows.Forms.ComboBox();
|
this.vlnTreeComboSets = new Volian.Controls.Library.vlnTreeCombo();
|
||||||
this.groupPanelTransitionSect = new DevComponents.DotNetBar.Controls.GroupPanel();
|
this.groupPanelTransitionProcs = new DevComponents.DotNetBar.Controls.GroupPanel();
|
||||||
this.cbTranSects = new System.Windows.Forms.ComboBox();
|
this.cbTranProcs = new System.Windows.Forms.ComboBox();
|
||||||
this.groupPanelTranstionSteps = new DevComponents.DotNetBar.Controls.GroupPanel();
|
this.groupPanelTransitionSect = new DevComponents.DotNetBar.Controls.GroupPanel();
|
||||||
this.pnlTranStepBtns = new System.Windows.Forms.Panel();
|
this.cbTranSects = new System.Windows.Forms.ComboBox();
|
||||||
this.cbIncStepNum = new DevComponents.DotNetBar.Controls.CheckBoxX();
|
this.groupPanelTranstionSteps = new DevComponents.DotNetBar.Controls.GroupPanel();
|
||||||
this.lblxTranRangeTip = new DevComponents.DotNetBar.LabelX();
|
this.tvTran = new Volian.Controls.Library.vlnTreeView3();
|
||||||
this.btnTranRangeClear = new DevComponents.DotNetBar.ButtonX();
|
this.pnlTranStepBtns = new System.Windows.Forms.Panel();
|
||||||
this.btnUp1 = new DevComponents.DotNetBar.ButtonX();
|
this.cbIncStepNum = new DevComponents.DotNetBar.Controls.CheckBoxX();
|
||||||
this.superToolTipDispTran = new DevComponents.DotNetBar.SuperTooltip();
|
this.lblxTranRangeTip = new DevComponents.DotNetBar.LabelX();
|
||||||
this.tvTran = new Volian.Controls.Library.vlnTreeView3();
|
this.btnTranRangeClear = new DevComponents.DotNetBar.ButtonX();
|
||||||
this.vlnTreeComboSets = new Volian.Controls.Library.vlnTreeCombo();
|
this.btnUp1 = new DevComponents.DotNetBar.ButtonX();
|
||||||
this.groupPanelBtns.SuspendLayout();
|
this.superToolTipDispTran = new DevComponents.DotNetBar.SuperTooltip();
|
||||||
this.groupPanelTranFmt.SuspendLayout();
|
this.groupPanelBtns.SuspendLayout();
|
||||||
this.groupPanelTransitionSets.SuspendLayout();
|
this.groupPanelTranFmt.SuspendLayout();
|
||||||
this.groupPanelTransitionProcs.SuspendLayout();
|
this.groupPanelTransitionSets.SuspendLayout();
|
||||||
this.groupPanelTransitionSect.SuspendLayout();
|
this.groupPanelTransitionProcs.SuspendLayout();
|
||||||
this.groupPanelTranstionSteps.SuspendLayout();
|
this.groupPanelTransitionSect.SuspendLayout();
|
||||||
this.pnlTranStepBtns.SuspendLayout();
|
this.groupPanelTranstionSteps.SuspendLayout();
|
||||||
this.SuspendLayout();
|
this.pnlTranStepBtns.SuspendLayout();
|
||||||
//
|
this.SuspendLayout();
|
||||||
// groupPanelBtns
|
//
|
||||||
//
|
// groupPanelBtns
|
||||||
this.groupPanelBtns.CanvasColor = System.Drawing.SystemColors.Control;
|
//
|
||||||
this.groupPanelBtns.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
|
this.groupPanelBtns.CanvasColor = System.Drawing.SystemColors.Control;
|
||||||
this.groupPanelBtns.Controls.Add(this.cbPageNum);
|
this.groupPanelBtns.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
|
||||||
this.groupPanelBtns.Controls.Add(this.btnTranCancel);
|
this.groupPanelBtns.Controls.Add(this.cbHoldProcSet);
|
||||||
this.groupPanelBtns.Controls.Add(this.btnTranSave);
|
this.groupPanelBtns.Controls.Add(this.cbPageNum);
|
||||||
this.groupPanelBtns.DisabledBackColor = System.Drawing.Color.Empty;
|
this.groupPanelBtns.Controls.Add(this.btnTranCancel);
|
||||||
this.groupPanelBtns.Dock = System.Windows.Forms.DockStyle.Top;
|
this.groupPanelBtns.Controls.Add(this.btnTranSave);
|
||||||
this.groupPanelBtns.Location = new System.Drawing.Point(0, 0);
|
this.groupPanelBtns.DisabledBackColor = System.Drawing.Color.Empty;
|
||||||
this.groupPanelBtns.Name = "groupPanelBtns";
|
this.groupPanelBtns.Dock = System.Windows.Forms.DockStyle.Top;
|
||||||
this.groupPanelBtns.Size = new System.Drawing.Size(376, 58);
|
this.groupPanelBtns.Location = new System.Drawing.Point(0, 0);
|
||||||
//
|
this.groupPanelBtns.Name = "groupPanelBtns";
|
||||||
//
|
this.groupPanelBtns.Size = new System.Drawing.Size(376, 82);
|
||||||
//
|
//
|
||||||
this.groupPanelBtns.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
|
//
|
||||||
this.groupPanelBtns.Style.BackColorGradientAngle = 90;
|
//
|
||||||
this.groupPanelBtns.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
|
this.groupPanelBtns.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
|
||||||
this.groupPanelBtns.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
|
this.groupPanelBtns.Style.BackColorGradientAngle = 90;
|
||||||
this.groupPanelBtns.Style.BorderBottomWidth = 1;
|
this.groupPanelBtns.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
|
||||||
this.groupPanelBtns.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
|
this.groupPanelBtns.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
|
||||||
this.groupPanelBtns.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
|
this.groupPanelBtns.Style.BorderBottomWidth = 1;
|
||||||
this.groupPanelBtns.Style.BorderLeftWidth = 1;
|
this.groupPanelBtns.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
|
||||||
this.groupPanelBtns.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
|
this.groupPanelBtns.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
|
||||||
this.groupPanelBtns.Style.BorderRightWidth = 1;
|
this.groupPanelBtns.Style.BorderLeftWidth = 1;
|
||||||
this.groupPanelBtns.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
|
this.groupPanelBtns.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
|
||||||
this.groupPanelBtns.Style.BorderTopWidth = 1;
|
this.groupPanelBtns.Style.BorderRightWidth = 1;
|
||||||
this.groupPanelBtns.Style.CornerDiameter = 4;
|
this.groupPanelBtns.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
|
||||||
this.groupPanelBtns.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
|
this.groupPanelBtns.Style.BorderTopWidth = 1;
|
||||||
this.groupPanelBtns.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
|
this.groupPanelBtns.Style.CornerDiameter = 4;
|
||||||
this.groupPanelBtns.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
|
this.groupPanelBtns.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
|
||||||
this.groupPanelBtns.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
|
this.groupPanelBtns.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
|
||||||
//
|
this.groupPanelBtns.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
|
||||||
//
|
this.groupPanelBtns.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
|
||||||
//
|
//
|
||||||
this.groupPanelBtns.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
//
|
||||||
//
|
//
|
||||||
//
|
this.groupPanelBtns.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
||||||
//
|
//
|
||||||
this.groupPanelBtns.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
//
|
||||||
this.groupPanelBtns.TabIndex = 25;
|
//
|
||||||
//
|
this.groupPanelBtns.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
||||||
// cbPageNum
|
this.groupPanelBtns.TabIndex = 25;
|
||||||
//
|
//
|
||||||
this.cbPageNum.BackColor = System.Drawing.Color.Transparent;
|
// cbHoldProcSet
|
||||||
//
|
//
|
||||||
//
|
this.cbHoldProcSet.BackColor = System.Drawing.Color.Transparent;
|
||||||
//
|
//
|
||||||
this.cbPageNum.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
//
|
||||||
this.cbPageNum.Location = new System.Drawing.Point(0, 35);
|
//
|
||||||
this.cbPageNum.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
|
this.cbHoldProcSet.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
||||||
this.cbPageNum.Name = "cbPageNum";
|
this.cbHoldProcSet.Location = new System.Drawing.Point(0, 54);
|
||||||
this.cbPageNum.Size = new System.Drawing.Size(126, 15);
|
this.cbHoldProcSet.Margin = new System.Windows.Forms.Padding(2);
|
||||||
this.cbPageNum.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
|
this.cbHoldProcSet.Name = "cbHoldProcSet";
|
||||||
this.cbPageNum.TabIndex = 26;
|
this.cbHoldProcSet.Size = new System.Drawing.Size(214, 15);
|
||||||
this.cbPageNum.Text = "Include Page Number";
|
this.cbHoldProcSet.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
|
||||||
this.cbPageNum.CheckedChanged += new System.EventHandler(this.cbPageNum_CheckedChanged);
|
this.superToolTipDispTran.SetSuperTooltip(this.cbHoldProcSet, new DevComponents.DotNetBar.SuperTooltipInfo("", "", resources.GetString("cbHoldProcSet.SuperTooltip"), null, null, DevComponents.DotNetBar.eTooltipColor.Gray));
|
||||||
//
|
this.cbHoldProcSet.TabIndex = 27;
|
||||||
// btnTranCancel
|
this.cbHoldProcSet.Text = "Hold Procedure Set / Procedure";
|
||||||
//
|
this.cbHoldProcSet.CheckedChanged += new System.EventHandler(this.cbHoldProcSet_CheckedChanged);
|
||||||
this.btnTranCancel.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
|
//
|
||||||
this.btnTranCancel.AutoSize = true;
|
// cbPageNum
|
||||||
this.btnTranCancel.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
|
//
|
||||||
this.btnTranCancel.Dock = System.Windows.Forms.DockStyle.Right;
|
this.cbPageNum.BackColor = System.Drawing.Color.Transparent;
|
||||||
this.btnTranCancel.Location = new System.Drawing.Point(282, 0);
|
//
|
||||||
this.btnTranCancel.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
|
//
|
||||||
this.btnTranCancel.Name = "btnTranCancel";
|
//
|
||||||
this.btnTranCancel.Size = new System.Drawing.Size(88, 36);
|
this.cbPageNum.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
||||||
this.superToolTipDispTran.SetSuperTooltip(this.btnTranCancel, new DevComponents.DotNetBar.SuperTooltipInfo("", "", "This restores transition selections to the default if a transition would be inser" +
|
this.cbPageNum.Location = new System.Drawing.Point(0, 35);
|
||||||
|
this.cbPageNum.Margin = new System.Windows.Forms.Padding(2);
|
||||||
|
this.cbPageNum.Name = "cbPageNum";
|
||||||
|
this.cbPageNum.Size = new System.Drawing.Size(126, 15);
|
||||||
|
this.cbPageNum.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
|
||||||
|
this.cbPageNum.TabIndex = 26;
|
||||||
|
this.cbPageNum.Text = "Include Page Number";
|
||||||
|
this.cbPageNum.CheckedChanged += new System.EventHandler(this.cbPageNum_CheckedChanged);
|
||||||
|
//
|
||||||
|
// btnTranCancel
|
||||||
|
//
|
||||||
|
this.btnTranCancel.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
|
||||||
|
this.btnTranCancel.AutoSize = true;
|
||||||
|
this.btnTranCancel.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
|
||||||
|
this.btnTranCancel.Dock = System.Windows.Forms.DockStyle.Right;
|
||||||
|
this.btnTranCancel.Location = new System.Drawing.Point(282, 0);
|
||||||
|
this.btnTranCancel.Margin = new System.Windows.Forms.Padding(2);
|
||||||
|
this.btnTranCancel.Name = "btnTranCancel";
|
||||||
|
this.btnTranCancel.Size = new System.Drawing.Size(88, 36);
|
||||||
|
this.superToolTipDispTran.SetSuperTooltip(this.btnTranCancel, new DevComponents.DotNetBar.SuperTooltipInfo("", "", "This restores transition selections to the default if a transition would be inser" +
|
||||||
"ted, or the original transition if one had been selected.", null, null, DevComponents.DotNetBar.eTooltipColor.Gray));
|
"ted, or the original transition if one had been selected.", null, null, DevComponents.DotNetBar.eTooltipColor.Gray));
|
||||||
this.btnTranCancel.TabIndex = 25;
|
this.btnTranCancel.TabIndex = 25;
|
||||||
this.btnTranCancel.Text = "Cancel";
|
this.btnTranCancel.Text = "Cancel";
|
||||||
this.btnTranCancel.Click += new System.EventHandler(this.btnTranCancel_Click);
|
this.btnTranCancel.Click += new System.EventHandler(this.btnTranCancel_Click);
|
||||||
//
|
//
|
||||||
// btnTranSave
|
// btnTranSave
|
||||||
//
|
//
|
||||||
this.btnTranSave.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
|
this.btnTranSave.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
|
||||||
this.btnTranSave.AutoSize = true;
|
this.btnTranSave.AutoSize = true;
|
||||||
this.btnTranSave.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
|
this.btnTranSave.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
|
||||||
this.btnTranSave.Dock = System.Windows.Forms.DockStyle.Left;
|
this.btnTranSave.Dock = System.Windows.Forms.DockStyle.Left;
|
||||||
this.btnTranSave.Location = new System.Drawing.Point(0, 0);
|
this.btnTranSave.Location = new System.Drawing.Point(0, 0);
|
||||||
this.btnTranSave.Name = "btnTranSave";
|
this.btnTranSave.Name = "btnTranSave";
|
||||||
this.btnTranSave.Size = new System.Drawing.Size(103, 36);
|
this.btnTranSave.Size = new System.Drawing.Size(103, 36);
|
||||||
this.superToolTipDispTran.SetSuperTooltip(this.btnTranSave, new DevComponents.DotNetBar.SuperTooltipInfo("Save Transition", "", "- This will place the selected Transition at the cursor position.\r\n- This will re" +
|
this.superToolTipDispTran.SetSuperTooltip(this.btnTranSave, new DevComponents.DotNetBar.SuperTooltipInfo("Save Transition", "", "- This will place the selected Transition at the cursor position.\r\n- This will re" +
|
||||||
"place a Transition with the selected Transition.", null, null, DevComponents.DotNetBar.eTooltipColor.Gray));
|
"place a Transition with the selected Transition.", null, null, DevComponents.DotNetBar.eTooltipColor.Gray));
|
||||||
this.btnTranSave.TabIndex = 24;
|
this.btnTranSave.TabIndex = 24;
|
||||||
this.btnTranSave.Text = "Save Transition";
|
this.btnTranSave.Text = "Save Transition";
|
||||||
this.btnTranSave.Click += new System.EventHandler(this.btnTranSave_Click);
|
this.btnTranSave.Click += new System.EventHandler(this.btnTranSave_Click);
|
||||||
//
|
//
|
||||||
// groupPanelTranFmt
|
// groupPanelTranFmt
|
||||||
//
|
//
|
||||||
this.groupPanelTranFmt.CanvasColor = System.Drawing.SystemColors.Control;
|
this.groupPanelTranFmt.CanvasColor = System.Drawing.SystemColors.Control;
|
||||||
this.groupPanelTranFmt.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
|
this.groupPanelTranFmt.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
|
||||||
this.groupPanelTranFmt.Controls.Add(this.listBoxTranFmt);
|
this.groupPanelTranFmt.Controls.Add(this.listBoxTranFmt);
|
||||||
this.groupPanelTranFmt.DisabledBackColor = System.Drawing.Color.Empty;
|
this.groupPanelTranFmt.DisabledBackColor = System.Drawing.Color.Empty;
|
||||||
this.groupPanelTranFmt.Dock = System.Windows.Forms.DockStyle.Top;
|
this.groupPanelTranFmt.Dock = System.Windows.Forms.DockStyle.Top;
|
||||||
this.groupPanelTranFmt.Location = new System.Drawing.Point(0, 58);
|
this.groupPanelTranFmt.Location = new System.Drawing.Point(0, 82);
|
||||||
this.groupPanelTranFmt.Name = "groupPanelTranFmt";
|
this.groupPanelTranFmt.Name = "groupPanelTranFmt";
|
||||||
this.groupPanelTranFmt.Size = new System.Drawing.Size(376, 141);
|
this.groupPanelTranFmt.Size = new System.Drawing.Size(376, 141);
|
||||||
//
|
//
|
||||||
//
|
//
|
||||||
//
|
//
|
||||||
this.groupPanelTranFmt.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
|
this.groupPanelTranFmt.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
|
||||||
this.groupPanelTranFmt.Style.BackColorGradientAngle = 90;
|
this.groupPanelTranFmt.Style.BackColorGradientAngle = 90;
|
||||||
this.groupPanelTranFmt.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
|
this.groupPanelTranFmt.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
|
||||||
this.groupPanelTranFmt.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
|
this.groupPanelTranFmt.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
|
||||||
this.groupPanelTranFmt.Style.BorderBottomWidth = 1;
|
this.groupPanelTranFmt.Style.BorderBottomWidth = 1;
|
||||||
this.groupPanelTranFmt.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
|
this.groupPanelTranFmt.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
|
||||||
this.groupPanelTranFmt.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
|
this.groupPanelTranFmt.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
|
||||||
this.groupPanelTranFmt.Style.BorderLeftWidth = 1;
|
this.groupPanelTranFmt.Style.BorderLeftWidth = 1;
|
||||||
this.groupPanelTranFmt.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
|
this.groupPanelTranFmt.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
|
||||||
this.groupPanelTranFmt.Style.BorderRightWidth = 1;
|
this.groupPanelTranFmt.Style.BorderRightWidth = 1;
|
||||||
this.groupPanelTranFmt.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
|
this.groupPanelTranFmt.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
|
||||||
this.groupPanelTranFmt.Style.BorderTopWidth = 1;
|
this.groupPanelTranFmt.Style.BorderTopWidth = 1;
|
||||||
this.groupPanelTranFmt.Style.CornerDiameter = 4;
|
this.groupPanelTranFmt.Style.CornerDiameter = 4;
|
||||||
this.groupPanelTranFmt.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
|
this.groupPanelTranFmt.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
|
||||||
this.groupPanelTranFmt.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
|
this.groupPanelTranFmt.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
|
||||||
this.groupPanelTranFmt.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
|
this.groupPanelTranFmt.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
|
||||||
this.groupPanelTranFmt.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
|
this.groupPanelTranFmt.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
|
||||||
//
|
//
|
||||||
//
|
//
|
||||||
//
|
//
|
||||||
this.groupPanelTranFmt.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
this.groupPanelTranFmt.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
||||||
//
|
//
|
||||||
//
|
//
|
||||||
//
|
//
|
||||||
this.groupPanelTranFmt.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
this.groupPanelTranFmt.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
||||||
this.groupPanelTranFmt.TabIndex = 27;
|
this.groupPanelTranFmt.TabIndex = 27;
|
||||||
this.groupPanelTranFmt.Text = "Select Format";
|
this.groupPanelTranFmt.Text = "Select Format";
|
||||||
//
|
//
|
||||||
// listBoxTranFmt
|
// listBoxTranFmt
|
||||||
//
|
//
|
||||||
this.listBoxTranFmt.Dock = System.Windows.Forms.DockStyle.Fill;
|
this.listBoxTranFmt.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||||
this.listBoxTranFmt.FormattingEnabled = true;
|
this.listBoxTranFmt.FormattingEnabled = true;
|
||||||
this.listBoxTranFmt.HorizontalScrollbar = true;
|
this.listBoxTranFmt.HorizontalScrollbar = true;
|
||||||
this.listBoxTranFmt.Location = new System.Drawing.Point(0, 0);
|
this.listBoxTranFmt.Location = new System.Drawing.Point(0, 0);
|
||||||
this.listBoxTranFmt.Name = "listBoxTranFmt";
|
this.listBoxTranFmt.Name = "listBoxTranFmt";
|
||||||
this.listBoxTranFmt.Size = new System.Drawing.Size(370, 120);
|
this.listBoxTranFmt.Size = new System.Drawing.Size(370, 120);
|
||||||
this.superToolTipDispTran.SetSuperTooltip(this.listBoxTranFmt, new DevComponents.DotNetBar.SuperTooltipInfo("", "", "This is where transition types are selected. This also defines how the transitio" +
|
this.superToolTipDispTran.SetSuperTooltip(this.listBoxTranFmt, new DevComponents.DotNetBar.SuperTooltipInfo("", "", "This is where transition types are selected. This also defines how the transitio" +
|
||||||
"n will look in the text.", null, null, DevComponents.DotNetBar.eTooltipColor.Gray));
|
"n will look in the text.", null, null, DevComponents.DotNetBar.eTooltipColor.Gray));
|
||||||
this.listBoxTranFmt.TabIndex = 13;
|
this.listBoxTranFmt.TabIndex = 13;
|
||||||
this.listBoxTranFmt.SelectedIndexChanged += new System.EventHandler(this.listBoxTranFmt_Click);
|
this.listBoxTranFmt.SelectedIndexChanged += new System.EventHandler(this.listBoxTranFmt_Click);
|
||||||
//
|
//
|
||||||
// groupPanelTransitionSets
|
// groupPanelTransitionSets
|
||||||
//
|
//
|
||||||
this.groupPanelTransitionSets.CanvasColor = System.Drawing.SystemColors.Control;
|
this.groupPanelTransitionSets.CanvasColor = System.Drawing.SystemColors.Control;
|
||||||
this.groupPanelTransitionSets.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
|
this.groupPanelTransitionSets.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
|
||||||
this.groupPanelTransitionSets.Controls.Add(this.vlnTreeComboSets);
|
this.groupPanelTransitionSets.Controls.Add(this.vlnTreeComboSets);
|
||||||
this.groupPanelTransitionSets.DisabledBackColor = System.Drawing.Color.Empty;
|
this.groupPanelTransitionSets.DisabledBackColor = System.Drawing.Color.Empty;
|
||||||
this.groupPanelTransitionSets.Dock = System.Windows.Forms.DockStyle.Top;
|
this.groupPanelTransitionSets.Dock = System.Windows.Forms.DockStyle.Top;
|
||||||
this.groupPanelTransitionSets.Location = new System.Drawing.Point(0, 199);
|
this.groupPanelTransitionSets.Location = new System.Drawing.Point(0, 223);
|
||||||
this.groupPanelTransitionSets.Name = "groupPanelTransitionSets";
|
this.groupPanelTransitionSets.Name = "groupPanelTransitionSets";
|
||||||
this.groupPanelTransitionSets.Size = new System.Drawing.Size(376, 48);
|
this.groupPanelTransitionSets.Size = new System.Drawing.Size(376, 48);
|
||||||
//
|
//
|
||||||
//
|
//
|
||||||
//
|
//
|
||||||
this.groupPanelTransitionSets.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
|
this.groupPanelTransitionSets.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
|
||||||
this.groupPanelTransitionSets.Style.BackColorGradientAngle = 90;
|
this.groupPanelTransitionSets.Style.BackColorGradientAngle = 90;
|
||||||
this.groupPanelTransitionSets.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
|
this.groupPanelTransitionSets.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
|
||||||
this.groupPanelTransitionSets.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
|
this.groupPanelTransitionSets.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
|
||||||
this.groupPanelTransitionSets.Style.BorderBottomWidth = 1;
|
this.groupPanelTransitionSets.Style.BorderBottomWidth = 1;
|
||||||
this.groupPanelTransitionSets.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
|
this.groupPanelTransitionSets.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
|
||||||
this.groupPanelTransitionSets.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
|
this.groupPanelTransitionSets.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
|
||||||
this.groupPanelTransitionSets.Style.BorderLeftWidth = 1;
|
this.groupPanelTransitionSets.Style.BorderLeftWidth = 1;
|
||||||
this.groupPanelTransitionSets.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
|
this.groupPanelTransitionSets.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
|
||||||
this.groupPanelTransitionSets.Style.BorderRightWidth = 1;
|
this.groupPanelTransitionSets.Style.BorderRightWidth = 1;
|
||||||
this.groupPanelTransitionSets.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
|
this.groupPanelTransitionSets.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
|
||||||
this.groupPanelTransitionSets.Style.BorderTopWidth = 1;
|
this.groupPanelTransitionSets.Style.BorderTopWidth = 1;
|
||||||
this.groupPanelTransitionSets.Style.CornerDiameter = 4;
|
this.groupPanelTransitionSets.Style.CornerDiameter = 4;
|
||||||
this.groupPanelTransitionSets.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
|
this.groupPanelTransitionSets.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
|
||||||
this.groupPanelTransitionSets.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
|
this.groupPanelTransitionSets.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
|
||||||
this.groupPanelTransitionSets.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
|
this.groupPanelTransitionSets.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
|
||||||
this.groupPanelTransitionSets.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
|
this.groupPanelTransitionSets.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
|
||||||
//
|
//
|
||||||
//
|
//
|
||||||
//
|
//
|
||||||
this.groupPanelTransitionSets.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
this.groupPanelTransitionSets.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
||||||
//
|
//
|
||||||
//
|
//
|
||||||
//
|
//
|
||||||
this.groupPanelTransitionSets.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
this.groupPanelTransitionSets.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
||||||
this.groupPanelTransitionSets.TabIndex = 31;
|
this.groupPanelTransitionSets.TabIndex = 31;
|
||||||
this.groupPanelTransitionSets.Text = "Select Procedure Set";
|
this.groupPanelTransitionSets.Text = "Select Procedure Set";
|
||||||
//
|
//
|
||||||
// groupPanelTransitionProcs
|
// vlnTreeComboSets
|
||||||
//
|
//
|
||||||
this.groupPanelTransitionProcs.CanvasColor = System.Drawing.SystemColors.Control;
|
this.vlnTreeComboSets.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||||
this.groupPanelTransitionProcs.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
|
this.vlnTreeComboSets.Location = new System.Drawing.Point(0, 0);
|
||||||
this.groupPanelTransitionProcs.Controls.Add(this.cbTranProcs);
|
this.vlnTreeComboSets.Margin = new System.Windows.Forms.Padding(4);
|
||||||
this.groupPanelTransitionProcs.DisabledBackColor = System.Drawing.Color.Empty;
|
this.vlnTreeComboSets.Name = "vlnTreeComboSets";
|
||||||
this.groupPanelTransitionProcs.Dock = System.Windows.Forms.DockStyle.Top;
|
this.vlnTreeComboSets.Size = new System.Drawing.Size(370, 21);
|
||||||
this.groupPanelTransitionProcs.Location = new System.Drawing.Point(0, 247);
|
this.superToolTipDispTran.SetSuperTooltip(this.vlnTreeComboSets, new DevComponents.DotNetBar.SuperTooltipInfo("", "", resources.GetString("vlnTreeComboSets.SuperTooltip"), null, null, DevComponents.DotNetBar.eTooltipColor.Gray));
|
||||||
this.groupPanelTransitionProcs.Name = "groupPanelTransitionProcs";
|
this.vlnTreeComboSets.TabIndex = 33;
|
||||||
this.groupPanelTransitionProcs.Size = new System.Drawing.Size(376, 46);
|
this.vlnTreeComboSets.Value = null;
|
||||||
//
|
this.vlnTreeComboSets.FinishEditing += new AT.STO.UI.Win.DropDownValueChangedEventHandler(this.DropDown_FinishEditing);
|
||||||
//
|
//
|
||||||
//
|
// groupPanelTransitionProcs
|
||||||
this.groupPanelTransitionProcs.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
|
//
|
||||||
this.groupPanelTransitionProcs.Style.BackColorGradientAngle = 90;
|
this.groupPanelTransitionProcs.CanvasColor = System.Drawing.SystemColors.Control;
|
||||||
this.groupPanelTransitionProcs.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
|
this.groupPanelTransitionProcs.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
|
||||||
this.groupPanelTransitionProcs.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
|
this.groupPanelTransitionProcs.Controls.Add(this.cbTranProcs);
|
||||||
this.groupPanelTransitionProcs.Style.BorderBottomWidth = 1;
|
this.groupPanelTransitionProcs.DisabledBackColor = System.Drawing.Color.Empty;
|
||||||
this.groupPanelTransitionProcs.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
|
this.groupPanelTransitionProcs.Dock = System.Windows.Forms.DockStyle.Top;
|
||||||
this.groupPanelTransitionProcs.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
|
this.groupPanelTransitionProcs.Location = new System.Drawing.Point(0, 271);
|
||||||
this.groupPanelTransitionProcs.Style.BorderLeftWidth = 1;
|
this.groupPanelTransitionProcs.Name = "groupPanelTransitionProcs";
|
||||||
this.groupPanelTransitionProcs.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
|
this.groupPanelTransitionProcs.Size = new System.Drawing.Size(376, 46);
|
||||||
this.groupPanelTransitionProcs.Style.BorderRightWidth = 1;
|
//
|
||||||
this.groupPanelTransitionProcs.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
|
//
|
||||||
this.groupPanelTransitionProcs.Style.BorderTopWidth = 1;
|
//
|
||||||
this.groupPanelTransitionProcs.Style.CornerDiameter = 4;
|
this.groupPanelTransitionProcs.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
|
||||||
this.groupPanelTransitionProcs.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
|
this.groupPanelTransitionProcs.Style.BackColorGradientAngle = 90;
|
||||||
this.groupPanelTransitionProcs.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
|
this.groupPanelTransitionProcs.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
|
||||||
this.groupPanelTransitionProcs.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
|
this.groupPanelTransitionProcs.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
|
||||||
this.groupPanelTransitionProcs.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
|
this.groupPanelTransitionProcs.Style.BorderBottomWidth = 1;
|
||||||
//
|
this.groupPanelTransitionProcs.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
|
||||||
//
|
this.groupPanelTransitionProcs.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
|
||||||
//
|
this.groupPanelTransitionProcs.Style.BorderLeftWidth = 1;
|
||||||
this.groupPanelTransitionProcs.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
this.groupPanelTransitionProcs.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
|
||||||
//
|
this.groupPanelTransitionProcs.Style.BorderRightWidth = 1;
|
||||||
//
|
this.groupPanelTransitionProcs.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
|
||||||
//
|
this.groupPanelTransitionProcs.Style.BorderTopWidth = 1;
|
||||||
this.groupPanelTransitionProcs.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
this.groupPanelTransitionProcs.Style.CornerDiameter = 4;
|
||||||
this.groupPanelTransitionProcs.TabIndex = 32;
|
this.groupPanelTransitionProcs.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
|
||||||
this.groupPanelTransitionProcs.Text = "Select Procedure";
|
this.groupPanelTransitionProcs.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
|
||||||
//
|
this.groupPanelTransitionProcs.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
|
||||||
// cbTranProcs
|
this.groupPanelTransitionProcs.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
|
||||||
//
|
//
|
||||||
this.cbTranProcs.Dock = System.Windows.Forms.DockStyle.Fill;
|
//
|
||||||
this.cbTranProcs.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
//
|
||||||
this.cbTranProcs.FormattingEnabled = true;
|
this.groupPanelTransitionProcs.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
||||||
this.cbTranProcs.Location = new System.Drawing.Point(0, 0);
|
//
|
||||||
this.cbTranProcs.Name = "cbTranProcs";
|
//
|
||||||
this.cbTranProcs.Size = new System.Drawing.Size(370, 21);
|
//
|
||||||
this.superToolTipDispTran.SetSuperTooltip(this.cbTranProcs, new DevComponents.DotNetBar.SuperTooltipInfo("", "", resources.GetString("cbTranProcs.SuperTooltip"), null, null, DevComponents.DotNetBar.eTooltipColor.Gray));
|
this.groupPanelTransitionProcs.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
||||||
this.cbTranProcs.TabIndex = 14;
|
this.groupPanelTransitionProcs.TabIndex = 32;
|
||||||
this.cbTranProcs.SelectedIndexChanged += new System.EventHandler(this.cbTranProcs_SelectedIndexChanged);
|
this.groupPanelTransitionProcs.Text = "Select Procedure";
|
||||||
//
|
//
|
||||||
// groupPanelTransitionSect
|
// cbTranProcs
|
||||||
//
|
//
|
||||||
this.groupPanelTransitionSect.CanvasColor = System.Drawing.SystemColors.Control;
|
this.cbTranProcs.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||||
this.groupPanelTransitionSect.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
|
this.cbTranProcs.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
||||||
this.groupPanelTransitionSect.Controls.Add(this.cbTranSects);
|
this.cbTranProcs.FormattingEnabled = true;
|
||||||
this.groupPanelTransitionSect.DisabledBackColor = System.Drawing.Color.Empty;
|
this.cbTranProcs.Location = new System.Drawing.Point(0, 0);
|
||||||
this.groupPanelTransitionSect.Dock = System.Windows.Forms.DockStyle.Top;
|
this.cbTranProcs.Name = "cbTranProcs";
|
||||||
this.groupPanelTransitionSect.Location = new System.Drawing.Point(0, 293);
|
this.cbTranProcs.Size = new System.Drawing.Size(370, 21);
|
||||||
this.groupPanelTransitionSect.Name = "groupPanelTransitionSect";
|
this.superToolTipDispTran.SetSuperTooltip(this.cbTranProcs, new DevComponents.DotNetBar.SuperTooltipInfo("", "", resources.GetString("cbTranProcs.SuperTooltip"), null, null, DevComponents.DotNetBar.eTooltipColor.Gray));
|
||||||
this.groupPanelTransitionSect.Size = new System.Drawing.Size(376, 49);
|
this.cbTranProcs.TabIndex = 14;
|
||||||
//
|
this.cbTranProcs.SelectedIndexChanged += new System.EventHandler(this.cbTranProcs_SelectedIndexChanged);
|
||||||
//
|
//
|
||||||
//
|
// groupPanelTransitionSect
|
||||||
this.groupPanelTransitionSect.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
|
//
|
||||||
this.groupPanelTransitionSect.Style.BackColorGradientAngle = 90;
|
this.groupPanelTransitionSect.CanvasColor = System.Drawing.SystemColors.Control;
|
||||||
this.groupPanelTransitionSect.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
|
this.groupPanelTransitionSect.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
|
||||||
this.groupPanelTransitionSect.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
|
this.groupPanelTransitionSect.Controls.Add(this.cbTranSects);
|
||||||
this.groupPanelTransitionSect.Style.BorderBottomWidth = 1;
|
this.groupPanelTransitionSect.DisabledBackColor = System.Drawing.Color.Empty;
|
||||||
this.groupPanelTransitionSect.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
|
this.groupPanelTransitionSect.Dock = System.Windows.Forms.DockStyle.Top;
|
||||||
this.groupPanelTransitionSect.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
|
this.groupPanelTransitionSect.Location = new System.Drawing.Point(0, 317);
|
||||||
this.groupPanelTransitionSect.Style.BorderLeftWidth = 1;
|
this.groupPanelTransitionSect.Name = "groupPanelTransitionSect";
|
||||||
this.groupPanelTransitionSect.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
|
this.groupPanelTransitionSect.Size = new System.Drawing.Size(376, 49);
|
||||||
this.groupPanelTransitionSect.Style.BorderRightWidth = 1;
|
//
|
||||||
this.groupPanelTransitionSect.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
|
//
|
||||||
this.groupPanelTransitionSect.Style.BorderTopWidth = 1;
|
//
|
||||||
this.groupPanelTransitionSect.Style.CornerDiameter = 4;
|
this.groupPanelTransitionSect.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
|
||||||
this.groupPanelTransitionSect.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
|
this.groupPanelTransitionSect.Style.BackColorGradientAngle = 90;
|
||||||
this.groupPanelTransitionSect.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
|
this.groupPanelTransitionSect.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
|
||||||
this.groupPanelTransitionSect.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
|
this.groupPanelTransitionSect.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
|
||||||
this.groupPanelTransitionSect.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
|
this.groupPanelTransitionSect.Style.BorderBottomWidth = 1;
|
||||||
//
|
this.groupPanelTransitionSect.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
|
||||||
//
|
this.groupPanelTransitionSect.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
|
||||||
//
|
this.groupPanelTransitionSect.Style.BorderLeftWidth = 1;
|
||||||
this.groupPanelTransitionSect.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
this.groupPanelTransitionSect.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
|
||||||
//
|
this.groupPanelTransitionSect.Style.BorderRightWidth = 1;
|
||||||
//
|
this.groupPanelTransitionSect.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
|
||||||
//
|
this.groupPanelTransitionSect.Style.BorderTopWidth = 1;
|
||||||
this.groupPanelTransitionSect.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
this.groupPanelTransitionSect.Style.CornerDiameter = 4;
|
||||||
this.groupPanelTransitionSect.TabIndex = 33;
|
this.groupPanelTransitionSect.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
|
||||||
this.groupPanelTransitionSect.Text = "Select Section";
|
this.groupPanelTransitionSect.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
|
||||||
//
|
this.groupPanelTransitionSect.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
|
||||||
// cbTranSects
|
this.groupPanelTransitionSect.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
|
||||||
//
|
//
|
||||||
this.cbTranSects.Dock = System.Windows.Forms.DockStyle.Fill;
|
//
|
||||||
this.cbTranSects.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
//
|
||||||
this.cbTranSects.FormattingEnabled = true;
|
this.groupPanelTransitionSect.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
||||||
this.cbTranSects.Location = new System.Drawing.Point(0, 0);
|
//
|
||||||
this.cbTranSects.Name = "cbTranSects";
|
//
|
||||||
this.cbTranSects.Size = new System.Drawing.Size(370, 21);
|
//
|
||||||
this.superToolTipDispTran.SetSuperTooltip(this.cbTranSects, new DevComponents.DotNetBar.SuperTooltipInfo("", "", resources.GetString("cbTranSects.SuperTooltip"), null, null, DevComponents.DotNetBar.eTooltipColor.Gray));
|
this.groupPanelTransitionSect.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
||||||
this.cbTranSects.TabIndex = 20;
|
this.groupPanelTransitionSect.TabIndex = 33;
|
||||||
this.cbTranSects.SelectedIndexChanged += new System.EventHandler(this.cbTranSects_SelectedIndexChanged);
|
this.groupPanelTransitionSect.Text = "Select Section";
|
||||||
this.cbTranSects.Click += new System.EventHandler(this.cbTranSects_SelectedIndexChanged);
|
//
|
||||||
//
|
// cbTranSects
|
||||||
// groupPanelTranstionSteps
|
//
|
||||||
//
|
this.cbTranSects.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||||
this.groupPanelTranstionSteps.CanvasColor = System.Drawing.SystemColors.Control;
|
this.cbTranSects.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
||||||
this.groupPanelTranstionSteps.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
|
this.cbTranSects.FormattingEnabled = true;
|
||||||
this.groupPanelTranstionSteps.Controls.Add(this.tvTran);
|
this.cbTranSects.Location = new System.Drawing.Point(0, 0);
|
||||||
this.groupPanelTranstionSteps.Controls.Add(this.pnlTranStepBtns);
|
this.cbTranSects.Name = "cbTranSects";
|
||||||
this.groupPanelTranstionSteps.DisabledBackColor = System.Drawing.Color.Empty;
|
this.cbTranSects.Size = new System.Drawing.Size(370, 21);
|
||||||
this.groupPanelTranstionSteps.Dock = System.Windows.Forms.DockStyle.Fill;
|
this.superToolTipDispTran.SetSuperTooltip(this.cbTranSects, new DevComponents.DotNetBar.SuperTooltipInfo("", "", resources.GetString("cbTranSects.SuperTooltip"), null, null, DevComponents.DotNetBar.eTooltipColor.Gray));
|
||||||
this.groupPanelTranstionSteps.Location = new System.Drawing.Point(0, 342);
|
this.cbTranSects.TabIndex = 20;
|
||||||
this.groupPanelTranstionSteps.Name = "groupPanelTranstionSteps";
|
this.cbTranSects.SelectedIndexChanged += new System.EventHandler(this.cbTranSects_SelectedIndexChanged);
|
||||||
this.groupPanelTranstionSteps.Size = new System.Drawing.Size(376, 334);
|
this.cbTranSects.Click += new System.EventHandler(this.cbTranSects_SelectedIndexChanged);
|
||||||
//
|
//
|
||||||
//
|
// groupPanelTranstionSteps
|
||||||
//
|
//
|
||||||
this.groupPanelTranstionSteps.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
|
this.groupPanelTranstionSteps.CanvasColor = System.Drawing.SystemColors.Control;
|
||||||
this.groupPanelTranstionSteps.Style.BackColorGradientAngle = 90;
|
this.groupPanelTranstionSteps.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
|
||||||
this.groupPanelTranstionSteps.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
|
this.groupPanelTranstionSteps.Controls.Add(this.tvTran);
|
||||||
this.groupPanelTranstionSteps.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
|
this.groupPanelTranstionSteps.Controls.Add(this.pnlTranStepBtns);
|
||||||
this.groupPanelTranstionSteps.Style.BorderBottomWidth = 1;
|
this.groupPanelTranstionSteps.DisabledBackColor = System.Drawing.Color.Empty;
|
||||||
this.groupPanelTranstionSteps.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
|
this.groupPanelTranstionSteps.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||||
this.groupPanelTranstionSteps.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
|
this.groupPanelTranstionSteps.Location = new System.Drawing.Point(0, 366);
|
||||||
this.groupPanelTranstionSteps.Style.BorderLeftWidth = 1;
|
this.groupPanelTranstionSteps.Name = "groupPanelTranstionSteps";
|
||||||
this.groupPanelTranstionSteps.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
|
this.groupPanelTranstionSteps.Size = new System.Drawing.Size(376, 310);
|
||||||
this.groupPanelTranstionSteps.Style.BorderRightWidth = 1;
|
//
|
||||||
this.groupPanelTranstionSteps.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
|
//
|
||||||
this.groupPanelTranstionSteps.Style.BorderTopWidth = 1;
|
//
|
||||||
this.groupPanelTranstionSteps.Style.CornerDiameter = 4;
|
this.groupPanelTranstionSteps.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
|
||||||
this.groupPanelTranstionSteps.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
|
this.groupPanelTranstionSteps.Style.BackColorGradientAngle = 90;
|
||||||
this.groupPanelTranstionSteps.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
|
this.groupPanelTranstionSteps.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
|
||||||
this.groupPanelTranstionSteps.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
|
this.groupPanelTranstionSteps.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
|
||||||
this.groupPanelTranstionSteps.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
|
this.groupPanelTranstionSteps.Style.BorderBottomWidth = 1;
|
||||||
//
|
this.groupPanelTranstionSteps.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
|
||||||
//
|
this.groupPanelTranstionSteps.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
|
||||||
//
|
this.groupPanelTranstionSteps.Style.BorderLeftWidth = 1;
|
||||||
this.groupPanelTranstionSteps.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
this.groupPanelTranstionSteps.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
|
||||||
//
|
this.groupPanelTranstionSteps.Style.BorderRightWidth = 1;
|
||||||
//
|
this.groupPanelTranstionSteps.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
|
||||||
//
|
this.groupPanelTranstionSteps.Style.BorderTopWidth = 1;
|
||||||
this.groupPanelTranstionSteps.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
this.groupPanelTranstionSteps.Style.CornerDiameter = 4;
|
||||||
this.groupPanelTranstionSteps.TabIndex = 34;
|
this.groupPanelTranstionSteps.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
|
||||||
this.groupPanelTranstionSteps.Text = "Select Step";
|
this.groupPanelTranstionSteps.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
|
||||||
//
|
this.groupPanelTranstionSteps.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
|
||||||
// pnlTranStepBtns
|
this.groupPanelTranstionSteps.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
|
||||||
//
|
//
|
||||||
this.pnlTranStepBtns.Controls.Add(this.cbIncStepNum);
|
//
|
||||||
this.pnlTranStepBtns.Controls.Add(this.lblxTranRangeTip);
|
//
|
||||||
this.pnlTranStepBtns.Controls.Add(this.btnTranRangeClear);
|
this.groupPanelTranstionSteps.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
||||||
this.pnlTranStepBtns.Controls.Add(this.btnUp1);
|
//
|
||||||
this.pnlTranStepBtns.Dock = System.Windows.Forms.DockStyle.Top;
|
//
|
||||||
this.pnlTranStepBtns.Location = new System.Drawing.Point(0, 0);
|
//
|
||||||
this.pnlTranStepBtns.Name = "pnlTranStepBtns";
|
this.groupPanelTranstionSteps.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
||||||
this.pnlTranStepBtns.Size = new System.Drawing.Size(370, 46);
|
this.groupPanelTranstionSteps.TabIndex = 34;
|
||||||
this.pnlTranStepBtns.TabIndex = 30;
|
this.groupPanelTranstionSteps.Text = "Select Step";
|
||||||
//
|
//
|
||||||
// cbIncStepNum
|
// tvTran
|
||||||
//
|
//
|
||||||
//
|
this.tvTran.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||||
//
|
this.tvTran.HideSelection = false;
|
||||||
//
|
this.tvTran.Location = new System.Drawing.Point(0, 46);
|
||||||
this.cbIncStepNum.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
this.tvTran.Name = "tvTran";
|
||||||
this.cbIncStepNum.Location = new System.Drawing.Point(8, 12);
|
this.tvTran.Size = new System.Drawing.Size(370, 243);
|
||||||
this.cbIncStepNum.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
|
this.superToolTipDispTran.SetSuperTooltip(this.tvTran, new DevComponents.DotNetBar.SuperTooltipInfo("", "", resources.GetString("tvTran.SuperTooltip"), null, null, DevComponents.DotNetBar.eTooltipColor.Gray));
|
||||||
this.cbIncStepNum.Name = "cbIncStepNum";
|
this.tvTran.TabIndex = 31;
|
||||||
this.cbIncStepNum.Size = new System.Drawing.Size(126, 19);
|
this.tvTran.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.tvTran_AfterSelect);
|
||||||
this.cbIncStepNum.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
|
//
|
||||||
this.cbIncStepNum.TabIndex = 0;
|
// pnlTranStepBtns
|
||||||
this.cbIncStepNum.Text = "Include Step Number";
|
//
|
||||||
this.cbIncStepNum.CheckedChanged += new System.EventHandler(this.cbIncStepNum_CheckedChanged);
|
this.pnlTranStepBtns.Controls.Add(this.cbIncStepNum);
|
||||||
//
|
this.pnlTranStepBtns.Controls.Add(this.lblxTranRangeTip);
|
||||||
// lblxTranRangeTip
|
this.pnlTranStepBtns.Controls.Add(this.btnTranRangeClear);
|
||||||
//
|
this.pnlTranStepBtns.Controls.Add(this.btnUp1);
|
||||||
//
|
this.pnlTranStepBtns.Dock = System.Windows.Forms.DockStyle.Top;
|
||||||
//
|
this.pnlTranStepBtns.Location = new System.Drawing.Point(0, 0);
|
||||||
//
|
this.pnlTranStepBtns.Name = "pnlTranStepBtns";
|
||||||
this.lblxTranRangeTip.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
this.pnlTranStepBtns.Size = new System.Drawing.Size(370, 46);
|
||||||
this.lblxTranRangeTip.Dock = System.Windows.Forms.DockStyle.Right;
|
this.pnlTranStepBtns.TabIndex = 30;
|
||||||
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(265, 0);
|
// cbIncStepNum
|
||||||
this.lblxTranRangeTip.Name = "lblxTranRangeTip";
|
//
|
||||||
this.lblxTranRangeTip.Size = new System.Drawing.Size(105, 46);
|
//
|
||||||
this.superToolTipDispTran.SetSuperTooltip(this.lblxTranRangeTip, new DevComponents.DotNetBar.SuperTooltipInfo("", "", "For range transitions, shows which selection, first or second, that the next sele" +
|
//
|
||||||
|
//
|
||||||
|
this.cbIncStepNum.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
||||||
|
this.cbIncStepNum.Location = new System.Drawing.Point(8, 12);
|
||||||
|
this.cbIncStepNum.Margin = new System.Windows.Forms.Padding(2);
|
||||||
|
this.cbIncStepNum.Name = "cbIncStepNum";
|
||||||
|
this.cbIncStepNum.Size = new System.Drawing.Size(126, 19);
|
||||||
|
this.cbIncStepNum.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
|
||||||
|
this.cbIncStepNum.TabIndex = 0;
|
||||||
|
this.cbIncStepNum.Text = "Include Step Number";
|
||||||
|
this.cbIncStepNum.CheckedChanged += new System.EventHandler(this.cbIncStepNum_CheckedChanged);
|
||||||
|
//
|
||||||
|
// lblxTranRangeTip
|
||||||
|
//
|
||||||
|
//
|
||||||
|
//
|
||||||
|
//
|
||||||
|
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(265, 0);
|
||||||
|
this.lblxTranRangeTip.Name = "lblxTranRangeTip";
|
||||||
|
this.lblxTranRangeTip.Size = new System.Drawing.Size(105, 46);
|
||||||
|
this.superToolTipDispTran.SetSuperTooltip(this.lblxTranRangeTip, new DevComponents.DotNetBar.SuperTooltipInfo("", "", "For range transitions, shows which selection, first or second, that the next sele" +
|
||||||
"ction will be.", null, null, DevComponents.DotNetBar.eTooltipColor.Gray));
|
"ction will be.", null, null, DevComponents.DotNetBar.eTooltipColor.Gray));
|
||||||
this.lblxTranRangeTip.TabIndex = 33;
|
this.lblxTranRangeTip.TabIndex = 33;
|
||||||
this.lblxTranRangeTip.Text = "Select First \r\nTransition\r\nfor Range";
|
this.lblxTranRangeTip.Text = "Select First \r\nTransition\r\nfor Range";
|
||||||
//
|
//
|
||||||
// btnTranRangeClear
|
// btnTranRangeClear
|
||||||
//
|
//
|
||||||
this.btnTranRangeClear.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
|
this.btnTranRangeClear.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
|
||||||
this.btnTranRangeClear.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
|
this.btnTranRangeClear.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
|
||||||
this.btnTranRangeClear.Dock = System.Windows.Forms.DockStyle.Left;
|
this.btnTranRangeClear.Dock = System.Windows.Forms.DockStyle.Left;
|
||||||
this.btnTranRangeClear.Location = new System.Drawing.Point(0, 0);
|
this.btnTranRangeClear.Location = new System.Drawing.Point(0, 0);
|
||||||
this.btnTranRangeClear.Name = "btnTranRangeClear";
|
this.btnTranRangeClear.Name = "btnTranRangeClear";
|
||||||
this.btnTranRangeClear.Size = new System.Drawing.Size(58, 46);
|
this.btnTranRangeClear.Size = new System.Drawing.Size(58, 46);
|
||||||
this.superToolTipDispTran.SetSuperTooltip(this.btnTranRangeClear, new DevComponents.DotNetBar.SuperTooltipInfo("", "", "This clears the Range selection in the tree view", null, null, DevComponents.DotNetBar.eTooltipColor.Gray));
|
this.superToolTipDispTran.SetSuperTooltip(this.btnTranRangeClear, new DevComponents.DotNetBar.SuperTooltipInfo("", "", "This clears the Range selection in the tree view", null, null, DevComponents.DotNetBar.eTooltipColor.Gray));
|
||||||
this.btnTranRangeClear.TabIndex = 31;
|
this.btnTranRangeClear.TabIndex = 31;
|
||||||
this.btnTranRangeClear.Text = "Clear Range Selection";
|
this.btnTranRangeClear.Text = "Clear Range Selection";
|
||||||
this.btnTranRangeClear.Click += new System.EventHandler(this.btnTranRangeClear_Click);
|
this.btnTranRangeClear.Click += new System.EventHandler(this.btnTranRangeClear_Click);
|
||||||
//
|
//
|
||||||
// btnUp1
|
// btnUp1
|
||||||
//
|
//
|
||||||
this.btnUp1.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
|
this.btnUp1.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
|
||||||
this.btnUp1.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
|
this.btnUp1.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
|
||||||
this.btnUp1.Image = global::Volian.Controls.Library.Properties.Resources.GoToParentFolderHS;
|
this.btnUp1.Image = global::Volian.Controls.Library.Properties.Resources.GoToParentFolderHS;
|
||||||
this.btnUp1.Location = new System.Drawing.Point(210, 0);
|
this.btnUp1.Location = new System.Drawing.Point(210, 0);
|
||||||
this.btnUp1.Name = "btnUp1";
|
this.btnUp1.Name = "btnUp1";
|
||||||
this.btnUp1.Size = new System.Drawing.Size(43, 46);
|
this.btnUp1.Size = new System.Drawing.Size(43, 46);
|
||||||
this.superToolTipDispTran.SetSuperTooltip(this.btnUp1, new DevComponents.DotNetBar.SuperTooltipInfo("", "", "This will display the tree for selecting the transition one level higher than cur" +
|
this.superToolTipDispTran.SetSuperTooltip(this.btnUp1, new DevComponents.DotNetBar.SuperTooltipInfo("", "", "This will display the tree for selecting the transition one level higher than cur" +
|
||||||
"rently shown. If already showing High Level Steps, this button has no effect.", null, null, DevComponents.DotNetBar.eTooltipColor.Gray));
|
"rently shown. If already showing High Level Steps, this button has no effect.", null, null, DevComponents.DotNetBar.eTooltipColor.Gray));
|
||||||
this.btnUp1.TabIndex = 30;
|
this.btnUp1.TabIndex = 30;
|
||||||
this.btnUp1.Visible = false;
|
this.btnUp1.Visible = false;
|
||||||
//
|
//
|
||||||
// superToolTipDispTran
|
// superToolTipDispTran
|
||||||
//
|
//
|
||||||
this.superToolTipDispTran.DefaultTooltipSettings = new DevComponents.DotNetBar.SuperTooltipInfo("", "", "", null, null, DevComponents.DotNetBar.eTooltipColor.Gray);
|
this.superToolTipDispTran.DefaultTooltipSettings = new DevComponents.DotNetBar.SuperTooltipInfo("", "", "", null, null, DevComponents.DotNetBar.eTooltipColor.Gray);
|
||||||
this.superToolTipDispTran.LicenseKey = "F962CEC7-CD8F-4911-A9E9-CAB39962FC1F";
|
this.superToolTipDispTran.LicenseKey = "F962CEC7-CD8F-4911-A9E9-CAB39962FC1F";
|
||||||
//
|
//
|
||||||
// tvTran
|
// DisplayTransition
|
||||||
//
|
//
|
||||||
this.tvTran.Dock = System.Windows.Forms.DockStyle.Fill;
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||||||
this.tvTran.HideSelection = false;
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||||
this.tvTran.Location = new System.Drawing.Point(0, 46);
|
this.Controls.Add(this.groupPanelTranstionSteps);
|
||||||
this.tvTran.Name = "tvTran";
|
this.Controls.Add(this.groupPanelTransitionSect);
|
||||||
this.tvTran.Size = new System.Drawing.Size(370, 267);
|
this.Controls.Add(this.groupPanelTransitionProcs);
|
||||||
this.superToolTipDispTran.SetSuperTooltip(this.tvTran, new DevComponents.DotNetBar.SuperTooltipInfo("", "", resources.GetString("tvTran.SuperTooltip"), null, null, DevComponents.DotNetBar.eTooltipColor.Gray));
|
this.Controls.Add(this.groupPanelTransitionSets);
|
||||||
this.tvTran.TabIndex = 31;
|
this.Controls.Add(this.groupPanelTranFmt);
|
||||||
this.tvTran.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.tvTran_AfterSelect);
|
this.Controls.Add(this.groupPanelBtns);
|
||||||
//
|
this.Margin = new System.Windows.Forms.Padding(2);
|
||||||
// vlnTreeComboSets
|
this.Name = "DisplayTransition";
|
||||||
//
|
this.Size = new System.Drawing.Size(376, 676);
|
||||||
this.vlnTreeComboSets.Dock = System.Windows.Forms.DockStyle.Fill;
|
this.groupPanelBtns.ResumeLayout(false);
|
||||||
this.vlnTreeComboSets.Location = new System.Drawing.Point(0, 0);
|
this.groupPanelBtns.PerformLayout();
|
||||||
this.vlnTreeComboSets.Margin = new System.Windows.Forms.Padding(4);
|
this.groupPanelTranFmt.ResumeLayout(false);
|
||||||
this.vlnTreeComboSets.Name = "vlnTreeComboSets";
|
this.groupPanelTransitionSets.ResumeLayout(false);
|
||||||
this.vlnTreeComboSets.Size = new System.Drawing.Size(370, 21);
|
this.groupPanelTransitionProcs.ResumeLayout(false);
|
||||||
this.superToolTipDispTran.SetSuperTooltip(this.vlnTreeComboSets, new DevComponents.DotNetBar.SuperTooltipInfo("", "", resources.GetString("vlnTreeComboSets.SuperTooltip"), null, null, DevComponents.DotNetBar.eTooltipColor.Gray));
|
this.groupPanelTransitionSect.ResumeLayout(false);
|
||||||
this.vlnTreeComboSets.TabIndex = 33;
|
this.groupPanelTranstionSteps.ResumeLayout(false);
|
||||||
this.vlnTreeComboSets.Value = null;
|
this.pnlTranStepBtns.ResumeLayout(false);
|
||||||
this.vlnTreeComboSets.FinishEditing += new AT.STO.UI.Win.DropDownValueChangedEventHandler(this.DropDown_FinishEditing);
|
this.ResumeLayout(false);
|
||||||
//
|
|
||||||
// DisplayTransition
|
|
||||||
//
|
|
||||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
||||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
||||||
this.Controls.Add(this.groupPanelTranstionSteps);
|
|
||||||
this.Controls.Add(this.groupPanelTransitionSect);
|
|
||||||
this.Controls.Add(this.groupPanelTransitionProcs);
|
|
||||||
this.Controls.Add(this.groupPanelTransitionSets);
|
|
||||||
this.Controls.Add(this.groupPanelTranFmt);
|
|
||||||
this.Controls.Add(this.groupPanelBtns);
|
|
||||||
this.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
|
|
||||||
this.Name = "DisplayTransition";
|
|
||||||
this.Size = new System.Drawing.Size(376, 676);
|
|
||||||
this.groupPanelBtns.ResumeLayout(false);
|
|
||||||
this.groupPanelBtns.PerformLayout();
|
|
||||||
this.groupPanelTranFmt.ResumeLayout(false);
|
|
||||||
this.groupPanelTransitionSets.ResumeLayout(false);
|
|
||||||
this.groupPanelTransitionProcs.ResumeLayout(false);
|
|
||||||
this.groupPanelTransitionSect.ResumeLayout(false);
|
|
||||||
this.groupPanelTranstionSteps.ResumeLayout(false);
|
|
||||||
this.pnlTranStepBtns.ResumeLayout(false);
|
|
||||||
this.ResumeLayout(false);
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -535,5 +554,6 @@ namespace Volian.Controls.Library
|
|||||||
private DevComponents.DotNetBar.SuperTooltip superToolTipDispTran;
|
private DevComponents.DotNetBar.SuperTooltip superToolTipDispTran;
|
||||||
private DevComponents.DotNetBar.Controls.CheckBoxX cbIncStepNum;
|
private DevComponents.DotNetBar.Controls.CheckBoxX cbIncStepNum;
|
||||||
private DevComponents.DotNetBar.Controls.CheckBoxX cbPageNum;
|
private DevComponents.DotNetBar.Controls.CheckBoxX cbPageNum;
|
||||||
}
|
private DevComponents.DotNetBar.Controls.CheckBoxX cbHoldProcSet;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -27,7 +27,31 @@ namespace Volian.Controls.Library
|
|||||||
set
|
set
|
||||||
{
|
{
|
||||||
if (DesignMode || !Visible) return; // B2019-043 need to check if we are just saving changes to the user interface
|
if (DesignMode || !Visible) return; // B2019-043 need to check if we are just saving changes to the user interface
|
||||||
if (value == null) // Insert a transition
|
//CSM-C2024-026 Evaluate the transitions panel
|
||||||
|
//Create a way to keep it from reverting the transition display panel to the currently selected item/transition.
|
||||||
|
//HeldLinkText will store if a transition was manually selected
|
||||||
|
//to override defaulting the listboxes to the current step / selected transition
|
||||||
|
if (HeldLinkText != "" && value != null)
|
||||||
|
{
|
||||||
|
//handle case where is held text and click on an already existing transition so cannot save one on top of the other.
|
||||||
|
_CurTrans = value;
|
||||||
|
btnTranSave.Enabled = false;
|
||||||
|
btnTranCancel.Enabled = true;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
else if (HeldLinkText != "" && MyRTB.MyItemInfo.ActiveFormat.Name == HeldLink_CurItemFrom.ActiveFormat.Name)
|
||||||
|
{
|
||||||
|
//this else if will handle case of defaulting to held transition instead of what has been clicked on
|
||||||
|
//Note that if format is not the same, it will ignore the held item
|
||||||
|
//This is because if different format, then options / selections may be different so will need to refresh the lists
|
||||||
|
if (_CurTrans == value && _CurItemFrom == HeldLink_CurItemFrom) return;
|
||||||
|
_CurItemFrom = HeldLink_CurItemFrom;
|
||||||
|
_TranFmtIndx = HeldLink_TranFmtIndx;
|
||||||
|
bool isenh = MyRTB != null && HeldLink_CurItemFrom != null && HeldLink_CurItemFrom.IsEnhancedStep;
|
||||||
|
btnTranSave.Enabled = !isenh && UserInfo.CanEdit(MyUserInfo, Mydvi) && (value == null); //Can Insert Transitions
|
||||||
|
btnTranCancel.Enabled = true;
|
||||||
|
}
|
||||||
|
else if (value == null) // Insert a transition
|
||||||
{
|
{
|
||||||
if (MyRTB == null) return;
|
if (MyRTB == null) return;
|
||||||
if (_CurTrans == value && _CurItemFrom == MyRTB.MyItemInfo) return;
|
if (_CurTrans == value && _CurItemFrom == MyRTB.MyItemInfo) return;
|
||||||
@ -115,19 +139,13 @@ namespace Volian.Controls.Library
|
|||||||
_MyRTB.LinkChanged += new StepRTBLinkEvent(_MyRTB_LinkChanged);
|
_MyRTB.LinkChanged += new StepRTBLinkEvent(_MyRTB_LinkChanged);
|
||||||
if (_MyRTB.MyLinkText == null)
|
if (_MyRTB.MyLinkText == null)
|
||||||
{
|
{
|
||||||
CurTrans = null;
|
CurTrans = null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
void _MyRTB_LinkChanged(object sender, StepPanelLinkEventArgs args)
|
void _MyRTB_LinkChanged(object sender, StepPanelLinkEventArgs args)
|
||||||
{
|
{
|
||||||
//if (_MyRTB.MyLinkText == null)
|
CurTrans = args.MyLinkText.MyTransitionInfo;
|
||||||
// CurTrans = null;
|
|
||||||
//else
|
|
||||||
//{
|
|
||||||
// StepPanelLinkEventArgs tmp = new StepPanelLinkEventArgs(null, e);
|
|
||||||
CurTrans = args.MyLinkText.MyTransitionInfo;
|
|
||||||
//}
|
|
||||||
}
|
}
|
||||||
private ItemInfo _CurrentItemProcedure; // the selected item's procedure
|
private ItemInfo _CurrentItemProcedure; // the selected item's procedure
|
||||||
private ItemInfo _CurrentToProcedure; // the 'to' location's procedure (may be same as _CurrentItemProcedure)
|
private ItemInfo _CurrentToProcedure; // the 'to' location's procedure (may be same as _CurrentItemProcedure)
|
||||||
@ -138,6 +156,12 @@ namespace Volian.Controls.Library
|
|||||||
private Color _OrigGroupPanelProcs;
|
private Color _OrigGroupPanelProcs;
|
||||||
private Color _OrigGroupPanelSects;
|
private Color _OrigGroupPanelSects;
|
||||||
private Color _OrigGroupPanelSteps;
|
private Color _OrigGroupPanelSteps;
|
||||||
|
//CSM-C2024-026 Evaluate the transitions panel
|
||||||
|
//Create a way to keep it from reverting the transition display panel to the currently selected item/transition.
|
||||||
|
public string HeldLinkText { get; protected set; } = ""; //will hold link text to stay on
|
||||||
|
public int HeldLink_TranFmtIndx { get; protected set; } = 0; //this will hold transition format that was selected on held item
|
||||||
|
public ItemInfo HeldLink_CurItemFrom { get; protected set; } //this will hold item that transitioning from
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
#region Constructors
|
#region Constructors
|
||||||
public DisplayTransition()
|
public DisplayTransition()
|
||||||
@ -237,7 +261,7 @@ namespace Volian.Controls.Library
|
|||||||
if (selitm != null && selitm.MyContent.Type >= 20000)
|
if (selitm != null && selitm.MyContent.Type >= 20000)
|
||||||
{
|
{
|
||||||
|
|
||||||
if (_DoingRange)
|
if (_DoingRange && CurTrans != null)
|
||||||
{
|
{
|
||||||
tvInitHiliteRange(); //rangeSameLevel, stpitm, rngitm, (i1 < i2) ? i2 : i1);
|
tvInitHiliteRange(); //rangeSameLevel, stpitm, rngitm, (i1 < i2) ? i2 : i1);
|
||||||
}
|
}
|
||||||
@ -938,6 +962,17 @@ namespace Volian.Controls.Library
|
|||||||
}
|
}
|
||||||
_InitializingTrans = false;
|
_InitializingTrans = false;
|
||||||
SaveCancelEnabling();
|
SaveCancelEnabling();
|
||||||
|
|
||||||
|
//CSM-C2024-026 Evaluate the transitions panel
|
||||||
|
//Create a way to keep it from reverting the transition display panel to the currently selected item/transition.
|
||||||
|
//If checkbox is checked to enable holding an item,
|
||||||
|
//then store the first step in the currently selected item
|
||||||
|
if (cbHoldProcSet.Checked && secitm.Steps != null && secitm.Steps.Count > 0)
|
||||||
|
{
|
||||||
|
HeldLinkText = string.Format("#Link:Transition:{0} <NewID> {1}", listBoxTranFmt.SelectedIndex, secitm.Steps[0].ItemID);
|
||||||
|
HeldLink_TranFmtIndx = listBoxTranFmt.SelectedIndex;
|
||||||
|
HeldLink_CurItemFrom = secitm.Steps[0];
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// B2024-016 Hide the step tree when the transition definition does not include a step number {First Step}
|
// B2024-016 Hide the step tree when the transition definition does not include a step number {First Step}
|
||||||
@ -1089,6 +1124,18 @@ namespace Volian.Controls.Library
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
SaveCancelEnabling();
|
SaveCancelEnabling();
|
||||||
|
|
||||||
|
//CSM-C2024-026 Evaluate the transitions panel
|
||||||
|
//Create a way to keep it from reverting the transition display panel to the currently selected item/transition.
|
||||||
|
//If checkbox is checked to enable holding an item,
|
||||||
|
//then store the currently selected item
|
||||||
|
if (cbHoldProcSet.Checked)
|
||||||
|
{
|
||||||
|
HeldLinkText = string.Format("#Link:Transition:{0} <NewID> {1}", listBoxTranFmt.SelectedIndex, selii.ItemID);
|
||||||
|
HeldLink_TranFmtIndx = listBoxTranFmt.SelectedIndex;
|
||||||
|
HeldLink_CurItemFrom = selii;
|
||||||
|
}
|
||||||
|
|
||||||
if (_DoingRange)
|
if (_DoingRange)
|
||||||
{
|
{
|
||||||
if (_RangeNode1 == null || (_RangeNode1 != null && _RangeNode2 != null))
|
if (_RangeNode1 == null || (_RangeNode1 != null && _RangeNode2 != null))
|
||||||
@ -1370,6 +1417,13 @@ namespace Volian.Controls.Library
|
|||||||
_MyLog.InfoFormat("ItemID {0}, LinkText '{1}'", MyRTB.MyItemInfo.ItemID, linkText);
|
_MyLog.InfoFormat("ItemID {0}, LinkText '{1}'", MyRTB.MyItemInfo.ItemID, linkText);
|
||||||
int sel = MyRTB.SelectionStart + MyRTB.SelectionLength;
|
int sel = MyRTB.SelectionStart + MyRTB.SelectionLength;
|
||||||
MyRTB.Select(sel, 0);// Move cursor to end of LINK
|
MyRTB.Select(sel, 0);// Move cursor to end of LINK
|
||||||
|
|
||||||
|
//CSM-C2024-026 Evaluate the transitions panel
|
||||||
|
//Create a way to keep it from reverting the transition display panel to the currently selected item/transition.
|
||||||
|
//After save a transition, set the Linktext / tab to go back to the held transition
|
||||||
|
//if none then this will refresh it to the currently selected item as it did before this csm
|
||||||
|
MyRTB.MyLinkText = HeldLinkText;
|
||||||
|
|
||||||
MyRTB.Focus();
|
MyRTB.Focus();
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
@ -1489,8 +1543,34 @@ namespace Volian.Controls.Library
|
|||||||
btnTranSave.Enabled = UserInfo.CanEdit(MyUserInfo, Mydvi); //Can Insert Transitons
|
btnTranSave.Enabled = UserInfo.CanEdit(MyUserInfo, Mydvi); //Can Insert Transitons
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
public class TransItem
|
//CSM-C2024-026 Evaluate the transitions panel
|
||||||
|
//Create a way to keep it from reverting the transition display panel to the currently selected item/transition.
|
||||||
|
//If checkbox is checked to enable holding an item,
|
||||||
|
//then store the currently selected item
|
||||||
|
//if checkbox becomes unchecked then clear item.
|
||||||
|
private void cbHoldProcSet_CheckedChanged(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
if (cbHoldProcSet.Checked)
|
||||||
|
{
|
||||||
|
VETreeNode vt = tvTran.SelectedNode as VETreeNode;
|
||||||
|
ItemInfo selii = vt.VEObject as ItemInfo;
|
||||||
|
if (selii != null)
|
||||||
|
{
|
||||||
|
HeldLinkText = string.Format("#Link:Transition:{0} <NewID> {1}", listBoxTranFmt.SelectedIndex, selii.ItemID);
|
||||||
|
HeldLink_TranFmtIndx = listBoxTranFmt.SelectedIndex;
|
||||||
|
HeldLink_CurItemFrom = selii;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
HeldLinkText = "";
|
||||||
|
HeldLink_CurItemFrom = null;
|
||||||
|
HeldLink_TranFmtIndx = 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
public class TransItem
|
||||||
{
|
{
|
||||||
private string _ItemDescription;
|
private string _ItemDescription;
|
||||||
|
|
||||||
|
@ -112,14 +112,21 @@
|
|||||||
<value>2.0</value>
|
<value>2.0</value>
|
||||||
</resheader>
|
</resheader>
|
||||||
<resheader name="reader">
|
<resheader name="reader">
|
||||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
</resheader>
|
</resheader>
|
||||||
<resheader name="writer">
|
<resheader name="writer">
|
||||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
</resheader>
|
</resheader>
|
||||||
<metadata name="superToolTipDispTran.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
<metadata name="superToolTipDispTran.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
<value>17, 17</value>
|
<value>17, 17</value>
|
||||||
</metadata>
|
</metadata>
|
||||||
|
<data name="cbHoldProcSet.SuperTooltip" xml:space="preserve">
|
||||||
|
<value>By default, PROMS will load the Procedure Set/Procedure in this window for the step (or transition link within a step) that is selected with the mouse.
|
||||||
|
|
||||||
|
Selecting this checkbox temporarily disables that behavior so that clicking on various steps within the procedure will not move away from the Procedure Set/Procedure that has currently been selected in these windows.
|
||||||
|
|
||||||
|
Note: One exception to this is if you navigate to a Procedure set that has a different format. In that case, it will refresh these options based on that new format.</value>
|
||||||
|
</data>
|
||||||
<data name="vlnTreeComboSets.SuperTooltip" xml:space="preserve">
|
<data name="vlnTreeComboSets.SuperTooltip" xml:space="preserve">
|
||||||
<value>This allows you to select the procedure set that the transition points to, if the selected transition format allows for the transition to point to another set. If the format does NOT allow for pointing to another set, a selection will not be available.</value>
|
<value>This allows you to select the procedure set that the transition points to, if the selected transition format allows for the transition to point to another set. If the format does NOT allow for pointing to another set, a selection will not be available.</value>
|
||||||
</data>
|
</data>
|
||||||
|
@ -279,18 +279,24 @@ namespace Volian.Controls.Library
|
|||||||
//
|
//
|
||||||
// btnCmCut
|
// btnCmCut
|
||||||
//
|
//
|
||||||
|
this.btnCmCut.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
|
||||||
|
this.btnCmCut.Image = global::Volian.Controls.Library.Properties.Resources.Cut_Image;
|
||||||
this.btnCmCut.Name = "btnCmCut";
|
this.btnCmCut.Name = "btnCmCut";
|
||||||
this.btnCmCut.Text = "Cut";
|
this.btnCmCut.Text = "Cut";
|
||||||
this.btnCmCut.Click += new System.EventHandler(this.btnCmCut_Click);
|
this.btnCmCut.Click += new System.EventHandler(this.btnCmCut_Click);
|
||||||
//
|
//
|
||||||
// btnCmCopy
|
// btnCmCopy
|
||||||
//
|
//
|
||||||
|
this.btnCmCopy.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
|
||||||
|
this.btnCmCopy.Image = global::Volian.Controls.Library.Properties.Resources.Copy_Image;
|
||||||
this.btnCmCopy.Name = "btnCmCopy";
|
this.btnCmCopy.Name = "btnCmCopy";
|
||||||
this.btnCmCopy.Text = "Copy";
|
this.btnCmCopy.Text = "Copy";
|
||||||
this.btnCmCopy.Click += new System.EventHandler(this.btnCmCopy_Click);
|
this.btnCmCopy.Click += new System.EventHandler(this.btnCmCopy_Click);
|
||||||
//
|
//
|
||||||
// btnCmPaste
|
// btnCmPaste
|
||||||
//
|
//
|
||||||
|
this.btnCmPaste.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
|
||||||
|
this.btnCmPaste.Image = global::Volian.Controls.Library.Properties.Resources.PasteSmall_Image;
|
||||||
this.btnCmPaste.Name = "btnCmPaste";
|
this.btnCmPaste.Name = "btnCmPaste";
|
||||||
this.btnCmPaste.Text = "Paste";
|
this.btnCmPaste.Text = "Paste";
|
||||||
this.btnCmPaste.Click += new System.EventHandler(this.btnCmPaste_Click);
|
this.btnCmPaste.Click += new System.EventHandler(this.btnCmPaste_Click);
|
||||||
@ -305,12 +311,16 @@ namespace Volian.Controls.Library
|
|||||||
//
|
//
|
||||||
// btnCmHardSp
|
// btnCmHardSp
|
||||||
//
|
//
|
||||||
|
this.btnCmHardSp.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
|
||||||
|
this.btnCmHardSp.Image = global::Volian.Controls.Library.Properties.Resources.HardSpace_Image;
|
||||||
this.btnCmHardSp.Name = "btnCmHardSp";
|
this.btnCmHardSp.Name = "btnCmHardSp";
|
||||||
this.btnCmHardSp.Text = "Hard Space";
|
this.btnCmHardSp.Text = "Hard Space";
|
||||||
this.btnCmHardSp.Click += new System.EventHandler(this.btnCmHardSp_Click);
|
this.btnCmHardSp.Click += new System.EventHandler(this.btnCmHardSp_Click);
|
||||||
//
|
//
|
||||||
// btnCmSymbol
|
// btnCmSymbol
|
||||||
//
|
//
|
||||||
|
this.btnCmSymbol.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
|
||||||
|
this.btnCmSymbol.Image = global::Volian.Controls.Library.Properties.Resources.Symbol_Image;
|
||||||
this.btnCmSymbol.Name = "btnCmSymbol";
|
this.btnCmSymbol.Name = "btnCmSymbol";
|
||||||
this.btnCmSymbol.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
|
this.btnCmSymbol.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
|
||||||
this.galSymbols});
|
this.galSymbols});
|
||||||
@ -566,9 +576,9 @@ namespace Volian.Controls.Library
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
private DevComponents.DotNetBar.ButtonX btnReplace;
|
private DevComponents.DotNetBar.ButtonX btnReplace;
|
||||||
private DevComponents.DotNetBar.ButtonX btnFndRplDone;
|
private DevComponents.DotNetBar.ButtonX btnFndRplDone;
|
||||||
private DevComponents.DotNetBar.ButtonX btnFindNext;
|
private DevComponents.DotNetBar.ButtonX btnFindNext;
|
||||||
private DevComponents.DotNetBar.Controls.ComboBoxEx cmboReplaceText;
|
private DevComponents.DotNetBar.Controls.ComboBoxEx cmboReplaceText;
|
||||||
|
@ -30,7 +30,8 @@ namespace Volian.Controls.Library
|
|||||||
//We need to check to see if the current database has been updated with the necessary changes
|
//We need to check to see if the current database has been updated with the necessary changes
|
||||||
//to the folder configuration value. If so then build the list of available to be returned
|
//to the folder configuration value. If so then build the list of available to be returned
|
||||||
//to the calling code
|
//to the calling code
|
||||||
if (fList == null)
|
// added check for a list count of zero. Was getting null error from data gotten from customer
|
||||||
|
if (fList == null || fList.Count == 0)
|
||||||
{
|
{
|
||||||
_MyLog.InfoFormat("Filtered format list not available: Database update needed for config value of top folder record");
|
_MyLog.InfoFormat("Filtered format list not available: Database update needed for config value of top folder record");
|
||||||
return RawList;
|
return RawList;
|
||||||
|
@ -1376,7 +1376,9 @@ namespace Volian.Controls.Library
|
|||||||
public static String GetDefaultKeyValue(String key)
|
public static String GetDefaultKeyValue(String key)
|
||||||
{
|
{
|
||||||
object xxx = null;
|
object xxx = null;
|
||||||
return Registry.GetValue(key, "", xxx).ToString();
|
// fixed null reference error - appeared only while debugged - for user was handled via Try/Catch and ignored
|
||||||
|
object gtval = Registry.GetValue(key, "", xxx);
|
||||||
|
return (string)((gtval != null) ? gtval.ToString() : gtval);
|
||||||
}
|
}
|
||||||
private EditItem FindStepAfter(string types, int contenttype)
|
private EditItem FindStepAfter(string types, int contenttype)
|
||||||
{
|
{
|
||||||
@ -1985,6 +1987,9 @@ namespace Volian.Controls.Library
|
|||||||
case "Cont. Act\r\nSummary":
|
case "Cont. Act\r\nSummary":
|
||||||
btnCASCreate_Click(sender, e);
|
btnCASCreate_Click(sender, e);
|
||||||
break;
|
break;
|
||||||
|
case "Time Crit\r\nSummary":
|
||||||
|
btnTCASCreate_Click(sender, e);
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
MyItemInfo.MyProcedure.ProcedureConfig.SelectedSlave = 0; // unselect the unit (child)
|
MyItemInfo.MyProcedure.ProcedureConfig.SelectedSlave = 0; // unselect the unit (child)
|
||||||
}
|
}
|
||||||
@ -1999,6 +2004,9 @@ namespace Volian.Controls.Library
|
|||||||
btnCASCreate.SubItems.Clear();
|
btnCASCreate.SubItems.Clear();
|
||||||
btnCASCreate.Tag = null;
|
btnCASCreate.Tag = null;
|
||||||
btnCASCreate.Click -= new System.EventHandler(btnCASCreate_Click);
|
btnCASCreate.Click -= new System.EventHandler(btnCASCreate_Click);
|
||||||
|
btnTCASCreate.SubItems.Clear();
|
||||||
|
btnTCASCreate.Tag = null;
|
||||||
|
btnTCASCreate.Click -= new System.EventHandler(btnTCASCreate_Click);
|
||||||
btnReviewCreatePDF.SubItems.Clear();
|
btnReviewCreatePDF.SubItems.Clear();
|
||||||
btnReviewCreatePDF.Tag = null;
|
btnReviewCreatePDF.Tag = null;
|
||||||
btnReviewCreatePDF.Click -= new System.EventHandler(btnPdfCreate_Click);
|
btnReviewCreatePDF.Click -= new System.EventHandler(btnPdfCreate_Click);
|
||||||
@ -2025,6 +2033,9 @@ namespace Volian.Controls.Library
|
|||||||
btnCASCreate.SubItems.Add(btn);
|
btnCASCreate.SubItems.Add(btn);
|
||||||
btn = MakeSubMenuButton(s, k, miMultiUnit_Click);
|
btn = MakeSubMenuButton(s, k, miMultiUnit_Click);
|
||||||
btn.Enabled = procAppl;
|
btn.Enabled = procAppl;
|
||||||
|
btnTCASCreate.SubItems.Add(btn);
|
||||||
|
btn = MakeSubMenuButton(s, k, miMultiUnit_Click);
|
||||||
|
btn.Enabled = procAppl;
|
||||||
btnReviewPdfQuickCreate.SubItems.Add(btn);
|
btnReviewPdfQuickCreate.SubItems.Add(btn);
|
||||||
}
|
}
|
||||||
btnPdfCreate.AutoExpandOnClick = true;
|
btnPdfCreate.AutoExpandOnClick = true;
|
||||||
@ -2032,6 +2043,7 @@ namespace Volian.Controls.Library
|
|||||||
btnReviewCreatePDF.AutoExpandOnClick = true;
|
btnReviewCreatePDF.AutoExpandOnClick = true;
|
||||||
btnReviewPdfQuickCreate.AutoExpandOnClick = true;
|
btnReviewPdfQuickCreate.AutoExpandOnClick = true;
|
||||||
btnCASCreate.AutoExpandOnClick = true;
|
btnCASCreate.AutoExpandOnClick = true;
|
||||||
|
btnTCASCreate.AutoExpandOnClick = true;
|
||||||
}
|
}
|
||||||
private DevComponents.DotNetBar.ButtonItem MakeSubMenuButton(string s, object tag, EventHandler ehandler)
|
private DevComponents.DotNetBar.ButtonItem MakeSubMenuButton(string s, object tag, EventHandler ehandler)
|
||||||
{
|
{
|
||||||
@ -3122,7 +3134,13 @@ namespace Volian.Controls.Library
|
|||||||
// a referenced object, bring up ReferencedObject Editor (for now, just put up a message box.
|
// a referenced object, bring up ReferencedObject Editor (for now, just put up a message box.
|
||||||
if (_MyStepRTB.MyLinkText != null && _MyStepRTB.MyLinkText.IndexOf("Transition") > -1)
|
if (_MyStepRTB.MyLinkText != null && _MyStepRTB.MyLinkText.IndexOf("Transition") > -1)
|
||||||
{
|
{
|
||||||
_MyEditItem.MyStepPanel.OnLinkClicked(sender, new StepPanelLinkEventArgs(_MyStepRTB.MyLinkText));
|
// B2021-094 fix for <Shift><Ctrl><G> key stroke for GoTo Transition or RO link
|
||||||
|
// Needed to clear the selection of the link or it will be used the next time
|
||||||
|
// <Shift><Ctrl><G> is used
|
||||||
|
string lnkText = _MyStepRTB.MyLinkText; // save the transition link information
|
||||||
|
_MyStepRTB.SetSelection(0, 0); // Clear the selection of the transition link
|
||||||
|
// note _MyStepRTB.DeselectAll() did not work all the time
|
||||||
|
_MyEditItem.MyStepPanel.OnLinkClicked(sender, new StepPanelLinkEventArgs(lnkText));
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@ -3145,7 +3163,12 @@ namespace Volian.Controls.Library
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
LinkText lt = new LinkText(_MyStepRTB.MyLinkText);
|
LinkText lt = new LinkText(_MyStepRTB.MyLinkText); // save the RO link information
|
||||||
|
// B2021-094 fix for <Shift><Ctrl><G> key stroke for GoTo Transition or RO link
|
||||||
|
// Needed to clear the selection of the link or it will be used the next time
|
||||||
|
// <Shift><Ctrl><G> is used
|
||||||
|
_MyStepRTB.SetSelection(0, 0); // clear the selection of the RO link
|
||||||
|
// note _MyStepRTB.DeselectAll() did not work all the time
|
||||||
//B2023-104 If we could not get the MyRoUsageInfo then we have a bad RO Link. Tell user to re-link the RO
|
//B2023-104 If we could not get the MyRoUsageInfo then we have a bad RO Link. Tell user to re-link the RO
|
||||||
if (lt.MyRoUsageInfo != null)
|
if (lt.MyRoUsageInfo != null)
|
||||||
{
|
{
|
||||||
@ -3785,7 +3808,7 @@ namespace Volian.Controls.Library
|
|||||||
ProcedureInfo.RefreshTransitions(MyItemInfo.MyProcedure as ProcedureInfo);
|
ProcedureInfo.RefreshTransitions(MyItemInfo.MyProcedure as ProcedureInfo);
|
||||||
this.Cursor = Cursors.Default;
|
this.Cursor = Cursors.Default;
|
||||||
// B2018-002 - Invalid Transitions - Display Transition Refresh Statistics
|
// B2018-002 - Invalid Transitions - Display Transition Refresh Statistics
|
||||||
FlexibleMessageBox.Show(this, string.Format("Checked {0} transitions, modified {1} transitions, converted to text {2} transitions", ProcedureInfo.TranCheckCount, ProcedureInfo.TranFixCount, ProcedureInfo.TranConvertCount), "Results of Refresh Transitions", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
FlexibleMessageBox.Show(this, string.Format("Checked {0} transitions, modified {1} transitions, converted to text {2} transitions, {3} transitions unable to be fixed (Annotation: Bad Transition Link)", ProcedureInfo.TranCheckCount, ProcedureInfo.TranFixCount, ProcedureInfo.TranConvertCount, ProcedureInfo.TranCantFixCount), "Results of Refresh Transitions", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
||||||
}
|
}
|
||||||
private void btnRefObjRefresh_Click(object sender, System.EventArgs e)
|
private void btnRefObjRefresh_Click(object sender, System.EventArgs e)
|
||||||
{
|
{
|
||||||
|
@ -1074,7 +1074,9 @@ namespace Volian.Print.Library
|
|||||||
|
|
||||||
string lastProcNum = string.Empty;
|
string lastProcNum = string.Empty;
|
||||||
string lastSection = string.Empty;
|
string lastSection = string.Empty;
|
||||||
string lastDVPath = string.Empty;
|
//CSM B2021-043 Step numbering is out of order in RO usage report if RO values exist on steps 10 or higher.
|
||||||
|
//setting this to something other than empty - otherwise will not print first initial header
|
||||||
|
string lastDVPath = "start";
|
||||||
if (_ResultList.Count > 0)
|
if (_ResultList.Count > 0)
|
||||||
{
|
{
|
||||||
foreach (ItemInfo item in _ResultList)
|
foreach (ItemInfo item in _ResultList)
|
||||||
@ -1088,6 +1090,12 @@ namespace Volian.Print.Library
|
|||||||
// procedure set title at the top of the report (once).
|
// procedure set title at the top of the report (once).
|
||||||
if (lastDVPath != "" && lastDVPath != item.SearchDVPath)
|
if (lastDVPath != "" && lastDVPath != item.SearchDVPath)
|
||||||
{
|
{
|
||||||
|
//CSM B2021-043 Step numbering is out of order in RO usage report if RO values exist on steps 10 or higher.
|
||||||
|
//was placing last item from the precious section in the new section
|
||||||
|
//place it before starting the new section and then clear items
|
||||||
|
PutROusageForProcedure(datatable, roUse, headerwidths);
|
||||||
|
roUse.Clear();
|
||||||
|
|
||||||
subTable = new PdfPTable(headerwidths);
|
subTable = new PdfPTable(headerwidths);
|
||||||
AddMainPathGroup(datatable, item.SearchDVPath, splitAt, f2, Color.LIGHT_GRAY, 0);
|
AddMainPathGroup(datatable, item.SearchDVPath, splitAt, f2, Color.LIGHT_GRAY, 0);
|
||||||
lastProcNum = string.Empty;
|
lastProcNum = string.Empty;
|
||||||
@ -1138,7 +1146,7 @@ namespace Volian.Print.Library
|
|||||||
document.Add(datatable);
|
document.Add(datatable);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void AddProcROUse(ItemInfo item, SortedDictionary<string, List<ItemInfo>> procRoUse)
|
private void AddProcROUse(ItemInfo item, Dictionary<string, List<ItemInfo>> procRoUse)
|
||||||
{
|
{
|
||||||
string dictKey = GetCurProcNum(item.SearchPath) + " " + GetCurSectionNumTitle(item);
|
string dictKey = GetCurProcNum(item.SearchPath) + " " + GetCurSectionNumTitle(item);
|
||||||
|
|
||||||
@ -1157,7 +1165,7 @@ namespace Volian.Print.Library
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void PutStepListForProcedure(PdfPTable rotable, SortedDictionary<string, ItemInfo> sortedStepList)
|
private void PutStepListForProcedure(PdfPTable rotable, Dictionary<string, ItemInfo> sortedStepList)
|
||||||
{
|
{
|
||||||
// C2017-036 get best available proportional font for symbols that looks close to Arial
|
// C2017-036 get best available proportional font for symbols that looks close to Arial
|
||||||
// Note that Microsoft no longer supplies Arial Unicode MS as of Word16
|
// Note that Microsoft no longer supplies Arial Unicode MS as of Word16
|
||||||
@ -1173,13 +1181,13 @@ namespace Volian.Print.Library
|
|||||||
sortedStepList.Clear();
|
sortedStepList.Clear();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void PutROusageForROID(PdfPTable curTable, SortedDictionary<string, List<ItemInfo>> procRoUse, float[] headerwidths, int splitAt, bool moreThanOneProcSet)
|
private void PutROusageForROID(PdfPTable curTable, Dictionary<string, List<ItemInfo>> procRoUse, float[] headerwidths, int splitAt, bool moreThanOneProcSet)
|
||||||
{
|
{
|
||||||
// C2017-036 get best available proportional font for symbols that looks close to Arial
|
// C2017-036 get best available proportional font for symbols that looks close to Arial
|
||||||
// Note that Microsoft no longer supplies Arial Unicode MS as of Word16
|
// Note that Microsoft no longer supplies Arial Unicode MS as of Word16
|
||||||
iTextSharp.text.Font f2 = pdf.GetFont(Volian.Base.Library.vlnFont.ReportsFont, 10, 0, Color.BLACK);
|
iTextSharp.text.Font f2 = pdf.GetFont(Volian.Base.Library.vlnFont.ReportsFont, 10, 0, Color.BLACK);
|
||||||
|
|
||||||
SortedDictionary<string, ItemInfo> sortedStepList = new SortedDictionary<string, ItemInfo>();
|
Dictionary<string, ItemInfo> sortedStepList = new Dictionary<string, ItemInfo>();
|
||||||
string lastProcKey = string.Empty;
|
string lastProcKey = string.Empty;
|
||||||
string lastProcNumTitle = string.Empty;
|
string lastProcNumTitle = string.Empty;
|
||||||
string lastDVPath = string.Empty;
|
string lastDVPath = string.Empty;
|
||||||
@ -1293,7 +1301,7 @@ namespace Volian.Print.Library
|
|||||||
|
|
||||||
private void BuildROUsageTableByRO(iTextSharp.text.Document document)
|
private void BuildROUsageTableByRO(iTextSharp.text.Document document)
|
||||||
{
|
{
|
||||||
SortedDictionary<string, List<ItemInfo>> procRoUse = new SortedDictionary<string, List<ItemInfo>>();
|
Dictionary<string, List<ItemInfo>> procRoUse = new Dictionary<string, List<ItemInfo>>();
|
||||||
|
|
||||||
float[] headerwidths = { 20, 80 };
|
float[] headerwidths = { 20, 80 };
|
||||||
PdfPTable datatable = new PdfPTable(1);
|
PdfPTable datatable = new PdfPTable(1);
|
||||||
|
@ -226,6 +226,8 @@ namespace Volian.Print.Library
|
|||||||
else
|
else
|
||||||
yoff += vlnPrintObject.SixLinesPerInch;
|
yoff += vlnPrintObject.SixLinesPerInch;
|
||||||
}
|
}
|
||||||
|
if (box.MyBox != null)
|
||||||
|
yoff += (float)(box.MyBox.AdjSpB4Tab ?? 0); // F2024-078 adjust space above the Note/Caution box tab
|
||||||
}
|
}
|
||||||
bxIndex = bxIndx;
|
bxIndex = bxIndx;
|
||||||
}
|
}
|
||||||
@ -273,6 +275,8 @@ namespace Volian.Print.Library
|
|||||||
box.YOffset = yoff + ((ln - 1) * vlnPrintObject.SixLinesPerInch);
|
box.YOffset = yoff + ((ln - 1) * vlnPrintObject.SixLinesPerInch);
|
||||||
if (childItemInfo.FormatStepData.OneLineBeforeTab) ln++;
|
if (childItemInfo.FormatStepData.OneLineBeforeTab) ln++;
|
||||||
yoff += ln * vlnPrintObject.SixLinesPerInch;
|
yoff += ln * vlnPrintObject.SixLinesPerInch;
|
||||||
|
if (box.MyBox != null)
|
||||||
|
yoff += (float)(box.MyBox.AdjSpB4Tab ?? 0); // F2024-078 adjust space above the Note/Caution box tab
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
bxIndex = bxIndx;
|
bxIndex = bxIndx;
|
||||||
@ -3781,7 +3785,12 @@ namespace Volian.Print.Library
|
|||||||
else if (itemInfo.MyTab.AltPrintTab != null)
|
else if (itemInfo.MyTab.AltPrintTab != null)
|
||||||
mytab = new vlnTab(cb, this, itemInfo.MyTab.AltPrintTab, itemInfo.MyTab.AltPrintTab, localXOffset, yoff, itemInfo.MyTab.MyFont, doSectTab, StepRTB.MySymbolFontName, itemInfo.MyTab.RemovedStyleUnderline);
|
mytab = new vlnTab(cb, this, itemInfo.MyTab.AltPrintTab, itemInfo.MyTab.AltPrintTab, localXOffset, yoff, itemInfo.MyTab.MyFont, doSectTab, StepRTB.MySymbolFontName, itemInfo.MyTab.RemovedStyleUnderline);
|
||||||
else
|
else
|
||||||
mytab = new vlnTab(cb, this, itemInfo.MyTab.Text, itemInfo.MyTab.CleanText, localXOffset, yoff, itemInfo.MyTab.MyFont, doSectTab, StepRTB.MySymbolFontName, itemInfo.MyTab.RemovedStyleUnderline);
|
{
|
||||||
|
string clntxt = itemInfo.MyTab.CleanText;
|
||||||
|
if (!string.IsNullOrEmpty(itemInfo.FormatStepData?.TabData?.MacroEditTag) && itemInfo.FormatStepData.TabData.MacroEditTag == "_" && clntxt.StartsWith("_"))
|
||||||
|
clntxt = clntxt.Substring(1);
|
||||||
|
mytab = new vlnTab(cb, this, itemInfo.MyTab.Text, clntxt, localXOffset, yoff, itemInfo.MyTab.MyFont, doSectTab, StepRTB.MySymbolFontName, itemInfo.MyTab.RemovedStyleUnderline);
|
||||||
|
}
|
||||||
PartsLeft.Add(mytab);
|
PartsLeft.Add(mytab);
|
||||||
if (mytab.MyMacro != null) PartsLeft.Add(mytab.MyMacro);
|
if (mytab.MyMacro != null) PartsLeft.Add(mytab.MyMacro);
|
||||||
}
|
}
|
||||||
@ -5492,24 +5501,53 @@ namespace Volian.Print.Library
|
|||||||
// code looks up parents to see if they have next before returning a 0 (no blank line)
|
// code looks up parents to see if they have next before returning a 0 (no blank line)
|
||||||
// B2022-042: double Caution followed by Critical Step missing bullet
|
// B2022-042: double Caution followed by Critical Step missing bullet
|
||||||
// F2022-010: substeps in multiple notes, cautions, warning print differently
|
// F2022-010: substeps in multiple notes, cautions, warning print differently
|
||||||
if (MyItemInfo.ActiveFormat.PlantFormat.FormatData.PrintData.NoBlankLastNoteCautionWarn && (MyItemInfo.IsInCautionOrNote))
|
if (MyItemInfo.IsInCautionOrNote)
|
||||||
{
|
{
|
||||||
if ((MyItemInfo.Steps == null || MyItemInfo.Steps.Count == 0) && (MyItemInfo.NextItem == null)) // there are no sub-steps, see if any parents have next
|
float adjLastBlankLineInNoteCautionWarning = 0;
|
||||||
|
// Get the box information for the Note, Caution, or Warning
|
||||||
|
ItemInfo tifo = (MyItemInfo.IsCaution || MyItemInfo.IsNote) ? MyItemInfo : MyItemInfo.ParentNoteOrCaution;
|
||||||
|
int typ = ((int)tifo.MyContent.Type) % 10000;
|
||||||
|
int? bxIndx = tifo.ActiveFormat.PlantFormat.FormatData.StepDataList[typ].StepLayoutData.STBoxindex;
|
||||||
|
if (bxIndx != null)
|
||||||
{
|
{
|
||||||
ItemInfo par = MyItemInfo.MyParent;
|
Box bx = tifo.ActiveFormat.PlantFormat.FormatData.BoxList[(int)bxIndx];
|
||||||
while (par.IsInCautionOrNote) // while in the caution or note, see if there is anything below this item
|
// F2024-078 save the adjustment of the last blank line - this value will be added to the SixLinesPerInch value (a blank line)
|
||||||
{
|
adjLastBlankLineInNoteCautionWarning = (float)(bx.AdjLastBlnkLn ?? 0);
|
||||||
// if there is no next item, or content types are different, go up to see if the parent has any next item. If note
|
}
|
||||||
// keep going up tree, otherwise there is a next so don't return 0, i.e. continue on with code to determine
|
//}
|
||||||
// whether there is a blank line
|
// if (MyItemInfo.ActiveFormat.PlantFormat.FormatData.PrintData.NoBlankLastNoteCautionWarn && (MyItemInfo.IsInCautionOrNote))
|
||||||
if ((par.NextItem == null) || (par.MyContent.Type != par.NextItem.MyContent.Type)) par = par.MyParent;
|
// F2024-078 added check for adjustment of the last blank line in the Note/Caution box
|
||||||
else break;
|
if (MyItemInfo.ActiveFormat.PlantFormat.FormatData.PrintData.NoBlankLastNoteCautionWarn || adjLastBlankLineInNoteCautionWarning != 0)
|
||||||
}
|
{
|
||||||
if (!par.IsInCautionOrNote || (par != null && par.MyContent.Type != par.NextItem.MyContent.Type)) return 0;
|
if ((MyItemInfo.Steps == null || MyItemInfo.Steps.Count == 0) && (MyItemInfo.NextItem == null)) // there are no sub-steps, see if any parents have next
|
||||||
|
{
|
||||||
|
ItemInfo par = MyItemInfo.MyParent;
|
||||||
|
while (par.IsInCautionOrNote) // while in the caution or note, see if there is anything below this item
|
||||||
|
{
|
||||||
|
// if there is no next item, or content types are different, go up to see if the parent has any next item. If note
|
||||||
|
// keep going up tree, otherwise there is a next so don't return 0, i.e. continue on with code to determine
|
||||||
|
// whether there is a blank line
|
||||||
|
if ((par.NextItem == null) || (par.MyContent.Type != par.NextItem.MyContent.Type)) par = par.MyParent;
|
||||||
|
else break;
|
||||||
|
}
|
||||||
|
if (!par.IsInCautionOrNote || (par != null && par.MyContent.Type != par.NextItem.MyContent.Type))
|
||||||
|
{
|
||||||
|
if (adjLastBlankLineInNoteCautionWarning != 0)
|
||||||
|
return SixLinesPerInch + adjLastBlankLineInNoteCautionWarning; // F2024-078 adjust the size of the last blank line of Note/Caution box
|
||||||
|
else
|
||||||
|
return 0; // no blank line after last text line of Note/Caution/Warning
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if ((MyItemInfo.Steps == null || MyItemInfo.Steps.Count == 0) && MyItemInfo.NextItem != null && MyItemInfo.MyContent.Type != MyItemInfo.NextItem.MyContent.Type)
|
||||||
|
{
|
||||||
|
if (adjLastBlankLineInNoteCautionWarning != 0)
|
||||||
|
return SixLinesPerInch + adjLastBlankLineInNoteCautionWarning;
|
||||||
|
else
|
||||||
|
return 0; // no blank line after last text line of Note/Caution/Warning
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if ((MyItemInfo.Steps == null || MyItemInfo.Steps.Count == 0) && MyItemInfo.NextItem != null && MyItemInfo.MyContent.Type != MyItemInfo.NextItem.MyContent.Type) return 0;
|
|
||||||
}
|
}
|
||||||
if (MyItemInfo.Ordinal % everyNLines == 0 || MyItemInfo.NextItem == null) return SixLinesPerInch;
|
if (MyItemInfo.Ordinal % everyNLines == 0 || MyItemInfo.NextItem == null) return SixLinesPerInch;
|
||||||
// B2022-003: BNPP Alarms (BNPPalr) - incorrect line spacing for substeps off substeps. Added a format flag so as not to affect other plants.
|
// B2022-003: BNPP Alarms (BNPPalr) - incorrect line spacing for substeps off substeps. Added a format flag so as not to affect other plants.
|
||||||
if (MyItemInfo.FormatStepData != null && MyItemInfo.FormatStepData.StepPrintData != null && MyItemInfo.FormatStepData.StepPrintData.BlankAfterSubWithSub && MyItemInfo.NextItem != null && MyItemInfo.HasChildren && MyItemInfo.Steps != null && MyItemInfo.Steps.Count > 0) return SixLinesPerInch;
|
if (MyItemInfo.FormatStepData != null && MyItemInfo.FormatStepData.StepPrintData != null && MyItemInfo.FormatStepData.StepPrintData.BlankAfterSubWithSub && MyItemInfo.NextItem != null && MyItemInfo.HasChildren && MyItemInfo.Steps != null && MyItemInfo.Steps.Count > 0) return SixLinesPerInch;
|
||||||
|
|
||||||
@ -5792,6 +5830,7 @@ namespace Volian.Print.Library
|
|||||||
float hdrWidth = (itemInfo.MyHeader.CleanText == null) ? 0 : itemInfo.MyHeader.CleanText.Length * 6;
|
float hdrWidth = (itemInfo.MyHeader.CleanText == null) ? 0 : itemInfo.MyHeader.CleanText.Length * 6;
|
||||||
int typ = ((int)itemInfo.MyContent.Type) % 10000;
|
int typ = ((int)itemInfo.MyContent.Type) % 10000;
|
||||||
int? bxIndx = formatInfo.PlantFormat.FormatData.StepDataList[typ].StepLayoutData.STBoxindex;
|
int? bxIndx = formatInfo.PlantFormat.FormatData.StepDataList[typ].StepLayoutData.STBoxindex;
|
||||||
|
float adjmentAfterBoxedNoteCautionTab = 0; // F2024-078 used to save the adjustment of the space after the Note/Caution tab
|
||||||
|
|
||||||
if (itemInfo.MyHeader.Justify == System.Drawing.ContentAlignment.MiddleCenter)
|
if (itemInfo.MyHeader.Justify == System.Drawing.ContentAlignment.MiddleCenter)
|
||||||
{
|
{
|
||||||
@ -5801,7 +5840,8 @@ namespace Volian.Print.Library
|
|||||||
if (bx.TabPos > 0)
|
if (bx.TabPos > 0)
|
||||||
xoff += (float)bx.TabPos; // xoff starts as left margin
|
xoff += (float)bx.TabPos; // xoff starts as left margin
|
||||||
else
|
else
|
||||||
xoff += (float)((bx.TxtStart + _MyBoxLeftAdj + XOffsetBox + (bx.TxtWidth / 2)) - (hdrWidth / 2)); // xoff starts as left margin
|
xoff += (float)((bx.TxtStart + _MyBoxLeftAdj + XOffsetBox + (bx.TxtWidth / 2)) - (hdrWidth / 2)); // xoff starts as left margin
|
||||||
|
adjmentAfterBoxedNoteCautionTab = (float) (bx.AdjSpAftTab ?? 0); // F2024-078 save the adjustment of the space (line) after the Note/Caution tab
|
||||||
}
|
}
|
||||||
else if (formatInfo.PlantFormat.FormatData.PrintData.SpecialCaseCalvertAlarm && itemInfo.IsInRNO && (itemInfo.IsCaution || itemInfo.IsNote)) // C2014-009
|
else if (formatInfo.PlantFormat.FormatData.PrintData.SpecialCaseCalvertAlarm && itemInfo.IsInRNO && (itemInfo.IsCaution || itemInfo.IsNote)) // C2014-009
|
||||||
xoff = XOffset + (para.Width / 2) - (hdrWidth / 2);
|
xoff = XOffset + (para.Width / 2) - (hdrWidth / 2);
|
||||||
@ -5836,7 +5876,7 @@ namespace Volian.Print.Library
|
|||||||
// F2022-121 added SpecialStepsFoldoutKeepWhiteSpace flag to allow for all of the other special foldout formatting, but
|
// F2022-121 added SpecialStepsFoldoutKeepWhiteSpace flag to allow for all of the other special foldout formatting, but
|
||||||
// not compress the page - this need to handle explicit OR and AND sub-steps to ensure there are blank lines before and after
|
// not compress the page - this need to handle explicit OR and AND sub-steps to ensure there are blank lines before and after
|
||||||
// the separator text.
|
// the separator text.
|
||||||
return myHeader.Height + (!MyItemInfo.MyDocStyle.SpecialStepsFoldout || (MyItemInfo.MyDocStyle.SpecialStepsFoldout && MyItemInfo.MyDocStyle.SpecialStepsFoldoutKeepWhiteSpace) || (MyItemInfo.MyDocStyle.ExtraLineHeader && (MyItemInfo.IsCaution || MyItemInfo.IsNote)) ? bSpaceIn ? SixLinesPerInch : 0 : 0);
|
return myHeader.Height + (!MyItemInfo.MyDocStyle.SpecialStepsFoldout || (MyItemInfo.MyDocStyle.SpecialStepsFoldout && MyItemInfo.MyDocStyle.SpecialStepsFoldoutKeepWhiteSpace) || (MyItemInfo.MyDocStyle.ExtraLineHeader && (MyItemInfo.IsCaution || MyItemInfo.IsNote)) ? bSpaceIn ? SixLinesPerInch : 0 : 0) + adjmentAfterBoxedNoteCautionTab; // F2024-078 add adjustment to the space after the Note/Caution tab
|
||||||
}
|
}
|
||||||
private float AdjustToCharPosition(float position, float? CPI)
|
private float AdjustToCharPosition(float position, float? CPI)
|
||||||
{
|
{
|
||||||
@ -6847,7 +6887,13 @@ namespace Volian.Print.Library
|
|||||||
}
|
}
|
||||||
else if (itemInfo.IsSection)
|
else if (itemInfo.IsSection)
|
||||||
{
|
{
|
||||||
Width = ToInt(formatInfo.MyStepSectionLayoutData.WidSTablePrint, maxRNO);
|
// B2023-074 The itemInfo we are processing is a section (number and title). Change maxRNO to zero to getting the width.
|
||||||
|
// The Width is used when printing the section number and title (when the check box on the properties page is checked)
|
||||||
|
// and is assumemed the section is a single column section (maxRNO = 0) and uses the format variable WidSTablePrint
|
||||||
|
// which holds the widths for then the section has one column, two column, or three column.
|
||||||
|
// For printing section numbers and titles like this, we always want to accomodate for lone section title text.
|
||||||
|
// So the initial width should always be set to the one column width value so that it can spane across the page.
|
||||||
|
Width = ToInt(formatInfo.MyStepSectionLayoutData.WidSTablePrint, 0);
|
||||||
float adjwidths = 0;
|
float adjwidths = 0;
|
||||||
adjwidths = AdjustMetaWidth(itemInfo, formatInfo, adjwidths, false);
|
adjwidths = AdjustMetaWidth(itemInfo, formatInfo, adjwidths, false);
|
||||||
Width += (adjwidths + _WidthAdjust);
|
Width += (adjwidths + _WidthAdjust);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user