Skip to content

Commit fc898d9

Browse files
authored
Merge pull request #432 from LogExperts/optimizing_painting
Optimizing painting
2 parents bd55105 + f3a94e9 commit fc898d9

File tree

7 files changed

+89
-150
lines changed

7 files changed

+89
-150
lines changed

src/LogExpert.Core/Interface/ILogWindow.cs

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
using LogExpert.Core.Classes.Log;
22
using LogExpert.Core.Classes.Persister;
3-
using LogExpert.Core.Entities;
43

54
namespace LogExpert.Core.Interface;
65

@@ -11,15 +10,17 @@ public interface ILogWindow
1110

1211
ILogLine GetLine (int lineNum);
1312

13+
ILogLine GetLogLineWithWait (int lineNum);
14+
1415
//TODO Find a way to not use a referenced int (https://github.com/LogExperts/LogExpert/issues/404)
15-
DateTime GetTimestampForLineForward (ref int lineNum, bool v);
16+
DateTime GetTimestampForLineForward (ref int lineNum, bool roundToSeconds);
1617

1718
//TODO Find a way to not use a referenced int (https://github.com/LogExperts/LogExpert/issues/404)
18-
DateTime GetTimestampForLine (ref int lastLineNum, bool v);
19+
DateTime GetTimestampForLine (ref int lastLineNum, bool roundToSeconds);
1920

20-
int FindTimestampLine_Internal (int lineNum1, int lineNum2, int lastLineNum, DateTime searchTimeStamp, bool v);
21+
int FindTimestampLineInternal (int lineNum, int rangeStart, int rangeEnd, DateTime timestamp, bool roundToSeconds);
2122

22-
void SelectLine (int lineNum, bool v1, bool v2);
23+
void SelectLine (int lineNum, bool triggerSyncCall, bool shouldScroll);
2324

2425
PersistenceData GetPersistenceData ();
2526

0 commit comments

Comments
 (0)