Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions CxViewerAction/BaseInterfaces/IGraph.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public interface IGraph
int Height { get; }

/// <summary>
/// Gets or sets list of path sequances
/// Gets or sets list of path sequences
/// </summary>
List<GraphPath> Paths { get; set; }

Expand All @@ -45,7 +45,7 @@ public interface IGraph
/// <summary>
/// Gets item position in graph matrix start from top-left corner
/// </summary>
/// <param name="item">Grapth element</param>
/// <param name="item">Graph element</param>
/// <returns>X-Y position of element inside graph</returns>
Point GetPosition(IGraphItem item);

Expand All @@ -67,17 +67,17 @@ public interface IGraphPath : IComparable
IGraphItem Current { get; set; }

/// <summary>
/// Problem sequance length
/// Problem sequence length
/// </summary>
int Width { get; }

/// <summary>
/// Gets or sets problems sequance from begin to end
/// Gets or sets problems sequence from begin to end
/// </summary>
List<GraphItem> DirectFlow { get; set; }

/// <summary>
/// Get the position of first path element in comparission
/// Get the position of first path element in comparison
/// with most top element in all graph paths
/// </summary>
int Top { get; }
Expand Down
2 changes: 1 addition & 1 deletion CxViewerAction/Dispatchers/Dispatcher.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
namespace CxViewerAction.Dispatchers
{
/// <summary>
/// Handler for excution
/// Handler for execution
/// </summary>
/// <param name="entity"></param>
/// <returns></returns>
Expand Down
4 changes: 2 additions & 2 deletions CxViewerAction/Entities/Enum/SimpleDecision.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
namespace CxViewerAction.Entities.Enum
{
/// <summary>
/// Represent user choise
/// Represent user choice
/// </summary>
public enum SimpleDecision
{
Expand All @@ -20,7 +20,7 @@ public enum SimpleDecision
Yes = 1,

/// <summary>
/// Disagree deicission
/// Disagree decision
/// </summary>
No = 2
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
namespace CxViewerAction.Entities.Enumeration
{
/// <summary>
/// Class represent Dicitionary object with serialization capability
/// Class represent Dictionary object with serialization capability
/// </summary>
/// <typeparam name="TKey"></typeparam>
/// <typeparam name="TValue"></typeparam>
Expand Down
2 changes: 1 addition & 1 deletion CxViewerAction/Entities/FormEntity/ScanProgress.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
namespace CxViewerAction.Entities.FormEntity
{
/// <summary>
/// Represent scanb dialod data
/// Represent scan dialog data
/// </summary>
public class ScanProgress
{
Expand Down
2 changes: 1 addition & 1 deletion CxViewerAction/Entities/Graph.cs
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ public ReportQueryItemResult QueryItemResult
}

/// <summary>
/// Grapth element
/// Graph element
/// </summary>
public class GraphItem : IGraphItem
{
Expand Down
8 changes: 4 additions & 4 deletions CxViewerAction/Entities/LoginData.cs
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ public string ServerEncrypted
}

/// <summary>
/// Gets or sets value indicating that connection must be established throw htts protocol
/// Gets or sets value indicating that connection must be established throw HTTPS protocol
/// </summary>
public bool Ssl
{
Expand All @@ -172,7 +172,7 @@ public bool Ssl
}

/// <summary>
/// Get or set Entity prorepty
/// Get or set Entity property
/// </summary>
public EntityId ID { get { return _id; } set { _id = value; } }

Expand All @@ -182,7 +182,7 @@ public bool Ssl
public int UpdateStatusInterval { get { return _updateStatusInterval; } set { _updateStatusInterval = value; } }

/// <summary>
/// Get or set dialog state. If true - dialog validated sucessfull and user hit button go next step
/// Get or set dialog state. If true - dialog validated successful and user hit button go next step
/// </summary>
public bool IsLogging { get { return _isLogging; } set { _isLogging = value; } }

Expand Down Expand Up @@ -242,7 +242,7 @@ public List<BindProject> BindedProjects
}

/// <summary>
/// Gets or sets max allowed zip file size in megabites for scan
/// Gets or sets max allowed zip file size in megabytes for scan
/// </summary>
public int MaxZipFileSize
{
Expand Down
6 changes: 3 additions & 3 deletions CxViewerAction/Entities/Project.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public class Project
{
#region [Properties]
/// <summary>
/// Sulution project name
/// Solution project name
/// </summary>
private string _projectName;

Expand All @@ -26,7 +26,7 @@ public string ProjectName
}

/// <summary>
/// Sulution path or single project path
/// Solution path or single project path
/// </summary>
private string _rootPath;

Expand All @@ -40,7 +40,7 @@ public string RootPath
}

/// <summary>
/// Sulution projects full file paths
/// Solution projects full file paths
/// </summary>
private List<Project> _projectPaths;

Expand Down
2 changes: 1 addition & 1 deletion CxViewerAction/Entities/Upload.cs
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public string Team
}

/// <summary>
/// If true - upload form was validated sucessfully and user confirm to start scanning
/// If true - upload form was validated successfully and user confirm to start scanning
/// </summary>
public bool IsUploading
{
Expand Down
2 changes: 1 addition & 1 deletion CxViewerAction/Entities/WebServiceEntity/LoginResult.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public string SessionId
}

/// <summary>
/// User authentification data
/// User authentication data
/// </summary>
public LoginData AuthenticationData
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public int QueryId
}

/// <summary>
/// Gets or sets value indication that object received succesfull
/// Gets or sets value indication that object received successful
/// </summary>
public bool IsSuccesfull
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public enum RunStatus
Queued = 3,

/// <summary>
/// Scan cann't be processed
/// Scan can't be processed
/// </summary>
Failed = 4
}
Expand Down
10 changes: 5 additions & 5 deletions CxViewerAction/Helpers/BackgroundWorkerHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ public class BackgroundWorkerHelper
#region [Private Constants]

/// <summary>
/// Set the numbers of attempts to execute function in exeception occurs
/// Set the numbers of attempts to execute function in exception occurs
/// </summary>
private int _repeatCountOnException = 3;

/// <summary>
/// Set the delay interval beetween repeat
/// Set the delay interval between repeat
/// </summary>
private int _repeatIntervalOnException = 15000;

Expand All @@ -36,12 +36,12 @@ public class BackgroundWorkerHelper
private delegate object _doWorkDelegate(object state);

/// <summary>
/// Main background worker funck
/// Main background worker function
/// </summary>
private Action<object> _doWorkFunc = null;

/// <summary>
/// Relogin handler
/// Re-login handler
/// </summary>
private EventHandler _doReloginFunc = null;

Expand Down Expand Up @@ -94,7 +94,7 @@ public BackgroundWorkerHelper(Action<object> func)
/// Perform background job and show view while process executes
/// </summary>
/// <param name="message">View title message</param>
/// <returns>If false - cancel buton in supported view was pressed</returns>
/// <returns>If false - cancel button in supported view was pressed</returns>
public bool DoWork(string message)
{
if (_doWorkFunc == null)
Expand Down
2 changes: 1 addition & 1 deletion CxViewerAction/Helpers/ProblemDescriptionHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class ProblemDescriptionHelper
/// Find specified problem description
/// </summary>
/// <param name="queryId">Problem identifier</param>
/// <returns>If file description was found method returns full path to file, otherwise retutn null</returns>
/// <returns>If file description was found method returns full path to file, otherwise return null</returns>
public static string GetStoredProblem(int queryId)
{
QueryDescriptionResult queryResult = new QueryDescriptionResult();
Expand Down
2 changes: 1 addition & 1 deletion CxViewerAction/Helpers/StorageHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ static string BaseDir
#region [Static Methods]

/// <summary>
/// Retutn content of specific file
/// Returns contents of specific file
/// </summary>
/// <param name="fileName"></param>
/// <returns></returns>
Expand Down
2 changes: 1 addition & 1 deletion CxViewerAction/Services/CxWebServiceClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public class CxWebServiceClient
#region [Public Properties]

/// <summary>
/// Servive client object
/// Service client object
/// </summary>
public CxViewerAction.Services.CxVSWebServiceWrapper ServiceClient { get { return _client; } }

Expand Down
4 changes: 2 additions & 2 deletions CxViewerAction/Views/DockedView/IPerspectiveResultView.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public interface IPerspectiveResultView
#region [Public Events]

/// <summary>
/// Event that fired when user binded project and changed a scan by using UI
/// Event that fired when user binds project and changed a scan by using UI
/// </summary>
event Action<long> SelectedScanChanged;

Expand Down Expand Up @@ -45,7 +45,7 @@ public interface IPerspectiveResultView
#region[Public Methods]

/// <summary>
/// Bind contols with object values
/// Bind controls with object values
/// </summary>
void BindData();

Expand Down
4 changes: 2 additions & 2 deletions CxViewerAction/Views/DockedView/IPerspectiveView.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public interface IPerspectiveView
event Action<TreeNodeData> SelectedNodeChanged;

/// <summary>
/// Event that fired when user binded project and changed a scan by using UI
/// Event that fired when user binds project and changed a scan by using UI
/// </summary>
event Action<long> SelectedScanChanged;

Expand Down Expand Up @@ -47,7 +47,7 @@ public interface IPerspectiveView

void UpdateTreeItemInfo();
/// <summary>
/// Bind contols with object values
/// Bind controls with object values
/// </summary>
void BindData();

Expand Down
2 changes: 1 addition & 1 deletion CxViewerAction/Views/DockedView/OptionsAuthCtrl.cs
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ private void BindDataToView()
}

/// <summary>
/// Bind form contol values to object data
/// Bind form control values to object data
/// </summary>
/// <returns></returns>
private LoginData BindDataFromView()
Expand Down
4 changes: 2 additions & 2 deletions CxViewerAction/Views/DockedView/PerspectiveCtrl.cs
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ public void UpdateTreeItemInfo()
}

/// <summary>
/// Bind object data to form controld
/// Bind object data to form control
/// </summary>
public void BindData()
{
Expand All @@ -105,7 +105,7 @@ public void BindData()
}

/// <summary>
/// Set form visiblity and show specified loading message if no active
/// Set form visibility and show specified loading message if no active
/// </summary>
/// <param name="active"></param>
/// <param name="loadingMessage"></param>
Expand Down
2 changes: 1 addition & 1 deletion CxViewerAction/Views/DockedView/PerspectiveGraphCtrl.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public partial class PerspectiveGraphCtrl : UserControl, IPerspectiveGraphView
#region [Private Members]

/// <summary>
/// Used for restoring scroll X position aftet rebinding
/// Used for restoring scroll X position after rebinding
/// </summary>
private int _scroll_pos_x = 0;

Expand Down
2 changes: 1 addition & 1 deletion CxViewerAction/Views/DockedView/PerspectivePathCtrl.cs
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public void ClearView()
}

/// <summary>
/// Bind object data to form controls. Generate path sequance
/// Bind object data to form controls. Generate path sequence
/// </summary>
public void BindData(int index)
{
Expand Down
4 changes: 2 additions & 2 deletions CxViewerAction/Views/DockedView/PerspectiveResultCtrl.cs
Original file line number Diff line number Diff line change
Expand Up @@ -149,14 +149,14 @@ public ReportResult Report
#region [Public Methods]

/// <summary>
/// Bind object data to form controld
/// Bind object data to form control
/// </summary>
public void BindData()
{
}

/// <summary>
/// Set form visiblity and show specified loading message if no active
/// Set form visibility and show specified loading message if no active
/// </summary>
/// <param name="active"></param>
/// <param name="loadingMessage"></param>
Expand Down
2 changes: 1 addition & 1 deletion CxViewerAction/Views/ILoginView.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ namespace CxViewerAction.Views
public interface ILoginView : IView
{
/// <summary>
/// Get or set entity identitifier
/// Get or set entity identifier
/// </summary>
EntityId EntityId { get; set; }

Expand Down
2 changes: 1 addition & 1 deletion CxViewerAction/Views/IScanView.cs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public interface IScanView : IView
EventHandler RunInBackgroundHandler { set; get; }

/// <summary>
/// Cancel buttom handler
/// Cancel button handler
/// </summary>
EventHandler CancelHandler { set; get; }

Expand Down
2 changes: 1 addition & 1 deletion CxViewerAction/Views/OidcLoginFrm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ private void SamlLoginFrm_FormClosing(object sender, FormClosingEventArgs e)
}

/// <summary>
/// This fires everytime WebView2 loads a form but it only does something when a page load
/// This fires every time WebView2 loads a form but it only does something when a page load
/// URL contains a "code=" values, this happens after a successful login.
/// </summary>
private void OnDocumentCompleted(object sender, CoreWebView2NavigationCompletedEventArgs eventArgs)
Expand Down
Loading