Skip to content
Merged
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
2 changes: 1 addition & 1 deletion src/LogExpert.UI/Controls/BufferedDataGridView.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
namespace LogExpert.Dialogs;

[SupportedOSPlatform("windows")]
public partial class BufferedDataGridView : DataGridView
internal partial class BufferedDataGridView : DataGridView
{
#region Fields

Expand Down
2 changes: 1 addition & 1 deletion src/LogExpert.UI/Controls/ColorComboBox.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
namespace LogExpert.UI.Controls;

[SupportedOSPlatform("windows")]
public class ColorComboBox : ComboBox
internal class ColorComboBox : ComboBox
{
#region Fields

Expand Down
2 changes: 1 addition & 1 deletion src/LogExpert.UI/Controls/DateTimeDragControl.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ namespace LogExpert.Dialogs;
/// The control raises events (ValueChanged, ValueDragged) when the date/time changes so that owner can react accordingly.
/// </summary>
[SupportedOSPlatform("windows")]
public partial class DateTimeDragControl : UserControl
internal partial class DateTimeDragControl : UserControl
{
#region Fields

Expand Down
2 changes: 1 addition & 1 deletion src/LogExpert.UI/Controls/KnobControl.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
namespace LogExpert.UI.Controls;

[SupportedOSPlatform("windows")]
public partial class KnobControl : UserControl
internal partial class KnobControl : UserControl
{
#region Fields

Expand Down
2 changes: 1 addition & 1 deletion src/LogExpert.UI/Controls/LogCellEditingControl.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
namespace LogExpert.UI.Controls;

[SupportedOSPlatform("windows")]
public class LogCellEditingControl : DataGridViewTextBoxEditingControl
internal class LogCellEditingControl : DataGridViewTextBoxEditingControl
{
#region Public methods

Expand Down
2 changes: 1 addition & 1 deletion src/LogExpert.UI/Controls/LogGridCell.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

namespace LogExpert.UI.Controls;

public class LogGridCell : DataGridViewTextBoxCell
internal class LogGridCell : DataGridViewTextBoxCell
{
#region Properties

Expand Down
2 changes: 1 addition & 1 deletion src/LogExpert.UI/Controls/LogTextColumn.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace LogExpert.UI.Controls;

public class LogTextColumn : DataGridViewColumn
internal class LogTextColumn : DataGridViewColumn
{
#region cTor

Expand Down
2 changes: 1 addition & 1 deletion src/LogExpert.UI/Controls/LogWindow/LogWindow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ namespace LogExpert.UI.Controls.LogWindow;

//TODO: Implemented 4 interfaces explicitly. Find them by searching: ILogWindow.<method name>
[SupportedOSPlatform("windows")]
public partial class LogWindow : DockContent, ILogPaintContextUI, ILogView, ILogWindow
internal partial class LogWindow : DockContent, ILogPaintContextUI, ILogView, ILogWindow
{
#region Fields

Expand Down
1 change: 0 additions & 1 deletion src/LogExpert.UI/Controls/LogWindow/LogWindowPublic.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
using System.Text;

using LogExpert.Core.Classes;
using LogExpert.Core.Classes.Bookmark;
using LogExpert.Core.Classes.Columnizer;
using LogExpert.Core.Classes.Filter;
using LogExpert.Core.Classes.Highlight;
Expand Down
2 changes: 1 addition & 1 deletion src/LogExpert.UI/Controls/LogWindow/RangeFinder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ namespace LogExpert.UI.Controls.LogWindow;
/// <summary>
/// Delivers the range (from..to) that matches the current range filter settings starting from a given line.
/// </summary>
public class RangeFinder(FilterParams filterParams, ColumnizerCallback callback)
internal class RangeFinder(FilterParams filterParams, ColumnizerCallback callback)
{
#region Fields

Expand Down
2 changes: 1 addition & 1 deletion src/LogExpert.UI/Controls/LogWindow/TimeSyncList.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ namespace LogExpert.UI.Controls.LogWindow;
/// <summary>
/// Holds all windows which are in sync via timestamp
/// </summary>
public class TimeSyncList
internal class TimeSyncList
{
#region Fields

Expand Down
4 changes: 2 additions & 2 deletions src/LogExpert.UI/Dialogs/AboutBox.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using LogExpert.Core.Classes;
using LogExpert.Core.Classes;

using Newtonsoft.Json;

Expand All @@ -9,7 +9,7 @@
namespace LogExpert.UI.Dialogs;

[SupportedOSPlatform("windows")]
public partial class AboutBox : Form
internal partial class AboutBox : Form
{
#region Fields

Expand Down
4 changes: 2 additions & 2 deletions src/LogExpert.UI/Dialogs/BookmarkCommentDlg.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
using System.Runtime.Versioning;
using System.Runtime.Versioning;

namespace LogExpert.Dialogs;

[SupportedOSPlatform("windows")]
public partial class BookmarkCommentDlg : Form
internal partial class BookmarkCommentDlg : Form
{
#region cTor

Expand Down
2 changes: 1 addition & 1 deletion src/LogExpert.UI/Dialogs/BookmarkWindow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ namespace LogExpert.Dialogs;

//TODO can be moved to Logexpert.UI if the PaintHelper has been refactored
[SupportedOSPlatform("windows")]
public partial class BookmarkWindow : DockContent, ISharedToolWindow, IBookmarkView
internal partial class BookmarkWindow : DockContent, ISharedToolWindow, IBookmarkView
{
#region Fields

Expand Down
2 changes: 1 addition & 1 deletion src/LogExpert.UI/Dialogs/ChooseIconDlg.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
namespace LogExpert.UI.Dialogs;

[SupportedOSPlatform("windows")]
public partial class ChooseIconDlg : Form
internal partial class ChooseIconDlg : Form
{
#region Fields

Expand Down
4 changes: 2 additions & 2 deletions src/LogExpert.UI/Dialogs/FilterColumnChooser.cs
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
using LogExpert.Core.Classes.Filter;
using LogExpert.Core.Classes.Filter;

using System.Runtime.Versioning;

namespace LogExpert.UI.Dialogs;

[SupportedOSPlatform("windows")]
public partial class FilterColumnChooser : Form
internal partial class FilterColumnChooser : Form
{
#region Fields

Expand Down
4 changes: 2 additions & 2 deletions src/LogExpert.UI/Dialogs/GotoLineDialog.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
using System.Runtime.Versioning;
using System.Runtime.Versioning;

namespace LogExpert.UI.Dialogs;

[SupportedOSPlatform("windows")]
public partial class GotoLineDialog : Form
internal partial class GotoLineDialog : Form
{
#region Fields

Expand Down
4 changes: 2 additions & 2 deletions src/LogExpert.UI/Dialogs/ImportSettingsDialog.cs
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
using LogExpert.Core.Config;
using LogExpert.Core.Config;

using System.Runtime.Versioning;

namespace LogExpert.UI.Dialogs;

[SupportedOSPlatform("windows")]
public partial class ImportSettingsDialog : Form
internal partial class ImportSettingsDialog : Form
{
#region cTor

Expand Down
4 changes: 2 additions & 2 deletions src/LogExpert.UI/Dialogs/KeywordActionDlg.cs
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
using LogExpert.Core.Classes.Highlight;
using LogExpert.Core.Classes.Highlight;

using System.Runtime.Versioning;

namespace LogExpert.UI.Dialogs;

[SupportedOSPlatform("windows")]
public partial class KeywordActionDlg : Form
internal partial class KeywordActionDlg : Form
{
#region Fields

Expand Down
2 changes: 1 addition & 1 deletion src/LogExpert.UI/Dialogs/LogTabWindow/HighlightDialog.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
namespace LogExpert.Dialogs;

[SupportedOSPlatform("windows")]
public partial class HighlightDialog : Form
internal partial class HighlightDialog : Form
{
private static readonly ILogger _logger = LogManager.GetCurrentClassLogger();

Expand Down
8 changes: 4 additions & 4 deletions src/LogExpert.UI/Dialogs/LogTabWindow/LogTabWindow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ namespace LogExpert.UI.Controls.LogTabWindow;
// Data shared over all LogTabWindow instances
//TODO: Can we get rid of this class?
[SupportedOSPlatform("windows")]
public partial class LogTabWindow : Form, ILogTabWindow
internal partial class LogTabWindow : Form, ILogTabWindow
{
#region Fields

Expand Down Expand Up @@ -198,15 +198,15 @@ public void ChangeTheme (Control.ControlCollection container)
{
for (var x = 0; x < item.DropDownItems.Count; x++)
{
ToolStripItem children = item.DropDownItems[x];
var children = item.DropDownItems[x];
children.ForeColor = ColorMode.ForeColor;
children.BackColor = ColorMode.MenuBackgroundColor;

if (children is ToolStripDropDownItem toolstripDropDownItem)
{
for (var y = 0; y < toolstripDropDownItem.DropDownItems.Count; y++)
{
ToolStripItem subChildren = toolstripDropDownItem.DropDownItems[y];
var subChildren = toolstripDropDownItem.DropDownItems[y];
subChildren.ForeColor = ColorMode.ForeColor;
subChildren.BackColor = ColorMode.MenuBackgroundColor;
}
Expand Down Expand Up @@ -237,7 +237,7 @@ public void ChangeTheme (Control.ControlCollection container)
// Tabs menu
for (var y = 0; y < tabContextMenuStrip.Items.Count; y++)
{
ToolStripItem item = tabContextMenuStrip.Items[y];
var item = tabContextMenuStrip.Items[y];
item.ForeColor = ColorMode.ForeColor;
item.BackColor = ColorMode.MenuBackgroundColor;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@
using LogExpert.Core.Entities;
using LogExpert.Core.EventArguments;
using LogExpert.Dialogs;
using LogExpert.UI.Controls.LogWindow;
using LogExpert.UI.Dialogs;
using LogExpert.UI.Extensions.LogWindow;

using WeifenLuo.WinFormsUI.Docking;

namespace LogExpert.UI.Controls.LogTabWindow;

public partial class LogTabWindow
internal partial class LogTabWindow
{
#region Events handler

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

namespace LogExpert.UI.Controls.LogTabWindow;

public partial class LogTabWindow
internal partial class LogTabWindow
{
#region Private Methods

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

namespace LogExpert.UI.Controls.LogTabWindow;

public partial class LogTabWindow
internal partial class LogTabWindow
{
#region Public methods

Expand Down
4 changes: 2 additions & 2 deletions src/LogExpert.UI/Dialogs/MultiFileMaskDialog.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
using System.Runtime.Versioning;
using System.Runtime.Versioning;

namespace LogExpert.UI.Dialogs;

[SupportedOSPlatform("windows")]
public partial class MultiFileMaskDialog : Form
internal partial class MultiFileMaskDialog : Form
{
#region Fields

Expand Down
4 changes: 2 additions & 2 deletions src/LogExpert.UI/Dialogs/MultiLoadRequestDialog.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
using System.Runtime.Versioning;
using System.Runtime.Versioning;

namespace LogExpert.UI.Dialogs;

[SupportedOSPlatform("windows")]
public partial class MultiLoadRequestDialog : Form
internal partial class MultiLoadRequestDialog : Form
{
#region cTor

Expand Down
4 changes: 2 additions & 2 deletions src/LogExpert.UI/Dialogs/OpenUriDialog.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
using System.Runtime.Versioning;
using System.Runtime.Versioning;

namespace LogExpert.UI.Dialogs;

[SupportedOSPlatform("windows")]
public partial class OpenUriDialog : Form
internal partial class OpenUriDialog : Form
{
#region Fields

Expand Down
2 changes: 1 addition & 1 deletion src/LogExpert.UI/Dialogs/ParamRequesterDialog.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
namespace LogExpert.Dialogs;

[SupportedOSPlatform("windows")]
public partial class ParamRequesterDialog : Form
internal partial class ParamRequesterDialog : Form
{
#region Fields

Expand Down
4 changes: 2 additions & 2 deletions src/LogExpert.UI/Dialogs/ProjectLoadDlg.cs
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
using LogExpert.Core.Enums;
using LogExpert.Core.Enums;

using System.Runtime.Versioning;

namespace LogExpert.Dialogs;

[SupportedOSPlatform("windows")]
public partial class ProjectLoadDlg : Form
internal partial class ProjectLoadDlg : Form
{
#region Fields

Expand Down
2 changes: 1 addition & 1 deletion src/LogExpert.UI/Dialogs/RegexHelperDialog.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
namespace LogExpert.UI.Dialogs;

[SupportedOSPlatform("windows")]
public partial class RegexHelperDialog : Form
internal partial class RegexHelperDialog : Form
{
#region Fields

Expand Down
2 changes: 1 addition & 1 deletion src/LogExpert.UI/Dialogs/SearchDialog.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
namespace LogExpert.Dialogs;

[SupportedOSPlatform("windows")]
public partial class SearchDialog : Form
internal partial class SearchDialog : Form
{
#region Fields

Expand Down
4 changes: 2 additions & 2 deletions src/LogExpert.UI/Dialogs/SearchProgressDialog.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
using System.Runtime.Versioning;
using System.Runtime.Versioning;

namespace LogExpert.UI.Dialogs;

[SupportedOSPlatform("windows")]
public partial class SearchProgressDialog : Form
internal partial class SearchProgressDialog : Form
{
#region Fields

Expand Down
4 changes: 2 additions & 2 deletions src/LogExpert.UI/Dialogs/TabRenameDialog.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
using System.Runtime.Versioning;
using System.Runtime.Versioning;

namespace LogExpert.UI.Dialogs;

[SupportedOSPlatform("windows")]
public partial class TabRenameDialog : Form
internal partial class TabRenameDialog : Form
{
#region cTor

Expand Down
2 changes: 1 addition & 1 deletion src/LogExpert.UI/Entities/WindowFileEntry.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ namespace LogExpert.UI.Entities;
/// <summary>
/// Represents a log file and its window. Used as a kind of handle for menus or list of open files.
/// </summary>
public class WindowFileEntry (LogWindow logWindow)
internal class WindowFileEntry (LogWindow logWindow)
{
#region Fields

Expand Down
Loading
Loading