|
@@ -1,7 +1,6 @@
|
|
|
import 'dart:math';
|
|
|
import 'package:fis_common/logger/logger.dart';
|
|
|
import 'package:fis_jsonrpc/rpc.dart';
|
|
|
-import 'package:fis_jsonrpc/services/aIDiagnosis.m.dart';
|
|
|
import 'package:fis_measure/interfaces/date_types/point.dart';
|
|
|
import 'package:fis_measure/interfaces/process/urm/urm_data_processor.dart';
|
|
|
import 'package:fis_measure/process/workspace/rpc_bridge.dart';
|
|
@@ -18,6 +17,7 @@ class URMApplication extends Application {
|
|
|
required this.resultHeight,
|
|
|
required this.urmDataProcessor,
|
|
|
this.onUpdateChart,
|
|
|
+ this.onUpdateRimResult,
|
|
|
}) : super(probe);
|
|
|
|
|
|
IURMDataProcessor urmDataProcessor;
|
|
@@ -28,6 +28,8 @@ class URMApplication extends Application {
|
|
|
|
|
|
final ValueChanged<URMChartParams>? onUpdateChart;
|
|
|
|
|
|
+ final ValueChanged<URMMeasureProcessResult?>? onUpdateRimResult;
|
|
|
+
|
|
|
@override
|
|
|
PointInfo createPointInfo(Offset offset, PointInfoType type) {
|
|
|
final width = urmDataProcessor.showLeftRight
|