Skip to content

Commit 3f85a94

Browse files
Randall FlaggRandall Flagg
authored andcommitted
Changed from public to internal on all possible classes in UI
Moved non UI components to a different folder.
1 parent 6722feb commit 3f85a94

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+79
-80
lines changed

src/LogExpert.UI/Controls/BufferedDataGridView.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
namespace LogExpert.Dialogs;
1111

1212
[SupportedOSPlatform("windows")]
13-
public partial class BufferedDataGridView : DataGridView
13+
internal partial class BufferedDataGridView : DataGridView
1414
{
1515
#region Fields
1616

src/LogExpert.UI/Controls/ColorComboBox.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
namespace LogExpert.UI.Controls;
55

66
[SupportedOSPlatform("windows")]
7-
public class ColorComboBox : ComboBox
7+
internal class ColorComboBox : ComboBox
88
{
99
#region Fields
1010

src/LogExpert.UI/Controls/DateTimeDragControl.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ namespace LogExpert.Dialogs;
1515
/// The control raises events (ValueChanged, ValueDragged) when the date/time changes so that owner can react accordingly.
1616
/// </summary>
1717
[SupportedOSPlatform("windows")]
18-
public partial class DateTimeDragControl : UserControl
18+
internal partial class DateTimeDragControl : UserControl
1919
{
2020
#region Fields
2121

src/LogExpert.UI/Controls/KnobControl.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
namespace LogExpert.UI.Controls;
66

77
[SupportedOSPlatform("windows")]
8-
public partial class KnobControl : UserControl
8+
internal partial class KnobControl : UserControl
99
{
1010
#region Fields
1111

src/LogExpert.UI/Controls/LogCellEditingControl.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
namespace LogExpert.UI.Controls;
44

55
[SupportedOSPlatform("windows")]
6-
public class LogCellEditingControl : DataGridViewTextBoxEditingControl
6+
internal class LogCellEditingControl : DataGridViewTextBoxEditingControl
77
{
88
#region Public methods
99

src/LogExpert.UI/Controls/LogGridCell.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
namespace LogExpert.UI.Controls;
55

6-
public class LogGridCell : DataGridViewTextBoxCell
6+
internal class LogGridCell : DataGridViewTextBoxCell
77
{
88
#region Properties
99

src/LogExpert.UI/Controls/LogTextColumn.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace LogExpert.UI.Controls;
44

5-
public class LogTextColumn : DataGridViewColumn
5+
internal class LogTextColumn : DataGridViewColumn
66
{
77
#region cTor
88

src/LogExpert.UI/Controls/LogWindow/LogWindow.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ namespace LogExpert.UI.Controls.LogWindow;
2525

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

src/LogExpert.UI/Controls/LogWindow/RangeFinder.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ namespace LogExpert.UI.Controls.LogWindow;
1212
/// <summary>
1313
/// Delivers the range (from..to) that matches the current range filter settings starting from a given line.
1414
/// </summary>
15-
public class RangeFinder(FilterParams filterParams, ColumnizerCallback callback)
15+
internal class RangeFinder(FilterParams filterParams, ColumnizerCallback callback)
1616
{
1717
#region Fields
1818

src/LogExpert.UI/Controls/LogWindow/TimeSyncList.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ namespace LogExpert.UI.Controls.LogWindow;
55
/// <summary>
66
/// Holds all windows which are in sync via timestamp
77
/// </summary>
8-
public class TimeSyncList
8+
internal class TimeSyncList
99
{
1010
#region Fields
1111

0 commit comments

Comments
 (0)