11using LogExpert . Core . Classes . Log ;
22using LogExpert . Core . Classes . Persister ;
3- using LogExpert . Core . Entities ;
43
54namespace 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