From c08cbe4db76ee4c6fd50e98a6ba1b431be141972 Mon Sep 17 00:00:00 2001 From: LokeshPalani Date: Mon, 25 Mar 2024 23:24:54 +0530 Subject: [PATCH 1/6] Added missed files in the charts --- .../lib/src/charts/behaviors/crosshair.dart | 1100 ++++++ .../lib/src/charts/behaviors/trackball.dart | 3162 +++++++++++++++++ .../lib/src/charts/behaviors/zooming.dart | 1825 ++++++++++ .../lib/src/sparkline/theme.dart | 82 + 4 files changed, 6169 insertions(+) create mode 100644 packages/syncfusion_flutter_charts/lib/src/charts/behaviors/crosshair.dart create mode 100644 packages/syncfusion_flutter_charts/lib/src/charts/behaviors/trackball.dart create mode 100644 packages/syncfusion_flutter_charts/lib/src/charts/behaviors/zooming.dart create mode 100644 packages/syncfusion_flutter_charts/lib/src/sparkline/theme.dart diff --git a/packages/syncfusion_flutter_charts/lib/src/charts/behaviors/crosshair.dart b/packages/syncfusion_flutter_charts/lib/src/charts/behaviors/crosshair.dart new file mode 100644 index 000000000..d2a1d5155 --- /dev/null +++ b/packages/syncfusion_flutter_charts/lib/src/charts/behaviors/crosshair.dart @@ -0,0 +1,1100 @@ +import 'dart:async'; + +import 'package:flutter/gestures.dart'; +import 'package:flutter/material.dart' hide Image; +import 'package:flutter/rendering.dart'; +import 'package:flutter/services.dart'; +import 'package:intl/intl.dart' hide TextDirection; +import 'package:syncfusion_flutter_core/core.dart'; +import 'package:syncfusion_flutter_core/theme.dart'; + +import '../axis/axis.dart'; +import '../axis/category_axis.dart'; +import '../axis/datetime_axis.dart'; +import '../axis/datetime_category_axis.dart'; +import '../axis/logarithmic_axis.dart'; +import '../axis/numeric_axis.dart'; +import '../base.dart'; +import '../common/callbacks.dart'; +import '../common/interactive_tooltip.dart'; +import '../interactions/behavior.dart'; +import '../series/chart_series.dart'; +import '../utils/constants.dart'; +import '../utils/enum.dart'; +import '../utils/helper.dart'; + +/// This class has the properties of the crosshair behavior. +/// +/// Crosshair behavior has the activation mode and line type property to set +/// the behavior of the crosshair. It also has the property to customize +/// the appearance. +/// +/// Provide options for activation mode, line type, line color, line width, +/// hide delay for customizing the behavior of the crosshair. +class CrosshairBehavior extends ChartBehavior { + /// Creating an argument constructor of [CrosshairBehavior] class. + CrosshairBehavior({ + this.activationMode = ActivationMode.longPress, + this.lineType = CrosshairLineType.both, + this.lineDashArray, + this.enable = false, + this.lineColor, + this.lineWidth = 1, + this.shouldAlwaysShow = false, + this.hideDelay = 0, + }); + + /// Toggles the visibility of the crosshair. + /// + /// Defaults to `false`. + /// + /// ```dart + /// late CrosshairBehavior _crosshairBehavior; + /// + /// void initState() { + /// _crosshairBehavior = CrosshairBehavior(enable: true); + /// super.initState(); + /// } + /// + /// Widget build(BuildContext context) { + /// return SfCartesianChart( + /// crosshairBehavior: _crosshairBehavior + /// ); + /// } + /// ``` + final bool enable; + + /// Width of the crosshair line. + /// + /// Defaults to `1`. + /// + /// ```dart + /// late CrosshairBehavior _crosshairBehavior; + /// + /// void initState() { + /// _crosshairBehavior = CrosshairBehavior( + /// enable: true, + /// lineWidth: 5 + /// ); + /// super.initState(); + /// } + /// + /// Widget build(BuildContext context) { + /// return SfCartesianChart( + /// crosshairBehavior: _crosshairBehavior + /// ); + /// } + /// ``` + final double lineWidth; + + /// Color of the crosshair line. + /// + /// Color will be applied based on the brightness + /// property of the app. + /// + /// ```dart + /// late CrosshairBehavior _crosshairBehavior; + /// + /// void initState() { + /// _crosshairBehavior = CrosshairBehavior( + /// enable: true,lineColor: Colors.red + /// ); + /// super.initState(); + /// } + /// + /// Widget build(BuildContext context) { + /// return SfCartesianChart( + /// crosshairBehavior: _crosshairBehavior + /// ); + /// } + /// ``` + final Color? lineColor; + + /// Dashes of the crosshair line. + /// + /// Any number of values can be provided in the list. + /// Odd value is considered as rendering size and even value is + /// considered as gap. + /// + /// Defaults to `[0,0]`. + /// + /// ```dart + /// late CrosshairBehavior _crosshairBehavior; + /// + /// void initState() { + /// _crosshairBehavior = CrosshairBehavior( + /// enable: true, + /// lineDashArray: [10,10] + /// ); + /// super.initState(); + /// } + /// + /// Widget build(BuildContext context) { + /// return SfCartesianChart( + /// crosshairBehavior: _crosshairBehavior + /// ); + /// } + /// ``` + final List? lineDashArray; + + /// Gesture for activating the crosshair. + /// + /// Crosshair can be activated in tap, double tap + /// and long press. + /// + /// Defaults to `ActivationMode.longPress`. + /// + /// Also refer [ActivationMode]. + /// + /// ```dart + /// late CrosshairBehavior _crosshairBehavior; + /// + /// void initState() { + /// _crosshairBehavior = CrosshairBehavior( + /// enable: true, + /// activationMode: ActivationMode.doubleTap + /// ); + /// super.initState(); + /// } + /// + /// Widget build(BuildContext context) { + /// return SfCartesianChart( + /// crosshairBehavior: _crosshairBehavior + /// ); + /// } + /// ``` + final ActivationMode activationMode; + + /// Type of crosshair line. + /// + /// By default, both vertical and horizontal lines will be + /// displayed. You can change this by specifying values to this property. + /// + /// Defaults to `CrosshairLineType.both`. + /// + /// Also refer [CrosshairLineType]. + /// + /// ```dart + /// late CrosshairBehavior _crosshairBehavior; + /// + /// void initState() { + /// _crosshairBehavior = CrosshairBehavior( + /// enable: true, + /// lineType: CrosshairLineType.horizontal + /// ); + /// super.initState(); + /// } + /// + /// Widget build(BuildContext context) { + /// return SfCartesianChart( + /// crosshairBehavior: _crosshairBehavior + /// ); + /// } + /// ``` + final CrosshairLineType lineType; + + /// Enables or disables the crosshair. + /// + /// By default, the crosshair will be hidden on touch. + /// To avoid this, set this property to true. + /// + /// Defaults to `false`. + /// + /// ```dart + /// late CrosshairBehavior _crosshairBehavior; + /// + /// void initState() { + /// _crosshairBehavior = CrosshairBehavior( + /// enable: true, + /// shouldAlwaysShow: true + /// ); + /// super.initState(); + /// } + /// + /// Widget build(BuildContext context) { + /// return SfCartesianChart( + /// crosshairBehavior: _crosshairBehavior + /// ); + /// } + /// ``` + final bool shouldAlwaysShow; + + /// Time delay for hiding the crosshair. + /// + /// Defaults to `0`. + /// + /// ```dart + /// late CrosshairBehavior _crosshairBehavior; + /// + /// void initState() { + /// _crosshairBehavior = CrosshairBehavior( + /// enable: true, + /// hideDelay: 3000 + /// ); + /// super.initState(); + /// } + /// + /// Widget build(BuildContext context) { + /// return SfCartesianChart( + /// crosshairBehavior: _crosshairBehavior + /// ); + /// } + /// ``` + final double hideDelay; + + /// Hold crosshair target position. + Offset? _position; + Timer? _crosshairHideTimer; + + final List _verticalPaths = []; + final List _horizontalPaths = []; + final List _verticalLabels = []; + final List _horizontalLabels = []; + final List _verticalLabelPositions = []; + final List _horizontalLabelPositions = []; + + @override + bool operator ==(Object other) { + if (identical(this, other)) { + return true; + } + if (other.runtimeType != runtimeType) { + return false; + } + + return other is CrosshairBehavior && + other.activationMode == activationMode && + other.lineType == lineType && + other.lineDashArray == lineDashArray && + other.enable == enable && + other.lineColor == lineColor && + other.lineWidth == lineWidth && + other.shouldAlwaysShow == shouldAlwaysShow && + other.hideDelay == hideDelay; + } + + @override + int get hashCode { + final List values = [ + activationMode, + lineType, + lineDashArray, + enable, + lineColor, + lineWidth, + shouldAlwaysShow, + hideDelay + ]; + return Object.hashAll(values); + } + + /// Displays the crosshair at the specified x and y-positions. + /// + /// x & y - x and y values/pixel where the crosshair needs to be shown. + /// + /// coordinateUnit - specify the type of x and y values given. `pixel` or + /// `point` for logical pixel and chart data point respectively. + /// + /// Defaults to `point`. + void show(dynamic x, double y, [String coordinateUnit = 'point']) { + final RenderBehaviorArea? parent = parentBox as RenderBehaviorArea?; + if (parent == null) { + return; + } + + assert(x != null); + assert(!y.isNaN); + if (coordinateUnit == 'point') { + _position = rawValueToPixelPoint( + x, y, parent.xAxis, parent.yAxis, parent.isTransposed); + } else if (coordinateUnit == 'pixel') { + if (x is num) { + _position = Offset(x.toDouble(), y); + } else { + _position = Offset( + rawValueToPixelPoint( + x, y, parent.xAxis, parent.yAxis, parent.isTransposed) + .dx, + y); + } + } + + _show(); + } + + /// Displays the crosshair at the specified point index. + /// + /// pointIndex - index of point at which the crosshair needs to be shown. + void showByIndex(int pointIndex) { + final RenderBehaviorArea? parent = parentBox as RenderBehaviorArea?; + if (parent != null && parent.plotArea != null) { + final XyDataSeriesRenderer? seriesRenderer = + parent.plotArea!.firstChild as XyDataSeriesRenderer?; + if (seriesRenderer != null) { + final List visibleIndexes = seriesRenderer.visibleIndexes; + if (visibleIndexes.first <= pointIndex && + pointIndex <= visibleIndexes.last) { + show(seriesRenderer.xRawValues[pointIndex], + seriesRenderer.yValues[pointIndex].toDouble()); + } + } + } + } + + /// Hides the crosshair if it is displayed. + void hide() { + _position = null; + _resetCrosshairHolders(); + (parentBox as RenderBehaviorArea?)?.invalidate(); + } + + /// To customize the necessary pointer events in behaviors. + /// (e.g., CrosshairBehavior, TrackballBehavior, ZoomingBehavior). + @override + void handleEvent(PointerEvent event, BoxHitTestEntry entry) { + if (event is PointerMoveEvent) { + _handlePointerMove(event); + } else if (event is PointerHoverEvent) { + _handlePointerHover(event); + } else if (event is PointerCancelEvent || event is PointerUpEvent) { + _hideCrosshair(immediately: true); + } + } + + void _handlePointerMove(PointerMoveEvent details) { + if (activationMode == ActivationMode.singleTap) { + _showCrosshair(parentBox!.globalToLocal(details.position)); + } + } + + void _handlePointerHover(PointerHoverEvent details) { + if (activationMode == ActivationMode.singleTap) { + _showCrosshair(parentBox!.globalToLocal(details.position)); + } + } + + /// Called when a pointer or mouse enter on the screen. + @override + void handlePointerEnter(PointerEnterEvent details) { + if (activationMode == ActivationMode.singleTap) { + _showCrosshair(parentBox!.globalToLocal(details.position)); + } + } + + /// Called when a pointer or mouse exit on the screen. + @override + void handlePointerExit(PointerExitEvent details) { + _hideCrosshair(immediately: true); + } + + /// Called when a long press gesture by a primary button has been + /// recognized in behavior. + @override + void handleLongPressStart(LongPressStartDetails details) { + if (activationMode == ActivationMode.longPress) { + _showCrosshair(parentBox!.globalToLocal(details.globalPosition)); + } + } + + /// Called when moving after the long press gesture by a primary button is + /// recognized in behavior. + @override + void handleLongPressMoveUpdate(LongPressMoveUpdateDetails details) { + if (activationMode == ActivationMode.longPress) { + _showCrosshair(parentBox!.globalToLocal(details.globalPosition)); + } + } + + /// Called when the pointer stops contacting the screen after a long-press + /// by a primary button in behavior. + @override + void handleLongPressEnd(LongPressEndDetails details) { + _hideCrosshair(); + } + + /// Called when the pointer tap has contacted the screen in behavior. + @override + void handleTapDown(TapDownDetails details) { + if (activationMode == ActivationMode.singleTap) { + _showCrosshair(parentBox!.globalToLocal(details.globalPosition)); + } + } + + /// Called when pointer has stopped contacting screen in behavior. + @override + void handleTapUp(TapUpDetails details) { + _hideCrosshair(); + } + + /// Called when pointer tap has contacted the screen double time in behavior. + @override + void handleDoubleTap(Offset position) { + if (activationMode == ActivationMode.doubleTap) { + _showCrosshair(parentBox!.globalToLocal(position)); + _hideCrosshair(doubleTapHideDelay: 200); + } + } + + void _showCrosshair(Offset localPosition) { + if (enable) { + show(localPosition.dx, localPosition.dy, 'pixel'); + } + } + + void _hideCrosshair({int doubleTapHideDelay = 0, bool immediately = false}) { + if (immediately) { + hide(); + } else if (!shouldAlwaysShow) { + final int hideDelayDuration = + hideDelay > 0 ? hideDelay.toInt() : doubleTapHideDelay; + _crosshairHideTimer?.cancel(); + _crosshairHideTimer = + Timer(Duration(milliseconds: hideDelayDuration), () { + _crosshairHideTimer = null; + hide(); + }); + } + } + + void _resetCrosshairHolders() { + _verticalPaths.clear(); + _horizontalPaths.clear(); + _verticalLabels.clear(); + _horizontalLabels.clear(); + _verticalLabelPositions.clear(); + _horizontalLabelPositions.clear(); + } + + void _show() { + final RenderBehaviorArea? parent = parentBox as RenderBehaviorArea?; + if (_position == null || parent == null) { + return; + } + + final RenderCartesianAxes? cartesianAxes = parent.cartesianAxes; + if (cartesianAxes == null) { + return; + } + + _calculateTooltipLabelAndPositions(parent, cartesianAxes); + parent.invalidate(); + } + + void _calculateTooltipLabelAndPositions( + RenderBehaviorArea parent, RenderCartesianAxes cartesianAxes) { + final Rect plotAreaBounds = parent.paintBounds; + if (plotAreaBounds.contains(_position!)) { + _resetCrosshairHolders(); + + final Offset plotAreaOffset = + (parent.parentData! as BoxParentData).offset; + RenderChartAxis? child = cartesianAxes.firstChild; + while (child != null) { + final InteractiveTooltip interactiveTooltip = child.interactiveTooltip; + if (child.isVisible && + interactiveTooltip.enable && + child.visibleLabels.isNotEmpty) { + final TextStyle textStyle = child.chartThemeData!.crosshairTextStyle! + .merge(interactiveTooltip.textStyle); + + final Offset parentDataOffset = + (child.parentData! as BoxParentData).offset; + final Offset axisOffset = parentDataOffset.translate( + -plotAreaOffset.dx, -plotAreaOffset.dy); + final Rect axisBounds = axisOffset & child.size; + + if (child.isVertical) { + _computeVerticalAxisTooltips( + child, + _position!, + textStyle, + axisBounds, + plotAreaBounds, + interactiveTooltip.arrowLength, + interactiveTooltip.arrowWidth, + interactiveTooltip.borderRadius, + ); + } else { + _computeHorizontalAxisTooltips( + child, + _position!, + textStyle, + axisBounds, + plotAreaBounds, + interactiveTooltip.arrowLength, + interactiveTooltip.arrowWidth, + interactiveTooltip.borderRadius, + ); + } + } + + final CartesianAxesParentData childParentData = + child.parentData! as CartesianAxesParentData; + child = childParentData.nextSibling; + } + } + } + + void _computeHorizontalAxisTooltips( + RenderChartAxis axis, + Offset position, + TextStyle textStyle, + Rect axisBounds, + Rect plotAreaBounds, + double arrowLength, + double arrowWidth, + double borderRadius, + ) { + final num actualXValue = _actualXValue(axis, position, plotAreaBounds); + String label = _resultantString(axis, actualXValue); + label = _triggerCrosshairCallback(axis, label, actualXValue); + final Size labelSize = measureText(label, textStyle); + + final String tooltipPosition = axis.opposedPosition ? 'Top' : 'Bottom'; + final Rect tooltipRect = _calculateTooltipRect( + tooltipPosition, position, labelSize, axisBounds, arrowLength); + + final Rect validatedRect = _validateRectBounds(tooltipRect, axisBounds); + _validateRectXPosition(validatedRect, plotAreaBounds); + + final RRect tooltipRRect = + RRect.fromRectAndRadius(validatedRect, Radius.circular(borderRadius)); + + final Path tooltipAndArrowPath = Path() + ..addRRect(tooltipRRect) + ..addPath( + _tooltipArrowHeadPath( + tooltipPosition, tooltipRRect, position, arrowLength, arrowWidth), + Offset.zero); + + _horizontalPaths.add(tooltipAndArrowPath); + _horizontalLabels.add(label); + _horizontalLabelPositions.add(_textPosition(tooltipRRect, labelSize)); + } + + void _computeVerticalAxisTooltips( + RenderChartAxis axis, + Offset position, + TextStyle textStyle, + Rect axisBounds, + Rect plotAreaBounds, + double arrowLength, + double arrowWidth, + double borderRadius, + ) { + final num actualYValue = _actualYValue(axis, position); + String label = _resultantString(axis, actualYValue); + label = _triggerCrosshairCallback(axis, label, actualYValue); + final Size labelSize = measureText(label, textStyle); + + final String tooltipPosition = axis.opposedPosition ? 'Right' : 'Left'; + final Rect tooltipRect = _calculateTooltipRect( + tooltipPosition, position, labelSize, axisBounds, arrowLength); + + final Rect validatedRect = _validateRectBounds(tooltipRect, axisBounds); + _validateRectYPosition(validatedRect, plotAreaBounds); + + final RRect tooltipRRect = + RRect.fromRectAndRadius(validatedRect, Radius.circular(borderRadius)); + + final Path tooltipAndArrowPath = Path() + ..addRRect(tooltipRRect) + ..addPath( + _tooltipArrowHeadPath( + tooltipPosition, tooltipRRect, position, arrowLength, arrowWidth), + Offset.zero); + + _verticalPaths.add(tooltipAndArrowPath); + _verticalLabels.add(label); + _verticalLabelPositions.add(_textPosition(tooltipRRect, labelSize)); + } + + num _actualXValue( + RenderChartAxis axis, Offset position, Rect plotAreaBounds) { + return axis.pixelToPoint(axis.paintBounds, + position.dx - plotAreaBounds.left, position.dy - plotAreaBounds.top); + } + + num _actualYValue(RenderChartAxis axis, Offset position) { + return axis.pixelToPoint(axis.paintBounds, position.dx, position.dy); + } + + String _triggerCrosshairCallback( + RenderChartAxis axis, String label, num value) { + final RenderBehaviorArea? parent = parentBox as RenderBehaviorArea?; + if (parent != null && + parent.onCrosshairPositionChanging != null && + parent.chartThemeData != null) { + final CrosshairRenderArgs crosshairEventArgs = CrosshairRenderArgs( + axis.widget, + _rawValue(axis, value), + axis.name, + axis.isVertical ? AxisOrientation.vertical : AxisOrientation.horizontal, + ); + crosshairEventArgs.text = label; + parent.onCrosshairPositionChanging!(crosshairEventArgs); + return crosshairEventArgs.text; + } + return label; + } + + Rect _validateRectBounds(Rect tooltipRect, Rect axisBounds) { + const double padding = 0.5; // Padding between the corners. + Rect validatedRect = tooltipRect; + double difference = 0; + + if (tooltipRect.left < axisBounds.left) { + difference = (axisBounds.left - tooltipRect.left) + padding; + validatedRect = validatedRect.translate(difference, 0); + } + if (tooltipRect.right > axisBounds.right) { + difference = (tooltipRect.right - axisBounds.right) + padding; + validatedRect = validatedRect.translate(-difference, 0); + } + if (tooltipRect.top < axisBounds.top) { + difference = (axisBounds.top - tooltipRect.top) + padding; + validatedRect = validatedRect.translate(0, difference); + } + + if (tooltipRect.bottom > axisBounds.bottom) { + difference = (tooltipRect.bottom - axisBounds.bottom) + padding; + validatedRect = validatedRect.translate(0, -difference); + } + return validatedRect; + } + + Rect _validateRectXPosition(Rect labelRect, Rect axisClipRect) { + if (labelRect.right >= axisClipRect.right) { + return Rect.fromLTRB( + labelRect.left - (labelRect.right - axisClipRect.right), + labelRect.top, + axisClipRect.right, + labelRect.bottom); + } else if (labelRect.left <= axisClipRect.left) { + return Rect.fromLTRB( + axisClipRect.left, + labelRect.top, + labelRect.right + (axisClipRect.left - labelRect.left), + labelRect.bottom); + } + return labelRect; + } + + Rect _validateRectYPosition(Rect labelRect, Rect axisClipRect) { + if (labelRect.bottom >= axisClipRect.bottom) { + return Rect.fromLTRB( + labelRect.left, + labelRect.top - (labelRect.bottom - axisClipRect.bottom), + labelRect.right, + axisClipRect.bottom); + } else if (labelRect.top <= axisClipRect.top) { + return Rect.fromLTRB(labelRect.left, axisClipRect.top, labelRect.right, + labelRect.bottom + (axisClipRect.top - labelRect.top)); + } + return labelRect; + } + + Rect _calculateTooltipRect(String axis, Offset position, Size labelSize, + Rect axisBounds, double arrowLength) { + final double labelWidthWithPadding = labelSize.width + crosshairPadding; + final double labelHeightWithPadding = labelSize.height + crosshairPadding; + switch (axis) { + case 'Left': + return Rect.fromLTWH( + axisBounds.right - labelWidthWithPadding - arrowLength, + position.dy - (labelHeightWithPadding / 2), + labelWidthWithPadding, + labelHeightWithPadding); + + case 'Right': + return Rect.fromLTWH( + axisBounds.left + arrowLength, + position.dy - (labelHeightWithPadding / 2), + labelSize.width + crosshairPadding, + labelHeightWithPadding); + + case 'Top': + return Rect.fromLTWH( + position.dx - (labelWidthWithPadding / 2), + axisBounds.bottom - labelHeightWithPadding - arrowLength, + labelWidthWithPadding, + labelHeightWithPadding); + + case 'Bottom': + return Rect.fromLTWH( + position.dx - (labelWidthWithPadding / 2), + axisBounds.top + arrowLength, + labelWidthWithPadding, + labelSize.height + crosshairPadding); + } + return Rect.zero; + } + + Path _tooltipArrowHeadPath(String axis, RRect tooltipRect, Offset position, + double arrowLength, double arrowWidth) { + final Path arrowPath = Path(); + final double tooltipLeft = tooltipRect.left; + final double tooltipRight = tooltipRect.right; + final double tooltipTop = tooltipRect.top; + final double tooltipBottom = tooltipRect.bottom; + final double rectHalfWidth = tooltipRect.width / 2; + final double rectHalfHeight = tooltipRect.height / 2; + switch (axis) { + case 'Left': + arrowPath.moveTo( + tooltipRight, tooltipTop + rectHalfHeight - arrowWidth); + arrowPath.lineTo( + tooltipRight, tooltipBottom - rectHalfHeight + arrowWidth); + arrowPath.lineTo(tooltipRight + arrowLength, position.dy); + arrowPath.close(); + return arrowPath; + + case 'Right': + arrowPath.moveTo(tooltipLeft, tooltipTop + rectHalfHeight - arrowWidth); + arrowPath.lineTo( + tooltipLeft, tooltipBottom - rectHalfHeight + arrowWidth); + arrowPath.lineTo(tooltipLeft - arrowLength, position.dy); + arrowPath.close(); + return arrowPath; + + case 'Top': + arrowPath.moveTo(position.dx, tooltipBottom + arrowLength); + arrowPath.lineTo( + (tooltipRight - rectHalfWidth) + arrowWidth, tooltipBottom); + arrowPath.lineTo( + (tooltipLeft + rectHalfWidth) - arrowWidth, tooltipBottom); + arrowPath.close(); + return arrowPath; + + case 'Bottom': + arrowPath.moveTo(position.dx, tooltipTop - arrowLength); + arrowPath.lineTo( + (tooltipRight - rectHalfWidth) + arrowWidth, tooltipTop); + arrowPath.lineTo( + (tooltipLeft + rectHalfWidth) - arrowWidth, tooltipTop); + arrowPath.close(); + return arrowPath; + } + return arrowPath; + } + + Offset _textPosition(RRect tooltipRect, Size labelSize) { + return Offset( + (tooltipRect.left + tooltipRect.width / 2) - labelSize.width / 2, + (tooltipRect.top + tooltipRect.height / 2) - labelSize.height / 2); + } + + String _resultantString(RenderChartAxis axis, num actualValue) { + final String resultantString = + _interactiveTooltipLabel(actualValue, axis).toString(); + if (axis.interactiveTooltip.format != null) { + return axis.interactiveTooltip.format! + .replaceAll('{value}', resultantString); + } else { + return resultantString; + } + } + + /// To get interactive tooltip label. + String _interactiveTooltipLabel(num value, RenderChartAxis axis) { + if (axis is RenderCategoryAxis) { + final num index = value < 0 ? 0 : value; + final List labels = axis.labels; + final int labelsLength = labels.length; + return labels[(index.round() >= labelsLength + ? (index.round() > labelsLength + ? labelsLength - 1 + : index - 1) + : index) + .round()] + .toString(); + } else if (axis is RenderDateTimeCategoryAxis) { + final num index = value < 0 ? 0 : value; + final List labels = axis.labels; + final int labelsLength = labels.length; + final int milliseconds = labels[(index.round() >= labelsLength + ? (index.round() > labelsLength ? labelsLength - 1 : index - 1) + : index) + .round()]; + final num interval = axis.visibleRange!.minimum.ceil(); + final num previousInterval = + labels.isNotEmpty ? labels[labelsLength - 1] : interval; + final DateFormat dateFormat = axis.dateFormat ?? + dateTimeCategoryAxisLabelFormat( + axis, interval.toInt(), previousInterval.toInt()); + return dateFormat + .format(DateTime.fromMillisecondsSinceEpoch(milliseconds.toInt())); + } else if (axis is RenderDateTimeAxis) { + final num interval = axis.visibleRange!.minimum.ceil(); + final List visibleLabels = axis.visibleLabels; + final num previousInterval = visibleLabels.isNotEmpty + ? visibleLabels[visibleLabels.length - 1].value + : interval; + final DateFormat dateFormat = axis.dateFormat ?? + dateTimeAxisLabelFormat( + axis, interval.toInt(), previousInterval.toInt()); + return dateFormat + .format(DateTime.fromMillisecondsSinceEpoch(value.toInt())); + } else if (axis is RenderLogarithmicAxis) { + return logAxisLabel( + axis, axis.toPow(value), axis.interactiveTooltip.decimalPlaces); + } else if (axis is RenderNumericAxis) { + return numericAxisLabel( + axis, value, axis.interactiveTooltip.decimalPlaces); + } else { + return ''; + } + } + + // It specifies for callback value field. + dynamic _rawValue(RenderChartAxis axis, num value) { + if (axis is RenderCategoryAxis) { + final num index = value < 0 ? 0 : value; + final int labelsLength = axis.labels.length; + final String? label = axis.labels[(index.round() >= labelsLength + ? (index.round() > labelsLength ? labelsLength - 1 : index - 1) + : index) + .round()]; + return axis.labels.indexOf(label); + } else if (axis is RenderDateTimeCategoryAxis) { + final num index = value < 0 ? 0 : value; + final int labelsLength = axis.labels.length; + return axis.labels[(index.round() >= labelsLength + ? (index.round() > labelsLength ? labelsLength - 1 : index - 1) + : index) + .round()]; + } else { + return value; + } + } + + /// Override this method to customize the crosshair tooltips & line rendering. + @override + void onPaint(PaintingContext context, Offset offset, + SfChartThemeData chartThemeData, ThemeData themeData) { + final RenderBehaviorArea? parent = parentBox as RenderBehaviorArea?; + if (_position == null || parent == null) { + return; + } + + if (parent.paintBounds.contains(_position!)) { + _drawCrosshairLines(context, _position!, parent, chartThemeData); + _drawCrosshairTooltip(context, parent); + } + } + + void _drawCrosshairLines(PaintingContext context, Offset offset, + RenderBehaviorArea parent, SfChartThemeData chartThemeData) { + Color crosshairLineColor = + (lineColor ?? chartThemeData.crosshairLineColor)!; + if (parent.onCrosshairPositionChanging != null && + parent.chartThemeData != null) { + final CrosshairRenderArgs crosshairEventArgs = CrosshairRenderArgs(); + crosshairEventArgs.text = ''; + crosshairEventArgs.lineColor = crosshairLineColor; + parent.onCrosshairPositionChanging!(crosshairEventArgs); + crosshairLineColor = crosshairEventArgs.lineColor; + } + + final Paint paint = Paint() + ..isAntiAlias = true + ..color = crosshairLineColor + ..strokeWidth = lineWidth + ..style = PaintingStyle.stroke; + + switch (lineType) { + case CrosshairLineType.both: + drawHorizontalAxisLine(context, offset, lineDashArray, paint); + drawVerticalAxisLine(context, offset, lineDashArray, paint); + break; + + case CrosshairLineType.horizontal: + drawHorizontalAxisLine(context, offset, lineDashArray, paint); + break; + + case CrosshairLineType.vertical: + drawVerticalAxisLine(context, offset, lineDashArray, paint); + break; + + case CrosshairLineType.none: + break; + } + } + + /// Override this method to customize the horizontal line drawing and styling. + @protected + void drawHorizontalAxisLine(PaintingContext context, Offset offset, + List? dashArray, Paint paint) { + if (parentBox == null) { + return; + } + + final Rect plotAreaBounds = parentBox!.paintBounds; + final Offset start = Offset(plotAreaBounds.left, offset.dy); + final Offset end = Offset(plotAreaBounds.right, offset.dy); + drawDashes(context.canvas, dashArray, paint, start: start, end: end); + } + + /// Override this method to customize the vertical line drawing and styling. + @protected + void drawVerticalAxisLine(PaintingContext context, Offset offset, + List? dashArray, Paint paint) { + if (parentBox == null) { + return; + } + + final Rect plotAreaBounds = parentBox!.paintBounds; + final Offset start = Offset(offset.dx, plotAreaBounds.top); + final Offset end = Offset(offset.dx, plotAreaBounds.bottom); + drawDashes(context.canvas, dashArray, paint, start: start, end: end); + } + + void _drawCrosshairTooltip( + PaintingContext context, RenderBehaviorArea parent) { + final RenderCartesianAxes? cartesianAxes = parent.cartesianAxes; + if (cartesianAxes == null) { + return; + } + + final Color themeBackgroundColor = + parent.chartThemeData!.crosshairBackgroundColor!; + _drawHorizontalAxisTooltip(context, cartesianAxes, themeBackgroundColor); + _drawVerticalAxisTooltip(context, cartesianAxes, themeBackgroundColor); + } + + void _drawHorizontalAxisTooltip(PaintingContext context, + RenderCartesianAxes cartesianAxes, Color themeBackgroundColor) { + if (_horizontalPaths.isNotEmpty && + _horizontalLabels.isNotEmpty && + _horizontalLabelPositions.isNotEmpty) { + final Paint fillPaint = Paint() + ..isAntiAlias = true + ..style = PaintingStyle.fill; + final Paint strokePaint = Paint() + ..isAntiAlias = true + ..style = PaintingStyle.stroke; + + RenderChartAxis? child = cartesianAxes.firstChild; + int index = 0; + while (child != null) { + final InteractiveTooltip interactiveTooltip = child.interactiveTooltip; + if (!child.isVertical && + child.isVisible && + interactiveTooltip.enable && + child.visibleLabels.isNotEmpty) { + final TextStyle textStyle = child.chartThemeData!.crosshairTextStyle! + .merge(interactiveTooltip.textStyle); + fillPaint.color = interactiveTooltip.color ?? themeBackgroundColor; + strokePaint + ..color = interactiveTooltip.borderColor ?? themeBackgroundColor + ..strokeWidth = interactiveTooltip.borderWidth; + + drawHorizontalAxisTooltip( + context, + _horizontalLabelPositions[index], + _horizontalLabels[index], + textStyle, + _horizontalPaths[index], + fillPaint, + strokePaint); + + index++; + } + + final CartesianAxesParentData childParentData = + child.parentData! as CartesianAxesParentData; + child = childParentData.nextSibling; + } + } + } + + void _drawVerticalAxisTooltip(PaintingContext context, + RenderCartesianAxes cartesianAxes, Color themeBackgroundColor) { + if (_verticalPaths.isNotEmpty && + _verticalLabels.isNotEmpty && + _verticalLabelPositions.isNotEmpty) { + final Paint fillPaint = Paint() + ..isAntiAlias = true + ..style = PaintingStyle.fill; + final Paint strokePaint = Paint() + ..isAntiAlias = true + ..style = PaintingStyle.stroke; + + RenderChartAxis? child = cartesianAxes.firstChild; + int index = 0; + while (child != null) { + final InteractiveTooltip interactiveTooltip = child.interactiveTooltip; + if (child.isVertical && + child.isVisible && + interactiveTooltip.enable && + child.visibleLabels.isNotEmpty) { + final TextStyle textStyle = child.chartThemeData!.crosshairTextStyle! + .merge(interactiveTooltip.textStyle); + fillPaint.color = interactiveTooltip.color ?? themeBackgroundColor; + strokePaint + ..color = interactiveTooltip.borderColor ?? themeBackgroundColor + ..strokeWidth = interactiveTooltip.borderWidth; + + drawVerticalAxisTooltip( + context, + _verticalLabelPositions[index], + _verticalLabels[index], + textStyle, + _verticalPaths[index], + fillPaint, + strokePaint); + + index++; + } + + final CartesianAxesParentData childParentData = + child.parentData! as CartesianAxesParentData; + child = childParentData.nextSibling; + } + } + } + + /// Override this method to customize the horizontal axis tooltip with styling + /// and it's position. + @protected + void drawHorizontalAxisTooltip( + PaintingContext context, Offset position, String text, TextStyle style, + [Path? path, Paint? fillPaint, Paint? strokePaint]) { + _drawTooltipAndLabel( + context, position, text, style, path, fillPaint, strokePaint); + } + + /// Override this method to customize the vertical axis tooltip with styling + /// and it's position. + @protected + void drawVerticalAxisTooltip( + PaintingContext context, Offset position, String text, TextStyle style, + [Path? path, Paint? fillPaint, Paint? strokePaint]) { + _drawTooltipAndLabel( + context, position, text, style, path, fillPaint, strokePaint); + } + + void _drawTooltipAndLabel( + PaintingContext context, Offset position, String text, TextStyle style, + [Path? path, Paint? fillPaint, Paint? strokePaint]) { + if (text.isEmpty) { + return; + } + + // Draw tooltip rectangle. + if (path != null && fillPaint != null && strokePaint != null) { + context.canvas.drawPath(path, strokePaint); + context.canvas.drawPath(path, fillPaint); + } + + // Draw label. + final TextPainter textPainter = TextPainter( + text: TextSpan(text: text, style: style), + textAlign: TextAlign.center, + maxLines: getMaxLinesContent(text), + textDirection: TextDirection.rtl); + textPainter + ..layout() + ..paint(context.canvas, position); + } +} diff --git a/packages/syncfusion_flutter_charts/lib/src/charts/behaviors/trackball.dart b/packages/syncfusion_flutter_charts/lib/src/charts/behaviors/trackball.dart new file mode 100644 index 000000000..ec140b9a1 --- /dev/null +++ b/packages/syncfusion_flutter_charts/lib/src/charts/behaviors/trackball.dart @@ -0,0 +1,3162 @@ +import 'dart:async'; +import 'dart:ui'; + +import 'package:flutter/gestures.dart'; +import 'package:flutter/material.dart' hide Image; +import 'package:flutter/rendering.dart'; +import 'package:flutter/services.dart'; +import 'package:syncfusion_flutter_core/core.dart'; +import 'package:syncfusion_flutter_core/theme.dart'; + +import '../axis/axis.dart'; +import '../axis/category_axis.dart'; +import '../axis/datetime_category_axis.dart'; +import '../base.dart'; +import '../common/callbacks.dart'; +import '../common/chart_point.dart'; +import '../common/interactive_tooltip.dart'; +import '../common/marker.dart'; +import '../indicators/technical_indicator.dart'; +import '../interactions/behavior.dart'; +import '../series/bar_series.dart'; +import '../series/chart_series.dart'; +import '../utils/constants.dart'; +import '../utils/enum.dart'; +import '../utils/helper.dart'; +import '../utils/typedef.dart'; + +/// Customizes the trackball. +/// +/// Trackball feature displays the tooltip for the data points that are closer +/// to the point where you touch on the chart area. +/// This feature can be enabled using enable property of [TrackballBehavior]. +/// +/// Provides options to customize the [activationMode], [tooltipDisplayMode], +/// [lineType] and [tooltipSettings]. +class TrackballBehavior extends ChartBehavior { + /// Creating an argument constructor of TrackballBehavior class. + TrackballBehavior({ + this.activationMode = ActivationMode.longPress, + this.lineType = TrackballLineType.vertical, + this.tooltipDisplayMode = TrackballDisplayMode.floatAllPoints, + this.tooltipAlignment = ChartAlignment.center, + this.tooltipSettings = const InteractiveTooltip(), + this.markerSettings, + this.lineDashArray, + this.enable = false, + this.lineColor, + this.lineWidth = 1, + this.shouldAlwaysShow = false, + this.builder, + this.hideDelay = 0, + }) { + _fetchImage(); + } + + /// Toggles the visibility of the trackball. + /// + /// Defaults to `false`. + /// + /// ```dart + /// late TrackballBehavior trackballBehavior; + /// + /// void initState() { + /// trackballBehavior = TrackballBehavior(enable: true); + /// super.initState(); + /// } + /// + /// Widget build(BuildContext context) { + /// return SfCartesianChart( + /// trackballBehavior: trackballBehavior + /// ); + /// } + /// ``` + final bool enable; + + /// Width of the track line. + /// + /// Defaults to `1`. + /// + /// ```dart + /// late TrackballBehavior trackballBehavior; + /// + /// void initState() { + /// trackballBehavior = TrackballBehavior( + /// enable: true, + /// lineWidth: 5 + /// ); + /// super.initState(); + /// } + /// + /// Widget build(BuildContext context) { + /// return SfCartesianChart( + /// trackballBehavior: trackballBehavior + /// ); + /// } + /// ``` + final double lineWidth; + + /// Color of the track line. + /// + /// Defaults to `null`. + /// + /// ```dart + /// late TrackballBehavior trackballBehavior; + /// + /// void initState() { + /// trackballBehavior = TrackballBehavior( + /// enable: true, + /// lineColor: Colors.red + /// ); + /// super.initState(); + /// } + /// + /// Widget build(BuildContext context) { + /// return SfCartesianChart( + /// trackballBehavior: trackballBehavior + /// ); + /// } + /// ``` + final Color? lineColor; + + /// Dashes of the track line. + /// + /// Defaults to `null`. + /// + /// ```dart + /// late TrackballBehavior trackballBehavior; + /// + /// void initState() { + /// trackballBehavior = TrackballBehavior( + /// enable: true, + /// lineDashArray: [10,10] + /// ); + /// super.initState(); + /// } + /// + /// Widget build(BuildContext context) { + /// return SfCartesianChart( + /// trackballBehavior: trackballBehavior + /// ); + /// } + /// ``` + final List? lineDashArray; + + /// Gesture for activating the trackball. + /// + /// Trackball can be activated in tap, double tap and long press. + /// + /// Defaults to `ActivationMode.longPress`. + /// + /// Also refer [ActivationMode]. + /// + /// ```dart + /// late TrackballBehavior trackballBehavior; + /// + /// void initState() { + /// trackballBehavior = TrackballBehavior( + /// enable: true, + /// activationMode: ActivationMode.doubleTap + /// ); + /// super.initState(); + /// } + /// + /// Widget build(BuildContext context) { + /// return SfCartesianChart( + /// trackballBehavior: trackballBehavior + /// ); + /// } + /// ``` + final ActivationMode activationMode; + + /// Alignment of the trackball tooltip. + /// + /// The trackball tooltip can be aligned at the top, bottom, and center + /// position of the chart. + /// + /// _Note:_ This is applicable only when the `tooltipDisplayMode` property + /// is set to `TrackballDisplayMode.groupAllPoints`. + /// + /// Defaults to `ChartAlignment.center` + /// + /// ```dart + /// late TrackballBehavior trackballBehavior; + /// + /// void initState() { + /// trackballBehavior = TrackballBehavior( + /// enable: true, + /// tooltipDisplayMode: TrackballDisplayMode.groupAllPoints, + /// tooltipAlignment: ChartAlignment.far + /// ); + /// super.initState(); + /// } + /// + /// Widget build(BuildContext context) { + /// return SfCartesianChart( + /// trackballBehavior: trackballBehavior + /// ); + /// } + /// ``` + final ChartAlignment tooltipAlignment; + + /// Type of trackball line. By default, vertical line will be displayed. + /// + /// You can change this by specifying values to this property. + /// + /// Defaults to `TrackballLineType.vertical`. + /// + /// Also refer [TrackballLineType] + /// + /// ```dart + /// late TrackballBehavior trackballBehavior; + /// + /// void initState() { + /// trackballBehavior = TrackballBehavior( + /// enable: true, + /// lineType: TrackballLineType.vertical + /// ); + /// super.initState(); + /// } + /// + /// Widget build(BuildContext context) { + /// return SfCartesianChart( + /// trackballBehavior: trackballBehavior + /// ); + /// } + /// ``` + final TrackballLineType lineType; + + /// Display mode of tooltip. + /// + /// By default, tooltip of all the series under the current point index value + /// will be shown. + /// + /// Defaults to `TrackballDisplayMode.floatAllPoints`. + /// + /// Also refer [TrackballDisplayMode]. + /// + /// ```dart + /// late TrackballBehavior trackballBehavior; + /// + /// void initState() { + /// trackballBehavior = TrackballBehavior( + /// enable: true, + /// tooltipDisplayMode: TrackballDisplayMode.groupAllPoints + /// ); + /// super.initState(); + /// } + /// + /// Widget build(BuildContext context) { + /// return SfCartesianChart( + /// trackballBehavior: trackballBehavior + /// ); + /// } + /// ``` + final TrackballDisplayMode tooltipDisplayMode; + + /// Shows or hides the trackball. + /// + /// By default, the trackball will be hidden on touch. To avoid this, + /// set this property to true. + /// + /// Defaults to `false`. + /// + /// ```dart + /// late TrackballBehavior trackballBehavior; + /// + /// void initState() { + /// trackballBehavior = TrackballBehavior( + /// enable: true, + /// shouldAlwaysShow: true + /// ); + /// super.initState(); + /// } + /// + /// Widget build(BuildContext context) { + /// return SfCartesianChart( + /// trackballBehavior: trackballBehavior + /// ); + /// } + /// ``` + final bool shouldAlwaysShow; + + /// Customizes the trackball tooltip. + /// + /// ```dart + /// late TrackballBehavior trackballBehavior; + /// + /// void initState() { + /// trackballBehavior = TrackballBehavior( + /// enable: true, + /// canShowMarker: false + /// ); + /// super.initState(); + /// } + /// + /// Widget build(BuildContext context) { + /// return SfCartesianChart( + /// trackballBehavior: trackballBehavior + /// ); + /// } + /// ``` + final InteractiveTooltip tooltipSettings; + + /// Giving disappear delay for trackball. + /// + /// Defaults to `0`. + /// + /// ```dart + /// late TrackballBehavior trackballBehavior; + /// + /// void initState() { + /// trackballBehavior = TrackballBehavior( + /// enable: true, + /// hideDelay: 2000 + /// ); + /// super.initState(); + /// } + /// + /// Widget build(BuildContext context) { + /// return SfCartesianChart( + /// trackballBehavior: trackballBehavior, + /// ); + /// } + /// ``` + final double hideDelay; + + /// Builder of the trackball tooltip. + /// + /// Add any custom widget as the trackball template. + /// + /// If the trackball display mode is `groupAllPoints` or `nearestPoint` + /// it will called once and if it is + /// `floatAllPoints`, it will be called for each point. + /// + /// Defaults to `null`. + /// + /// ```dart + /// late TrackballBehavior trackballBehavior; + /// + /// void initState() { + /// trackballBehavior = TrackballBehavior( + /// enable: true, + /// builder: (BuildContext context, TrackballDetails trackballDetails) { + /// return Container( + /// width: 70, + /// decoration: + /// const BoxDecoration(color: Color.fromRGBO(66, 244, 164, 1)), + /// child: Text('${trackballDetails.point?.cumulative}') + /// ); + /// } + /// ); + /// super.initState(); + /// } + /// + /// Widget build(BuildContext context) { + /// return SfCartesianChart( + /// trackballBehavior: trackballBehavior + /// ); + /// } + /// ``` + final ChartTrackballBuilder? builder; + + /// Hold trackball target position. + Offset? _position; + Offset? _dividerStartOffset; + Offset? _dividerEndOffset; + Timer? _trackballHideTimer; + SfChartThemeData? _chartThemeData; + ThemeData? _themeData; + Rect _plotAreaBounds = Rect.zero; + Image? _trackballImage; + bool _isTransposed = false; + bool _isLeft = false; + bool _isRight = false; + bool _isTop = false; + + List chartPointInfo = []; + final List _visiblePoints = []; + final List<_TooltipLabels> _tooltipLabels = <_TooltipLabels>[]; + final List _lineMarkers = []; + final List _tooltipMarkers = []; + final List _tooltipPaths = []; + + @override + bool operator ==(Object other) { + if (identical(this, other)) { + return true; + } + if (other.runtimeType != runtimeType) { + return false; + } + + return other is TrackballBehavior && + other.activationMode == activationMode && + other.lineType == lineType && + other.tooltipDisplayMode == tooltipDisplayMode && + other.tooltipAlignment == tooltipAlignment && + other.tooltipSettings == tooltipSettings && + other.lineDashArray == lineDashArray && + other.markerSettings == markerSettings && + other.enable == enable && + other.lineColor == lineColor && + other.lineWidth == lineWidth && + other.shouldAlwaysShow == shouldAlwaysShow && + other.builder == builder && + other.hideDelay == hideDelay; + } + + @override + int get hashCode { + final List values = [ + activationMode, + lineType, + tooltipDisplayMode, + tooltipAlignment, + tooltipSettings, + markerSettings, + lineDashArray, + enable, + lineColor, + lineWidth, + shouldAlwaysShow, + builder, + hideDelay + ]; + return Object.hashAll(values); + } + + /// Options to customize the markers that are displayed when trackball is + /// enabled. + /// + /// Trackball markers are used to provide information about the exact point + /// location, when the trackball is visible. You can add a shape to adorn each + /// data point. Trackball markers can be enabled by using the + /// `markerVisibility` property in [TrackballMarkerSettings]. + /// + /// Provides the options like color, border width, border color and shape of + /// the marker to customize the appearance. + final TrackballMarkerSettings? markerSettings; + + /// Displays the trackball at the specified x and y-positions. + /// + /// *x and y - x & y pixels/values at which the trackball needs to be shown. + /// + /// coordinateUnit - specify the type of x and y values given. + /// + /// `pixel` or `point` for logical pixel and chart data point respectively. + /// + /// Defaults to `point`. + void show(dynamic x, double y, [String coordinateUnit = 'point']) { + final RenderBehaviorArea? parent = parentBox as RenderBehaviorArea?; + if (parent == null) { + return; + } + + assert(x != null); + assert(!y.isNaN); + if (coordinateUnit == 'point') { + _position = rawValueToPixelPoint( + x, y, parent.xAxis, parent.yAxis, parent.isTransposed); + } else if (coordinateUnit == 'pixel') { + if (x is num) { + _position = Offset(x.toDouble(), y); + } else { + _position = Offset( + rawValueToPixelPoint( + x, y, parent.xAxis, parent.yAxis, parent.isTransposed) + .dx, + y); + } + } + + _show(); + } + + /// Displays the trackball at the specified point index. + /// + /// * pointIndex - index of the point for which the trackball must be shown + void showByIndex(int pointIndex) { + final RenderBehaviorArea? parent = parentBox as RenderBehaviorArea?; + if (parent != null && parent.plotArea != null) { + final CartesianSeriesRenderer? series = + parent.plotArea!.firstChild! as CartesianSeriesRenderer?; + if (series != null) { + final List visibleIndexes = series.visibleIndexes; + if (visibleIndexes.first <= pointIndex && + pointIndex <= visibleIndexes.last) { + show(series.xRawValues[pointIndex], 0); + } + } + } + } + + /// Hides the trackball if it is displayed. + void hide() { + final RenderBehaviorArea? parent = parentBox as RenderBehaviorArea?; + _position = null; + if (builder != null) { + parent?.trackballBuilder!([]); + } + _resetDataHolders(); + parent?.invalidate(); + } + + /// To customize the necessary pointer events in behaviors. + /// (e.g., CrosshairBehavior, TrackballBehavior, ZoomingBehavior). + @override + void handleEvent(PointerEvent event, BoxHitTestEntry entry) { + if (event is PointerMoveEvent) { + _handlePointerMove(event); + } else if (event is PointerHoverEvent) { + _handlePointerHover(event); + } else if (event is PointerCancelEvent || event is PointerUpEvent) { + _hideTrackball(immediately: true); + } + } + + void _handlePointerMove(PointerMoveEvent details) { + if (activationMode == ActivationMode.singleTap) { + _showTrackball(parentBox!.globalToLocal(details.position)); + } + } + + void _handlePointerHover(PointerHoverEvent details) { + if (activationMode == ActivationMode.singleTap) { + _showTrackball(parentBox!.globalToLocal(details.position)); + } + } + + /// Called when a pointer or mouse enter on the screen. + @override + void handlePointerEnter(PointerEnterEvent details) { + if (activationMode == ActivationMode.singleTap) { + _showTrackball(parentBox!.globalToLocal(details.position)); + } + } + + /// Called when a pointer or mouse exit on the screen. + @override + void handlePointerExit(PointerExitEvent details) { + _hideTrackball(immediately: true); + } + + /// Called when a long press gesture by a primary button has been + /// recognized in behavior. + @override + void handleLongPressStart(LongPressStartDetails details) { + if (activationMode == ActivationMode.longPress) { + _showTrackball(parentBox!.globalToLocal(details.globalPosition)); + } + } + + /// Called when moving after the long press gesture by a primary button is + /// recognized in behavior. + @override + void handleLongPressMoveUpdate(LongPressMoveUpdateDetails details) { + if (activationMode == ActivationMode.longPress) { + _showTrackball(parentBox!.globalToLocal(details.globalPosition)); + } + } + + /// Called when the pointer stops contacting the screen after a long-press + /// by a primary button in behavior. + @override + void handleLongPressEnd(LongPressEndDetails details) { + _hideTrackball(); + } + + /// Called when the pointer tap has contacted the screen in behavior. + @override + void handleTapDown(TapDownDetails details) { + if (activationMode == ActivationMode.singleTap) { + _showTrackball(parentBox!.globalToLocal(details.globalPosition)); + } + } + + /// Called when pointer has stopped contacting screen in behavior. + @override + void handleTapUp(TapUpDetails details) { + _hideTrackball(); + } + + /// Called when pointer tap has contacted the screen double time in behavior. + @override + void handleDoubleTap(Offset position) { + if (activationMode == ActivationMode.doubleTap) { + _showTrackball(parentBox!.globalToLocal(position)); + _hideTrackball(doubleTapHideDelay: 200); + } + } + + void _showTrackball(Offset localPosition) { + if (enable) { + show(localPosition.dx, localPosition.dy, 'pixel'); + } + } + + void _hideTrackball({int doubleTapHideDelay = 0, bool immediately = false}) { + if (immediately) { + hide(); + } else if (!shouldAlwaysShow) { + final int hideDelayDuration = + hideDelay > 0 ? hideDelay.toInt() : doubleTapHideDelay; + _trackballHideTimer?.cancel(); + _trackballHideTimer = + Timer(Duration(milliseconds: hideDelayDuration), () { + _trackballHideTimer = null; + hide(); + }); + } + } + + void _fetchImage() { + if (markerSettings != null && + markerSettings!.markerVisibility == TrackballVisibilityMode.visible && + markerSettings!.shape == DataMarkerType.image && + markerSettings!.image != null) { + fetchImage(markerSettings!.image).then((Image? value) { + _trackballImage = value; + (parentBox as RenderBehaviorArea?)?.invalidate(); + }); + } else { + _trackballImage = null; + } + } + + void _show() { + final RenderBehaviorArea? parent = parentBox as RenderBehaviorArea?; + if (_position == null || parent == null) { + return; + } + + _generateAllPoints(parent, _position!); + parent.invalidate(); + if (builder != null) { + final List details = []; + final List chartPoints = []; + final List currentPointIndices = []; + final List visibleSeriesIndices = []; + final List visibleSeriesList = []; + final int length = chartPointInfo.length; + if (tooltipDisplayMode == TrackballDisplayMode.groupAllPoints) { + for (int i = 0; i < length; i++) { + final ChartPointInfo pointInfo = chartPointInfo[i]; + chartPoints.add(pointInfo.chartPoint!); + currentPointIndices.add(pointInfo.dataPointIndex!); + visibleSeriesIndices.add(pointInfo.seriesIndex!); + visibleSeriesList.add(pointInfo.series!); + } + + final TrackballGroupingModeInfo groupingModeInfo = + TrackballGroupingModeInfo(chartPoints, currentPointIndices, + visibleSeriesIndices, visibleSeriesList); + details.add(TrackballDetails(null, null, null, null, groupingModeInfo)); + } else { + for (int i = 0; i < length; i++) { + final ChartPointInfo pointInfo = chartPointInfo[i]; + details.add(TrackballDetails(pointInfo.chartPoint, pointInfo.series!, + pointInfo.dataPointIndex, pointInfo.seriesIndex)); + } + } + parent.trackballBuilder!(details); + chartPoints.clear(); + currentPointIndices.clear(); + visibleSeriesIndices.clear(); + visibleSeriesList.clear(); + } + } + + void _resetDataHolders() { + chartPointInfo.clear(); + _visiblePoints.clear(); + _tooltipLabels.clear(); + _lineMarkers.clear(); + _tooltipMarkers.clear(); + _tooltipPaths.clear(); + _dividerStartOffset = null; + _dividerEndOffset = null; + _isTransposed = false; + _isLeft = false; + _isRight = false; + _isTop = false; + } + + void _generateAllPoints(RenderBehaviorArea parent, Offset position) { + final RenderChartPlotArea? chartPlotArea = parent.plotArea; + if (chartPlotArea == null) { + return; + } + + _resetDataHolders(); + double leastX = 0.0; + final bool isRtl = parent.textDirection == TextDirection.rtl; + final bool isGroupMode = + tooltipDisplayMode == TrackballDisplayMode.groupAllPoints; + _chartThemeData = parent.chartThemeData!; + _themeData = parent.themeData; + _plotAreaBounds = parent.paintBounds; + _isTransposed = parent.isTransposed; + + chartPlotArea.visitChildren((RenderObject child) { + if (child is CartesianSeriesRenderer && + child.controller.isVisible && + child.dataSource != null && + child.dataSource!.isNotEmpty && + child.animationController != null && + !child.animationController!.isAnimating) { + final List nearestPointIndexes = + _findNearestChartPointIndexes(child, position); + for (final int nearestPointIndex in nearestPointIndexes) { + final ChartSegment segment = child.segmentAt(nearestPointIndex); + final TrackballInfo? trackballInfo = + segment.trackballInfo(position, nearestPointIndex); + + if (trackballInfo != null) { + final ChartTrackballInfo trackInfo = + trackballInfo as ChartTrackballInfo; + if (trackInfo.pointIndex >= 0) { + final Offset trackPosition = trackInfo.position!; + double xPos = trackPosition.dx; + double yPos = trackPosition.dy; + final double touchXPos = position.dx; + if (trackInfo.seriesIndex == 0 || + ((leastX - touchXPos).abs() > (xPos - touchXPos).abs())) { + leastX = xPos; + } + + final Rect rect = _plotAreaBounds + .intersect(Rect.fromLTWH(xPos - 1, yPos - 1, 2, 2)); + if (_plotAreaBounds.contains(trackPosition) || + _plotAreaBounds.overlaps(rect)) { + final double touchXPos = position.dx; + if (trackInfo.seriesIndex == 0 || + ((leastX - touchXPos).abs() > (xPos - touchXPos).abs())) { + leastX = xPos; + } + + _visiblePoints.add(Offset(xPos, yPos)); + _addChartPointInfo(trackInfo, xPos, yPos); + if (isGroupMode && leastX >= _plotAreaBounds.left) { + if (_isTransposed) { + yPos = leastX; + } else { + xPos = leastX; + } + } + } + _updateLeastX(leastX, child.dataCount); + if (child is BarSeriesRenderer ? _isTransposed : _isTransposed) { + yPos = leastX; + } else { + xPos = leastX; + } + } + } + } + } + }); + + if (parent.indicatorArea != null) { + parent.indicatorArea!.visitChildren((RenderObject child) { + if (child is IndicatorRenderer && child.effectiveIsVisible) { + final List? trackballInfo = + child.trackballInfo(position); + if (trackballInfo != null && + trackballInfo.isNotEmpty && + child.animationFactor == 1) { + for (final TrackballInfo trackInfo in trackballInfo) { + final ChartTrackballInfo info = trackInfo as ChartTrackballInfo; + final CartesianChartPoint chartPoint = info.point; + final bool pointIsNaN = + (chartPoint.xValue != null && chartPoint.xValue!.isNaN) || + (chartPoint.y != null && chartPoint.y!.isNaN); + if (trackInfo.pointIndex >= 0 && !pointIsNaN) { + final Offset indicatorPosition = info.position!; + double xPos = indicatorPosition.dx; + double yPos = indicatorPosition.dy; + final double touchXPos = position.dx; + if ((leastX - touchXPos).abs() > (xPos - touchXPos).abs()) { + leastX = xPos; + } + + if (_isTransposed && + (leastX - touchXPos).abs() > (yPos - touchXPos).abs()) { + leastX = yPos; + } + + _visiblePoints.add(Offset(xPos, yPos)); + _addChartPointInfo(info, xPos, yPos); + if (isGroupMode && leastX >= _plotAreaBounds.left) { + if (_isTransposed) { + yPos = leastX; + } else { + xPos = leastX; + } + } + } + } + } + _updateLeastX(leastX, child.dataCount); + } + }); + } + + _validateLeastPointInfoWithLeastX(leastX); + _sortTrackballPoints(_isTransposed); + _triggerTrackballRenderCallback(parent); + _applyTooltipDisplayMode(_chartThemeData!, _themeData!, + _chartThemeData!.trackballTextStyle!, leastX, position, isRtl); + } + + void _sortTrackballPoints(bool isTranposed) { + if (_visiblePoints.isNotEmpty) { + isTranposed + ? _visiblePoints.sort((Offset a, Offset b) => a.dx.compareTo(b.dx)) + : _visiblePoints.sort((Offset a, Offset b) => a.dy.compareTo(b.dy)); + } + if (chartPointInfo.isNotEmpty) { + if (tooltipDisplayMode != TrackballDisplayMode.groupAllPoints) { + isTranposed + ? chartPointInfo.sort((ChartPointInfo a, ChartPointInfo b) => + a.xPosition!.compareTo(b.xPosition!)) + : tooltipDisplayMode == TrackballDisplayMode.floatAllPoints + ? chartPointInfo.sort((ChartPointInfo a, ChartPointInfo b) => + a.yPosition!.compareTo(b.yPosition!)) + : chartPointInfo.sort((ChartPointInfo a, ChartPointInfo b) => + b.yPosition!.compareTo(a.yPosition!)); + } + } + } + + void _triggerTrackballRenderCallback(RenderBehaviorArea parent) { + if (parent.onTrackballPositionChanging != null) { + final int length = chartPointInfo.length - 1; + for (int i = length; i >= 0; i--) { + final ChartPointInfo pointInfo = chartPointInfo[i]; + final TrackballArgs trackballArgs = TrackballArgs(); + trackballArgs.chartPointInfo = pointInfo; + parent.onTrackballPositionChanging!(trackballArgs); + chartPointInfo[i].label = trackballArgs.chartPointInfo.label; + chartPointInfo[i].header = trackballArgs.chartPointInfo.header; + if (builder == null && pointInfo.label == null || + pointInfo.label == '') { + chartPointInfo.removeAt(i); + _visiblePoints.removeAt(i); + } + } + } + } + + List _findNearestChartPointIndexes( + CartesianSeriesRenderer series, Offset position) { + final List indexes = []; + final int dataCount = series.dataCount; + final RenderChartAxis xAxis = series.xAxis!; + final RenderChartAxis yAxis = series.yAxis!; + final Rect bounds = series.paintBounds; + final num xValue = xAxis.pixelToPoint(bounds, position.dx, position.dy); + final num yValue = yAxis.pixelToPoint(bounds, position.dx, position.dy); + + if (xAxis is RenderCategoryAxis || xAxis is RenderDateTimeCategoryAxis) { + final DoubleRange range = xAxis.visibleRange!; + int index = xValue.round(); + if (xAxis is RenderCategoryAxis && !xAxis.arrangeByIndex) { + index = series.xValues.indexOf(index); + } + if (index <= range.maximum && + index >= range.minimum && + index < dataCount && + index >= 0) { + indexes.add(index); + } + return indexes; + } else { + if (series.canFindLinearVisibleIndexes) { + final int binaryIndex = + _binarySearch(series.xValues, xValue.toDouble(), 0, dataCount - 1); + if (binaryIndex >= 0) { + indexes.add(binaryIndex); + } + } else { + double delta = 0; + num nearPointX = series.xValues[0]; + num nearPointY = series.yAxis!.visibleRange!.minimum; + for (int i = 0; i < dataCount; i++) { + final num touchXValue = xValue; + final num touchYValue = yValue; + final double curX = series.xValues[i].toDouble(); + final double curY = series.trackballYValue(i).toDouble(); + if (delta == touchXValue - curX) { + if ((touchYValue - curY).abs() > (touchYValue - nearPointY).abs()) { + indexes.clear(); + } + indexes.add(i); + } else if ((touchXValue - curX).abs() <= + (touchXValue - nearPointX).abs()) { + nearPointX = curX; + nearPointY = curY; + delta = touchXValue - curX; + indexes.clear(); + indexes.add(i); + } + } + } + return indexes; + } + } + + int _binarySearch(List xValues, double touchValue, int min, int max) { + var closerIndex = 0; + double closerDelta = double.maxFinite; + while (min <= max) { + final int mid = (min + max) ~/ 2; + final double xValue = xValues[mid].toDouble(); + final double delta = (touchValue - xValue).abs(); + if (delta < closerDelta) { + closerDelta = delta; + closerIndex = mid; + } + + if (touchValue == xValue) { + return mid; + } else if (touchValue < xValue) { + max = mid - 1; + } else { + min = mid + 1; + } + } + return closerIndex; + } + + void _addChartPointInfo( + ChartTrackballInfo trackballInfo, double xPos, double yPos) { + final ChartPointInfo pointInfo = ChartPointInfo( + label: trackballInfo.text, + header: trackballInfo.header, + color: trackballInfo.color, + series: trackballInfo.series, + seriesName: trackballInfo.name, + seriesIndex: trackballInfo.seriesIndex, + chartPoint: trackballInfo.point, + dataPointIndex: trackballInfo.pointIndex, + xPosition: xPos, + yPosition: yPos, + markerXPos: xPos, + markerYPos: yPos, + lowYPosition: trackballInfo.lowYPos, + highXPosition: trackballInfo.highXPos, + highYPosition: trackballInfo.highYPos, + openXPosition: trackballInfo.openXPos, + openYPosition: trackballInfo.openYPos, + closeXPosition: trackballInfo.closeXPos, + closeYPosition: trackballInfo.closeYPos, + minYPosition: trackballInfo.minYPos, + maxYPosition: trackballInfo.maxYPos, + maxXPosition: trackballInfo.maxXPos, + lowerXPosition: trackballInfo.lowerXPos, + lowerYPosition: trackballInfo.lowerYPos, + upperXPosition: trackballInfo.upperXPos, + upperYPosition: trackballInfo.upperYPos, + ); + chartPointInfo.add(pointInfo); + } + + void _updateLeastX(double leastX, int dataCount) { + if (chartPointInfo.isNotEmpty && + chartPointInfo[0].dataPointIndex! < dataCount) { + leastX = chartPointInfo[0].xPosition!; + } + } + + void _validateLeastPointInfoWithLeastX(double leastX) { + final int length = chartPointInfo.length; + if (length > 1) { + final ChartPointInfo firstPoint = chartPointInfo[0]; + final bool isFloatAllPoints = + tooltipDisplayMode == TrackballDisplayMode.floatAllPoints; + for (int i = 0; i < length; i++) { + final ChartPointInfo currentPoint = chartPointInfo[i]; + if (firstPoint.chartPoint!.xValue! != + currentPoint.chartPoint!.xValue!) { + final List leastPointInfo = []; + for (final ChartPointInfo pointInfo in chartPointInfo) { + final double xPos = pointInfo.xPosition!; + if (xPos == leastX) { + leastPointInfo.add(pointInfo); + final int leastLength = leastPointInfo.length; + if (!(isFloatAllPoints && + leastLength > 1 && + (pointInfo.series is IndicatorRenderer || + pointInfo.seriesIndex != + leastPointInfo[leastLength - 2].seriesIndex))) { + _visiblePoints.clear(); + } + + _visiblePoints.add(Offset(xPos, pointInfo.yPosition!)); + } + } + chartPointInfo.clear(); + chartPointInfo = leastPointInfo; + break; + } + } + } + } + + void _validateNearestChartPointInfo(double leastX, Offset position) { + final double touchXPos = position.dx; + final double touchYPos = position.dy; + int length = chartPointInfo.length; + if (length > 1) { + ChartPointInfo? pointInfo; + final ChartPointInfo firstPoint = chartPointInfo[0]; + final double firstX = firstPoint.xPosition!; + if (leastX != firstX && !_isTransposed) { + chartPointInfo.remove(firstPoint); + } + pointInfo = firstPoint; + length = chartPointInfo.length; + for (int i = 1; i < length; i++) { + final ChartPointInfo nextPoint = chartPointInfo[i]; + final double nextX = nextPoint.xPosition!; + final double nextY = nextPoint.yPosition!; + final bool isXYPositioned = !_isTransposed + ? (((pointInfo!.yPosition! - touchYPos).abs() > + (nextY - touchYPos).abs()) && + pointInfo.xPosition! == nextX) + : (((pointInfo!.xPosition! - touchXPos).abs() > + (nextX - touchXPos).abs()) && + pointInfo.yPosition! == nextY); + if (isXYPositioned) { + pointInfo = chartPointInfo[i]; + } + } + + if (pointInfo != null) { + chartPointInfo + ..clear() + ..add(pointInfo); + } + } + } + + void _applyTooltipDisplayMode( + SfChartThemeData chartThemeData, + ThemeData themeData, + TextStyle labelStyle, + double leastX, + Offset position, + bool isRtl, + ) { + if (chartPointInfo.isEmpty) { + return; + } + + // It applicable for template tooltip. + if (tooltipDisplayMode == TrackballDisplayMode.nearestPoint) { + _validateNearestChartPointInfo(leastX, position); + } + + if (tooltipSettings.enable && builder == null) { + if (tooltipSettings.textStyle != null) { + labelStyle = + _createLabelStyle(FontWeight.normal, tooltipSettings.textStyle!); + } + const double padding = 5; + final bool markerIsVisible = markerSettings != null && + markerSettings!.markerVisibility == TrackballVisibilityMode.visible; + final bool markerAutoVisibility = markerSettings != null && + markerSettings!.markerVisibility == TrackballVisibilityMode.auto; + + switch (tooltipDisplayMode) { + case TrackballDisplayMode.nearestPoint: + _applyNearestPointDisplayMode(padding, labelStyle, markerIsVisible, + markerAutoVisibility, isRtl); + break; + + case TrackballDisplayMode.floatAllPoints: + _applyFloatAllPointsDisplayMode(padding, labelStyle, markerIsVisible, + markerAutoVisibility, isRtl); + break; + + case TrackballDisplayMode.groupAllPoints: + _applyGroupAllPointDisplayMode(padding, labelStyle, markerIsVisible, + markerAutoVisibility, isRtl); + break; + + case TrackballDisplayMode.none: + break; + } + + if (markerIsVisible) { + _computeLineMarkers(themeData, _lineMarkers); + } + } + } + + void _applyNearestPointDisplayMode( + double defaultPadding, + TextStyle labelStyle, + bool markerIsVisible, + bool markerAutoVisibility, + bool isRtl, + ) { + final double arrowLength = tooltipSettings.arrowLength; + final double arrowWidth = tooltipSettings.arrowWidth; + double borderRadius = tooltipSettings.borderRadius; + for (final ChartPointInfo pointInfo in chartPointInfo) { + final Size labelSize = _labelSize(pointInfo.label!, labelStyle); + final dynamic series = pointInfo.series; + double width = labelSize.width; + if (width < 10) { + width = 10; + borderRadius = borderRadius > 5 ? 5 : borderRadius; + } + borderRadius = borderRadius > 15 ? 15 : borderRadius; + final double padding = (markerAutoVisibility + ? series is IndicatorRenderer || + (series != null && series.markerSettings.isVisible) + : markerIsVisible) + ? (markerSettings!.width / 2) + defaultPadding + : defaultPadding; + + _computeNearestTooltip(pointInfo, labelStyle, width, labelSize.height, + padding, arrowWidth, arrowLength, borderRadius, isRtl); + } + } + + void _computeNearestTooltip( + ChartPointInfo pointInfo, + TextStyle labelStyle, + double width, + double height, + double padding, + double arrowWidth, + double arrowLength, + double borderRadius, + bool isRtl, + ) { + final double xPosition = pointInfo.xPosition!; + final double yPosition = pointInfo.yPosition!; + final Rect tooltipRect = _tooltipRect(xPosition, yPosition, width, height); + final double labelRectWidth = tooltipRect.width; + final double labelRectHeight = tooltipRect.height; + final Offset alignPosition = _alignPosition( + xPosition, + yPosition, + labelRectWidth, + labelRectHeight, + arrowLength, + arrowWidth, + padding, + isRtl); + final RRect tooltipRRect = RRect.fromRectAndRadius( + Rect.fromLTWH( + alignPosition.dx, alignPosition.dy, labelRectWidth, labelRectHeight), + Radius.circular(borderRadius), + ); + + final Path nosePath = _nosePath(_tooltipDirection(), tooltipRRect, + Offset(xPosition, yPosition), arrowLength, arrowWidth); + final Path nearestTooltipPath = Path() + ..addRRect(tooltipRRect) + ..addPath(nosePath, Offset.zero); + _tooltipPaths.add(nearestTooltipPath); + + const double markerPadding = 5; + if (tooltipSettings.canShowMarker) { + final Offset markerPosition = + _markerPosition(tooltipRRect, width, height, markerPadding, isRtl); + _computeTooltipMarkers(pointInfo, markerPosition); + } + + if (pointInfo.label != null) { + _computeTooltipLabels(pointInfo.label!, width, height, labelStyle, + tooltipRRect, markerPadding); + } + } + + void _applyFloatAllPointsDisplayMode( + double defaultPadding, + TextStyle labelStyle, + bool markerIsVisible, + bool markerAutoVisibility, + bool isRtl, + ) { + final double arrowLength = tooltipSettings.arrowLength; + final double arrowWidth = tooltipSettings.arrowWidth; + double borderRadius = tooltipSettings.borderRadius; + final _TooltipPositions floatTooltipPosition = + _computeTooltipPositionForFloatAllPoints(labelStyle, borderRadius); + + final int length = chartPointInfo.length; + for (int i = 0; i < length; i++) { + final ChartPointInfo pointInfo = chartPointInfo[i]; + final dynamic series = pointInfo.series; + final Size labelSize = _labelSize(pointInfo.label!, labelStyle); + double width = labelSize.width; + if (width < 10) { + width = 10; + borderRadius = borderRadius > 5 ? 5 : borderRadius; + } + borderRadius = borderRadius > 15 ? 15 : borderRadius; + final double padding = (markerAutoVisibility + ? series is IndicatorRenderer || + (series != null && series.markerSettings.isVisible) + : markerIsVisible) + ? (markerSettings!.width / 2) + defaultPadding + : defaultPadding; + + if (floatTooltipPosition != null) { + final num tooltipTop = floatTooltipPosition.tooltipTop[i]; + final num tooltipBottom = floatTooltipPosition.tooltipBottom[i]; + if (_isTransposed + ? tooltipTop >= _plotAreaBounds.left && + tooltipBottom <= _plotAreaBounds.right + : tooltipTop >= _plotAreaBounds.top && + tooltipBottom <= _plotAreaBounds.bottom) { + _computeFloatAllPointTooltip( + i, + pointInfo, + width, + labelSize.height, + padding, + arrowWidth, + arrowLength, + borderRadius, + labelStyle, + floatTooltipPosition, + isRtl); + } + } + } + } + + void _computeFloatAllPointTooltip( + int index, + ChartPointInfo pointInfo, + double width, + double height, + double padding, + double arrowWidth, + double arrowLength, + double borderRadius, + TextStyle labelStyle, + _TooltipPositions tooltipPosition, + bool isRtl, + ) { + final double xPosition = pointInfo.xPosition!; + final double yPosition = pointInfo.yPosition!; + final Rect tooltipRect = _tooltipRect(xPosition, yPosition, width, height); + final double labelRectWidth = tooltipRect.width; + final double labelRectHeight = tooltipRect.height; + final Offset alignPosition = _alignPosition( + xPosition, + yPosition, + labelRectWidth, + labelRectHeight, + arrowLength, + arrowWidth, + padding, + isRtl); + + final double topValue = tooltipPosition.tooltipTop[index].toDouble(); + final RRect tooltipRRect = RRect.fromRectAndRadius( + Rect.fromLTWH( + _isTransposed ? topValue : alignPosition.dx, + _isTransposed ? alignPosition.dy : topValue, + labelRectWidth, + labelRectHeight), + Radius.circular(borderRadius)); + + final Path nosePath = _nosePath(_tooltipDirection(), tooltipRRect, + Offset(xPosition, yPosition), arrowLength, arrowWidth); + final Path nearestTooltipPath = Path() + ..addRRect(tooltipRRect) + ..addPath(nosePath, Offset.zero); + _tooltipPaths.add(nearestTooltipPath); + + const double markerPadding = 5; + if (tooltipSettings.canShowMarker) { + final Offset markerPosition = + _markerPosition(tooltipRRect, width, height, markerPadding, isRtl); + _computeTooltipMarkers(pointInfo, markerPosition); + } + + if (pointInfo.label != null) { + _computeTooltipLabels(pointInfo.label!, width, height, labelStyle, + tooltipRRect, markerPadding); + } + } + + _TooltipPositions _computeTooltipPositionForFloatAllPoints( + TextStyle labelStyle, double borderRadius) { + final List tooltipTop = []; + final List tooltipBottom = []; + final List xAxesInfo = []; + final List yAxesInfo = []; + final num tooltipPaddingForFloatPoint = _isTransposed ? 8 : 5; + final int length = chartPointInfo.length; + for (int i = 0; i < length; i++) { + final ChartPointInfo pointInfo = chartPointInfo[i]; + final dynamic series = pointInfo.series; + final String label = pointInfo.label!; + final Size labelSize = _labelSize(label, labelStyle); + final double height = labelSize.height; + double width = labelSize.width; + if (width < 10) { + width = 10; + } + + if (label != '' && _visiblePoints.isNotEmpty) { + final Offset visiblePoint = _visiblePoints[i]; + final double closeX = visiblePoint.dx; + final double closeY = visiblePoint.dy; + tooltipTop.add(_isTransposed + ? closeX - tooltipPaddingForFloatPoint - (width / 2) + : closeY - tooltipPaddingForFloatPoint - height / 2); + tooltipBottom.add(_isTransposed + ? (closeX + tooltipPaddingForFloatPoint + (width / 2)) + + (tooltipSettings.canShowMarker ? 20 : 0) + : closeY + tooltipPaddingForFloatPoint + height / 2); + if (series != null && series.xAxis != null) { + xAxesInfo.add(series.xAxis!); + } + if (series != null && series.yAxis != null) { + yAxesInfo.add(series.yAxis!); + } + } + } + + if (tooltipTop.isNotEmpty && tooltipBottom.isNotEmpty) { + return _smartTooltipPositions(tooltipTop, tooltipBottom, xAxesInfo, + yAxesInfo, chartPointInfo, tooltipPaddingForFloatPoint); + } + return _TooltipPositions(tooltipTop, tooltipBottom); + } + + /// Method to place the collided tooltips properly + _TooltipPositions _smartTooltipPositions( + List tooltipTop, + List tooltipBottom, + List xAxesInfo, + List yAxesInfo, + List chartPointInfo, + [num tooltipPaddingForFloatPoint = 0]) { + final List visibleLocation = []; + num totalHeight = 0; + final int length = chartPointInfo.length; + for (int i = 0; i < length; i++) { + final ChartPointInfo pointInfo = chartPointInfo[i]; + _isTransposed + ? visibleLocation.add(pointInfo.xPosition!) + : visibleLocation.add(pointInfo.yPosition!); + totalHeight += + tooltipBottom[i] - tooltipTop[i] + tooltipPaddingForFloatPoint; + } + + _TooltipPositions smartTooltipPosition = _continuousOverlappingPoints( + tooltipTop, + tooltipBottom, + visibleLocation, + tooltipPaddingForFloatPoint); + if (!_isTransposed + ? totalHeight < (_plotAreaBounds.bottom - _plotAreaBounds.top) + : totalHeight < (_plotAreaBounds.right - _plotAreaBounds.left)) { + smartTooltipPosition = _verticalArrangements(smartTooltipPosition, + xAxesInfo, yAxesInfo, tooltipPaddingForFloatPoint); + } + return smartTooltipPosition; + } + + _TooltipPositions _verticalArrangements( + _TooltipPositions tooltipPosition, + List xAxesInfo, + List yAxesInfo, + num tooltipPaddingForFloatPoint, + ) { + final RenderBehaviorArea? parent = parentBox as RenderBehaviorArea?; + if (parent == null) { + return tooltipPosition; + } + num? startPos; + num? chartHeight; + num secWidth; + num width; + final int tooltipTopLength = tooltipPosition.tooltipTop.length; + RenderChartAxis yAxis; + for (int i = tooltipTopLength - 1; i >= 0; i--) { + yAxis = yAxesInfo[i]; + RenderChartAxis? child = parent.cartesianAxes!.firstChild; + while (child != null) { + if (yAxis == child) { + if (_isTransposed) { + chartHeight = _plotAreaBounds.right; + startPos = _plotAreaBounds.left; + } else { + chartHeight = _plotAreaBounds.bottom - _plotAreaBounds.top; + startPos = _plotAreaBounds.top; + } + } + + final CartesianAxesParentData childParentData = + child.parentData! as CartesianAxesParentData; + child = childParentData.nextSibling; + } + + width = tooltipPosition.tooltipBottom[i] - tooltipPosition.tooltipTop[i]; + if (chartHeight != null && + chartHeight < tooltipPosition.tooltipBottom[i]) { + tooltipPosition.tooltipBottom[i] = chartHeight - 2; + tooltipPosition.tooltipTop[i] = + tooltipPosition.tooltipBottom[i] - width; + for (int j = i - 1; j >= 0; j--) { + secWidth = + tooltipPosition.tooltipBottom[j] - tooltipPosition.tooltipTop[j]; + if (tooltipPosition.tooltipBottom[j] > + tooltipPosition.tooltipTop[j + 1] && + (tooltipPosition.tooltipTop[j + 1] > startPos! && + tooltipPosition.tooltipBottom[j + 1] < chartHeight)) { + tooltipPosition.tooltipBottom[j] = + tooltipPosition.tooltipTop[j + 1] - tooltipPaddingForFloatPoint; + tooltipPosition.tooltipTop[j] = + tooltipPosition.tooltipBottom[j] - secWidth; + } + } + } + } + + for (int i = 0; i < tooltipTopLength; i++) { + yAxis = yAxesInfo[i]; + RenderChartAxis? child = parent.cartesianAxes!.firstChild; + while (child != null) { + if (yAxis == child) { + if (_isTransposed) { + chartHeight = _plotAreaBounds.right; + startPos = _plotAreaBounds.left; + } else { + chartHeight = _plotAreaBounds.bottom - _plotAreaBounds.top; + startPos = _plotAreaBounds.top; + } + } + + final CartesianAxesParentData childParentData = + child.parentData! as CartesianAxesParentData; + child = childParentData.nextSibling; + } + + width = tooltipPosition.tooltipBottom[i] - tooltipPosition.tooltipTop[i]; + if (startPos != null && tooltipPosition.tooltipTop[i] < startPos) { + tooltipPosition.tooltipTop[i] = startPos + 1; + tooltipPosition.tooltipBottom[i] = + tooltipPosition.tooltipTop[i] + width; + for (int j = i + 1; j <= (tooltipTopLength - 1); j++) { + secWidth = + tooltipPosition.tooltipBottom[j] - tooltipPosition.tooltipTop[j]; + if (tooltipPosition.tooltipTop[j] < + tooltipPosition.tooltipBottom[j - 1] && + (tooltipPosition.tooltipTop[j - 1] > startPos && + tooltipPosition.tooltipBottom[j - 1] < chartHeight!)) { + tooltipPosition.tooltipTop[j] = + tooltipPosition.tooltipBottom[j - 1] + + tooltipPaddingForFloatPoint; + tooltipPosition.tooltipBottom[j] = + tooltipPosition.tooltipTop[j] + secWidth; + } + } + } + } + return tooltipPosition; + } + + // Method to identify the colliding trackball tooltips and + // return the new tooltip positions + _TooltipPositions _continuousOverlappingPoints(List tooltipTop, + List tooltipBottom, List visibleLocation, num tooltipPadding) { + num temp; + num count = 0; + num start = 0; + num halfHeight; + num midPos; + num tempTooltipHeight; + num temp1TooltipHeight; + int startPoint = 0, i, j, k; + final num endPoint = tooltipBottom.length - 1; + final num firstTop = tooltipTop[0]; + num tooltipHeight = (tooltipBottom[0] - firstTop) + tooltipPadding; + temp = firstTop + tooltipHeight; + start = firstTop; + for (i = 0; i < endPoint; i++) { + // To identify that tooltip collides or not. + if (temp >= tooltipTop[i + 1]) { + tooltipHeight = + tooltipBottom[i + 1] - tooltipTop[i + 1] + tooltipPadding; + temp += tooltipHeight; + count++; + // This condition executes when the tooltip count is half of the total + // number of tooltips. + if (count - 1 == endPoint - 1 || i == endPoint - 1) { + halfHeight = (temp - start) / 2; + midPos = (visibleLocation[startPoint] + visibleLocation[i + 1]) / 2; + tempTooltipHeight = + tooltipBottom[startPoint] - tooltipTop[startPoint]; + tooltipTop[startPoint] = midPos - halfHeight; + tooltipBottom[startPoint] = + tooltipTop[startPoint] + tempTooltipHeight; + for (k = startPoint; k > 0; k--) { + if (tooltipTop[k] <= tooltipBottom[k - 1] + tooltipPadding) { + temp1TooltipHeight = tooltipBottom[k - 1] - tooltipTop[k - 1]; + tooltipTop[k - 1] = + tooltipTop[k] - temp1TooltipHeight - tooltipPadding; + tooltipBottom[k - 1] = tooltipTop[k - 1] + temp1TooltipHeight; + } else { + break; + } + } + // To set tool tip positions based on the half height and + // other tooltip height. + for (j = startPoint + 1; j <= startPoint + count; j++) { + tempTooltipHeight = tooltipBottom[j] - tooltipTop[j]; + tooltipTop[j] = tooltipBottom[j - 1] + tooltipPadding; + tooltipBottom[j] = tooltipTop[j] + tempTooltipHeight; + } + } + } else { + count = i > 0 ? count : 0; + // This executes when any of the middle tooltip collides. + if (count > 0) { + halfHeight = (temp - start) / 2; + midPos = (visibleLocation[startPoint] + visibleLocation[i]) / 2; + tempTooltipHeight = + tooltipBottom[startPoint] - tooltipTop[startPoint]; + tooltipTop[startPoint] = midPos - halfHeight; + tooltipBottom[startPoint] = + tooltipTop[startPoint] + tempTooltipHeight; + for (k = startPoint; k > 0; k--) { + if (tooltipTop[k] <= tooltipBottom[k - 1] + tooltipPadding) { + temp1TooltipHeight = tooltipBottom[k - 1] - tooltipTop[k - 1]; + tooltipTop[k - 1] = + tooltipTop[k] - temp1TooltipHeight - tooltipPadding; + tooltipBottom[k - 1] = tooltipTop[k - 1] + temp1TooltipHeight; + } else { + break; + } + } + + // To set tool tip positions based on the half height and + // other tooltip height. + for (j = startPoint + 1; j <= startPoint + count; j++) { + tempTooltipHeight = tooltipBottom[j] - tooltipTop[j]; + tooltipTop[j] = tooltipBottom[j - 1] + tooltipPadding; + tooltipBottom[j] = tooltipTop[j] + tempTooltipHeight; + } + count = 0; + } + tooltipHeight = + (tooltipBottom[i + 1] - tooltipTop[i + 1]) + tooltipPadding; + temp = tooltipTop[i + 1] + tooltipHeight; + start = tooltipTop[i + 1]; + startPoint = i + 1; + } + } + return _TooltipPositions(tooltipTop, tooltipBottom); + } + + void _applyGroupAllPointDisplayMode(double padding, TextStyle labelStyle, + bool markerIsVisible, bool markerAutoVisibility, bool isRtl) { + double borderRadius = tooltipSettings.borderRadius; + final ChartPointInfo pointInfo = chartPointInfo[0]; + final double xPosition = pointInfo.xPosition!; + final double yPosition = pointInfo.yPosition!; + final dynamic series = pointInfo.series; + final Size totalLabelSize = _labelSizeForGroupAllPoints(labelStyle); + final double height = totalLabelSize.height; + double width = totalLabelSize.width; + if (width < 10) { + width = 10; + borderRadius = borderRadius > 5 ? 5 : borderRadius; + } + borderRadius = borderRadius > 15 ? 15 : borderRadius; + padding = (markerAutoVisibility + ? series is IndicatorRenderer || + (series != null && series.markerSettings.isVisible) + : markerIsVisible) + ? (markerSettings!.width / 2) + padding + : padding; + + final Rect tooltipRect = _tooltipRect(xPosition, yPosition, width, height); + final double labelRectWidth = tooltipRect.width; + final double labelRectHeight = tooltipRect.height; + final Offset defaultPosition = _defaultGroupPosition(xPosition, yPosition); + final Offset alignPosition = _alignPosition( + defaultPosition.dx, + defaultPosition.dy, + labelRectWidth, + labelRectHeight, + tooltipSettings.arrowLength, + tooltipSettings.arrowWidth, + padding, + isRtl, + true, + ); + + final RRect tooltipRRect = _validateRect( + Rect.fromLTWH( + alignPosition.dx, alignPosition.dy, labelRectWidth, labelRectHeight), + _plotAreaBounds, + borderRadius, + ); + + if (tooltipRRect != RRect.zero) { + _tooltipPaths.add(Path()..addRRect(tooltipRRect)); + _computeGroupTooltipLabels( + alignPosition, tooltipRRect, totalLabelSize, labelStyle); + } + } + + void _computeGroupTooltipLabels(Offset alignPosition, RRect tooltipRRect, + Size totalLabelSize, TextStyle labelStyle) { + bool hasIndicator = false; + final RenderBehaviorArea? parent = parentBox as RenderBehaviorArea?; + if (parent != null && parent.indicatorArea != null) { + hasIndicator = true; + } + const double markerPadding = 5; + final double markerSize = tooltipSettings.canShowMarker ? 20 : 0; + // It specifies for marker position calculation. + double totalLabelHeight = tooltipRRect.top + markerPadding; + // It specifies for label position calculation with label style. + double eachTextHeight = 0; + + final String? header = chartPointInfo[0].header; + if (header != null && header != '') { + const double headerPadding = 10; + final TextStyle boldStyle = + labelStyle.copyWith(fontWeight: FontWeight.bold); + final Size headerSize = measureText(header, boldStyle); + final double headerHeight = headerSize.height; + totalLabelHeight += headerHeight; + eachTextHeight += headerHeight; + + _tooltipLabels.add(_TooltipLabels( + header, + boldStyle, + Offset(tooltipRRect.left + tooltipRRect.width / 2, + tooltipRRect.top + headerHeight / 2 + headerPadding / 2) + .translate(-headerSize.width / 2, -headerSize.height / 2), + )); + + // Divider offset calculation. + _dividerStartOffset = Offset(tooltipRRect.left + headerPadding, + tooltipRRect.top + headerHeight + headerPadding); + _dividerEndOffset = Offset(tooltipRRect.right - headerPadding, + tooltipRRect.top + headerHeight + headerPadding); + } + + // Empty text size consideration between the header and series text. + final Size emptyTextSize = measureText('', labelStyle); + final double emptyTextHeight = emptyTextSize.height; + totalLabelHeight += emptyTextHeight; + eachTextHeight += emptyTextHeight; + + final bool canShowMarker = tooltipSettings.canShowMarker; + final bool hasFormat = tooltipSettings.format != null; + final double rectLeftWithPadding = tooltipRRect.left + markerPadding; + final double x = rectLeftWithPadding + markerSize; + final double y = tooltipRRect.top + markerPadding; + final double markerX = rectLeftWithPadding + (markerSize / 2); + final int length = chartPointInfo.length; + for (int i = 0; i < length; i++) { + final ChartPointInfo pointInfo = chartPointInfo[i]; + final String text = pointInfo.label!; + final Size actualLabelSize = measureText(text, labelStyle); + final double actualLabelHeight = actualLabelSize.height; + totalLabelHeight += actualLabelHeight; + if (!hasFormat) { + // Apply gap between xYDataSeries and other series types. + if (text.contains('\n')) { + totalLabelHeight += markerPadding; + } + } + + // Marker position calculation. + if (canShowMarker) { + Offset markerPosition; + if (text.contains('\n') && hasIndicator) { + markerPosition = Offset( + markerX, totalLabelHeight - actualLabelHeight + markerPadding); + } else { + markerPosition = + Offset(markerX, totalLabelHeight - actualLabelHeight / 2); + } + + _computeTooltipMarkers(pointInfo, markerPosition); + } + + // Label style and position calculation. + final double dy = y + eachTextHeight; + if (hasFormat) { + final double dx = canShowMarker ? x : x + markerPadding; + _computeFormatTooltipLabels(dx, dy, text, labelStyle); + } else { + _computeDefaultTooltipLabels(x, dy, text, labelStyle); + // Apply gap between xYDataSeries and other series types. + if (text.contains('\n')) { + eachTextHeight += markerPadding; + } + } + eachTextHeight += actualLabelHeight; + } + } + + Size _labelSize(String text, TextStyle textStyle) { + if (text != '') { + if (text.contains('') && text.contains('')) { + text = text.replaceAll('', '').replaceAll('', ''); + return measureText( + text, textStyle.copyWith(fontWeight: FontWeight.bold)); + } + } + return measureText(text, textStyle); + } + + Size _labelSizeForGroupAllPoints(TextStyle labelStyle) { + if (chartPointInfo.isEmpty) { + return Size.zero; + } + + double width = 0; + double height = 0; + // Header text size. + final String? header = chartPointInfo[0].header; + if (header != null) { + final Size headerSize = _labelSize(header, labelStyle); + if (headerSize.width > width) { + width = headerSize.width; + } + height += headerSize.height; + } + + // Empty text size consideration. + final Size emptyTextSize = measureText('', labelStyle); + if (emptyTextSize.width > width) { + width = emptyTextSize.width; + } + height += emptyTextSize.height; + + final bool hasFormat = tooltipSettings.format != null; + final int length = chartPointInfo.length; + for (int i = 0; i < length; i++) { + final String? label = chartPointInfo[i].label; + if (label != null) { + final Size labelSize = _labelSize(label, labelStyle); + if (labelSize.width > width) { + width = labelSize.width; + } + height += labelSize.height; + // Apply gap between xYDataSeries and other series types. + if (!hasFormat) { + if (label.contains('\n')) { + height += 5; + } + } + } + } + return Size(width, height); + } + + Offset _defaultGroupPosition(double xPosition, double yPosition) { + double xPos = xPosition; + double yPos = yPosition; + if (_isTransposed) { + switch (tooltipAlignment) { + case ChartAlignment.near: + xPos = _plotAreaBounds.top; + break; + + case ChartAlignment.center: + xPos = _plotAreaBounds.center.dx; + break; + + case ChartAlignment.far: + xPos = _plotAreaBounds.bottom; + break; + } + } else { + switch (tooltipAlignment) { + case ChartAlignment.near: + yPos = _plotAreaBounds.top; + break; + + case ChartAlignment.center: + yPos = _plotAreaBounds.center.dy; + break; + + case ChartAlignment.far: + yPos = _plotAreaBounds.bottom; + break; + } + } + return Offset(xPos, yPos); + } + + Offset _markerPosition(RRect tooltipRRect, double labelWidth, + double labelHeight, double markerPadding, bool isRtl) { + return Offset( + (tooltipRRect.left + tooltipRRect.width / 2) + + (isRtl + ? labelWidth / 2 - markerPadding + : -labelWidth / 2 - markerPadding), + tooltipRRect.top + tooltipRRect.height / 2, + ); + } + + Rect _tooltipRect(double x, double y, double width, double height) { + if (tooltipSettings.canShowMarker) { + const double padding = 20 + 17; // markerSize + widthPadding. + return Rect.fromLTWH(x, y, width + padding, height + 10); + } else { + return Rect.fromLTWH(x, y, width + 15, height + 10); + } + } + + Offset _alignPosition( + double xPosition, + double yPosition, + double rectWidth, + double rectHeight, + double arrowLength, + double arrowWidth, + double padding, + bool isRtl, + [bool isGroupMode = false]) { + double xPos = xPosition; + double yPos = yPosition; + if (yPosition > arrowLength + rectHeight) { + _isTop = true; + _isRight = false; + if (_isTransposed) { + final double totalWidth = _plotAreaBounds.left + _plotAreaBounds.width; + final double halfRectWidth = rectWidth / 2; + xPos = xPosition - halfRectWidth; + if (xPos < _plotAreaBounds.left) { + xPos = _plotAreaBounds.left; + } else if ((xPosition + halfRectWidth) > totalWidth) { + xPos = totalWidth - rectWidth; + } + + yPos = (yPosition - rectHeight) - padding; + yPos = yPos - arrowLength; + if (yPos + rectHeight >= _plotAreaBounds.bottom) { + yPos = _plotAreaBounds.bottom - rectHeight; + } + } else { + yPos = yPosition - rectHeight / 2; + if (!isRtl) { + if (xPos + rectWidth + padding + arrowLength > + _plotAreaBounds.right) { + xPos = isGroupMode + ? xPos - rectWidth - groupAllPadding + : xPos - rectWidth - padding - arrowLength; + _isLeft = true; + } else { + xPos = isGroupMode + ? xPosition + groupAllPadding + : xPosition + padding + arrowLength; + _isLeft = false; + _isRight = true; + } + } else { + xPos = isGroupMode + ? xPos - rectWidth - groupAllPadding + : xPos - rectWidth - padding - arrowLength; + if (xPos < _plotAreaBounds.left) { + xPos = isGroupMode + ? xPosition + groupAllPadding + : xPosition + padding + arrowLength; + _isRight = true; + } else { + _isLeft = true; + } + } + if (yPos + rectHeight >= _plotAreaBounds.bottom) { + yPos = _plotAreaBounds.bottom - rectHeight; + } + } + } else { + _isTop = false; + if (_isTransposed) { + final double totalWidth = _plotAreaBounds.left + _plotAreaBounds.width; + final double halfRectWidth = rectWidth / 2; + xPos = xPosition - halfRectWidth; + if (xPos < _plotAreaBounds.left) { + xPos = _plotAreaBounds.left; + } else if ((xPosition + halfRectWidth) > totalWidth) { + xPos = totalWidth - rectWidth; + } + + yPos = (yPosition + arrowLength) + padding; + } else { + if (isGroupMode) { + xPos = xPosition - rectWidth / 2; + yPos = yPosition - rectHeight / 2; + } else { + yPos = (yPosition + arrowLength / 2) + padding; + } + + if (!isRtl) { + if ((isGroupMode + ? (xPos + (rectWidth / 2) + groupAllPadding) + : xPos + rectWidth + padding + arrowLength) > + _plotAreaBounds.right) { + xPos = isGroupMode + ? (xPos - (rectWidth / 2) - groupAllPadding) + : xPos - rectWidth - padding - arrowLength; + _isLeft = true; + } else { + xPos = isGroupMode + ? xPosition + groupAllPadding + : xPosition + padding + arrowLength; + _isRight = true; + } + } else { + if (xPosition - rectWidth - padding - arrowLength > + _plotAreaBounds.left) { + xPos = isGroupMode + ? (xPos - (rectWidth / 2) - groupAllPadding) + : xPos - rectWidth - padding - arrowLength; + _isLeft = true; + } else { + xPos = isGroupMode + ? xPosition + groupAllPadding + : xPosition + padding + arrowLength; + _isRight = true; + } + } + + if (isGroupMode) { + if ((yPos + rectHeight) >= _plotAreaBounds.bottom) { + yPos = _plotAreaBounds.bottom / 2 - rectHeight / 2; + } + + if (yPos <= _plotAreaBounds.top) { + yPos = _plotAreaBounds.top; + } + } + } + } + + return Offset(xPos, yPos); + } + + RRect _validateRect( + Rect tooltipRRect, Rect plotAreaBounds, double borderRadius) { + if (tooltipRRect == Rect.zero || + tooltipRRect.width >= plotAreaBounds.width || + tooltipRRect.height >= plotAreaBounds.height) { + return RRect.zero; + } + + double rectLeft = tooltipRRect.left; + double rectRight = tooltipRRect.right; + if (tooltipRRect.left < plotAreaBounds.left) { + final double left = plotAreaBounds.left - tooltipRRect.left; + rectLeft += left; + rectRight += left; + } else if (tooltipRRect.right > plotAreaBounds.right) { + final double right = tooltipRRect.right - plotAreaBounds.right; + rectLeft -= right; + rectRight -= right; + } + + RRect alignedRect = RRect.fromRectAndRadius( + Rect.fromLTRB(rectLeft, tooltipRRect.top, rectRight, tooltipRRect.bottom), + Radius.circular(borderRadius), + ); + + if (alignedRect.left < plotAreaBounds.left || + alignedRect.right > plotAreaBounds.right) { + alignedRect = RRect.zero; + } + return alignedRect; + } + + Path _nosePath(String tooltipPosition, RRect tooltipRect, Offset position, + double arrowLength, double arrowWidth) { + final Path nosePath = Path(); + final double tooltipLeft = tooltipRect.left; + final double tooltipRight = tooltipRect.right; + final double tooltipTop = tooltipRect.top; + final double tooltipBottom = tooltipRect.bottom; + final double rectHalfWidth = tooltipRect.width / 2; + final double rectHalfHeight = tooltipRect.height / 2; + switch (tooltipPosition) { + case 'Left': + nosePath.moveTo(tooltipRight, tooltipTop + rectHalfHeight - arrowWidth); + nosePath.lineTo( + tooltipRight, tooltipBottom - rectHalfHeight + arrowWidth); + nosePath.lineTo(tooltipRight + arrowLength, position.dy); + nosePath.close(); + return nosePath; + + case 'Right': + nosePath.moveTo(tooltipLeft, tooltipTop + rectHalfHeight - arrowWidth); + nosePath.lineTo( + tooltipLeft, tooltipBottom - rectHalfHeight + arrowWidth); + nosePath.lineTo(tooltipLeft - arrowLength, position.dy); + nosePath.close(); + return nosePath; + + case 'Top': + nosePath.moveTo(position.dx, tooltipBottom + arrowLength); + nosePath.lineTo( + (tooltipRight - rectHalfWidth) + arrowWidth, tooltipBottom); + nosePath.lineTo( + (tooltipLeft + rectHalfWidth) - arrowWidth, tooltipBottom); + nosePath.close(); + return nosePath; + + case 'Bottom': + nosePath.moveTo(position.dx, tooltipTop - arrowLength); + nosePath.lineTo( + (tooltipRight - rectHalfWidth) + arrowWidth, tooltipTop); + nosePath.lineTo((tooltipLeft + rectHalfWidth) - arrowWidth, tooltipTop); + nosePath.close(); + return nosePath; + } + return nosePath; + } + + String _tooltipDirection() { + if (_isRight) { + return 'Right'; + } else if (_isLeft) { + return 'Left'; + } else if (_isTop) { + return 'Top'; + } else { + return 'Bottom'; + } + } + + TextStyle _createLabelStyle(FontWeight fontWeight, TextStyle labelStyle) { + return TextStyle( + fontWeight: fontWeight, + color: labelStyle.color, + fontSize: labelStyle.fontSize, + fontFamily: labelStyle.fontFamily, + fontStyle: labelStyle.fontStyle, + inherit: labelStyle.inherit, + backgroundColor: labelStyle.backgroundColor, + letterSpacing: labelStyle.letterSpacing, + wordSpacing: labelStyle.wordSpacing, + textBaseline: labelStyle.textBaseline, + height: labelStyle.height, + locale: labelStyle.locale, + foreground: labelStyle.foreground, + background: labelStyle.background, + shadows: labelStyle.shadows, + fontFeatures: labelStyle.fontFeatures, + decoration: labelStyle.decoration, + decorationColor: labelStyle.decorationColor, + decorationStyle: labelStyle.decorationStyle, + decorationThickness: labelStyle.decorationThickness, + debugLabel: labelStyle.debugLabel, + fontFamilyFallback: labelStyle.fontFamilyFallback); + } + + void _computeTooltipMarkers(ChartPointInfo pointInfo, Offset markerPosition) { + final Color color = pointInfo.color!; + final ChartMarker marker = ChartMarker() + ..x = markerPosition.dx + ..y = markerPosition.dy + ..index = pointInfo.dataPointIndex! + ..height = tooltipMarkerSize + ..width = tooltipMarkerSize + ..borderColor = color + ..borderWidth = 1 + ..color = color; + if (markerSettings != null) { + marker.merge( + borderColor: markerSettings!.borderColor ?? color, + color: markerSettings!.color ?? color, + image: markerSettings!.image, + type: markerSettings!.shape, + ); + } + marker.position = + Offset(marker.x - marker.width / 2, marker.y - marker.height / 2); + marker.shader = _markerShader( + pointInfo, marker.position & Size(marker.height, marker.width)); + _tooltipMarkers.add(marker); + } + + Shader? _markerShader(ChartPointInfo pointInfo, Rect bounds) { + final dynamic series = pointInfo.series; + if (series is CartesianSeriesRenderer) { + if (series.onCreateShader != null) { + final ShaderDetails details = ShaderDetails(bounds, 'marker'); + return series.onCreateShader!(details); + } else if (series.gradient != null) { + return series.gradient!.createShader(bounds); + } + } + return null; + } + + void _computeLineMarkers(ThemeData themeData, List source) { + final Color themeFillColor = themeData.colorScheme.surface; + final int length = chartPointInfo.length; + for (int i = 0; i < length; i++) { + final ChartPointInfo pointInfo = chartPointInfo[i]; + final Color color = pointInfo.color!; + final ChartMarker marker = ChartMarker() + ..x = pointInfo.markerXPos! + ..y = pointInfo.markerYPos! + ..index = pointInfo.dataPointIndex! + ..borderColor = color + ..color = themeFillColor; + if (markerSettings != null) { + marker.merge( + borderColor: markerSettings!.borderColor ?? color, + borderWidth: markerSettings!.borderWidth, + color: markerSettings!.color ?? themeFillColor, + height: markerSettings!.height, + width: markerSettings!.width, + image: markerSettings!.image, + type: markerSettings!.shape, + ); + } + marker.borderWidth = marker.borderWidth / 2; + marker.position = + Offset(marker.x - marker.width / 2, marker.y - marker.height / 2); + source.add(marker); + } + } + + void _computeTooltipLabels(String text, double width, double height, + TextStyle textStyle, RRect tooltipRRect, double markerPadding) { + final double markerSize = tooltipSettings.canShowMarker ? 20 : 0; + final double x = tooltipRRect.left + markerPadding + markerSize; + final double y = tooltipRRect.top + markerPadding; + if (tooltipSettings.format != null) { + _computeFormatTooltipLabels(x, y, text, textStyle); + } else { + // It specifies for range, financial type series. + if (text.contains('\n') || text.contains(':')) { + _computeDefaultTooltipLabels(x, y, text, textStyle); + } else { + // It specifies for xYDataSeriesRenderer. + final double markerPadding = tooltipSettings.canShowMarker ? 5 : 0; + _tooltipLabels.add(_TooltipLabels( + text, + textStyle.copyWith(fontWeight: FontWeight.bold), + Offset((tooltipRRect.left + tooltipRRect.width / 2) + markerPadding, + tooltipRRect.top + tooltipRRect.height / 2) + .translate(-width / 2, -height / 2), + )); + } + } + } + + void _computeDefaultTooltipLabels( + double x, double y, String text, TextStyle textStyle) { + final TextStyle boldStyle = textStyle.copyWith(fontWeight: FontWeight.bold); + double eachTextHeight = 0; + final List labels = text.split('\n'); + final int labelsLength = labels.length; + for (int i = 0; i < labelsLength; i++) { + final String label = labels[i]; + final double dy = y + eachTextHeight; + if (label.contains(':')) { + final List parts = label.split(':'); + final String leftText = '${parts[0]}:'; + final Size leftSize = measureText(leftText, textStyle); + _tooltipLabels.add(_TooltipLabels(leftText, textStyle, Offset(x, dy))); + if (parts.length > 1) { + final String rightText = parts[1]; + _tooltipLabels.add(_TooltipLabels( + rightText, boldStyle, Offset(x + leftSize.width, dy))); + } + eachTextHeight += leftSize.height; + } else { + _tooltipLabels.add(_TooltipLabels(label, boldStyle, Offset(x, dy))); + eachTextHeight += measureText(label, textStyle).height; + } + } + } + + void _computeFormatTooltipLabels( + double x, double y, String text, TextStyle textStyle) { + if (text.contains('\n')) { + _multiLineLabelFormat(x, y, text, textStyle); + } else { + _singleLineLabelFormat(x, y, text, textStyle); + } + } + + void _singleLineLabelFormat( + double x, double y, String label, TextStyle textStyle) { + final TextStyle boldStyle = textStyle.copyWith(fontWeight: FontWeight.bold); + double dx = x; + if (label.contains('') && label.contains('')) { + final List boldParts = label.split(''); + Size textSize = Size.zero; + for (final String text in boldParts) { + if (text.contains('')) { + final List parts = text.split(''); + if (parts.length == 2) { + final String boldText = parts[0]; + if (boldText != '') { + _tooltipLabels + .add(_TooltipLabels(boldText, boldStyle, Offset(dx, y))); + textSize = measureText(boldText, textStyle); + dx += textSize.width; + } + final String normalText = parts[1]; + if (normalText != '') { + _tooltipLabels + .add(_TooltipLabels(normalText, textStyle, Offset(dx, y))); + textSize = measureText(normalText, textStyle); + dx += textSize.width; + } + } + } else { + _tooltipLabels.add(_TooltipLabels(text, textStyle, Offset(dx, y))); + textSize = measureText(text, textStyle); + dx += textSize.width; + } + } + } else if (label.contains(':')) { + _computeDefaultTooltipLabels(x, y, label, textStyle); + } else { + _tooltipLabels.add(_TooltipLabels(label, textStyle, Offset(x, y))); + } + } + + void _multiLineLabelFormat( + double x, double y, String label, TextStyle textStyle) { + final TextStyle boldStyle = textStyle.copyWith(fontWeight: FontWeight.bold); + double dx = x; + double dy = y; + final List multiLines = label.split('\n'); + for (final String text in multiLines) { + if (text.contains('') && text.contains('')) { + final List boldParts = text.split(''); + Size boldPartSize = Size.zero; + for (final String boldPart in boldParts) { + if (boldPart != '') { + if (boldPart.contains('')) { + final List parts = boldPart.split(''); + if (parts.length == 2) { + final String boldText = parts[0]; + if (boldText != '') { + _tooltipLabels + .add(_TooltipLabels(boldText, boldStyle, Offset(dx, dy))); + boldPartSize = measureText(boldText, textStyle); + dx += boldPartSize.width; + } + final String normalText = parts[1]; + if (normalText != '') { + _tooltipLabels.add( + _TooltipLabels(normalText, textStyle, Offset(dx, dy))); + boldPartSize = measureText(normalText, textStyle); + dx += boldPartSize.width; + } + } + } else { + _tooltipLabels + .add(_TooltipLabels(boldPart, textStyle, Offset(dx, dy))); + boldPartSize = measureText(boldPart, textStyle); + dx += boldPartSize.width; + } + boldPartSize = measureText(boldPart, textStyle); + } + } + dx = x; + dy += boldPartSize.height; + } else { + _tooltipLabels.add(_TooltipLabels(text, textStyle, Offset(dx, dy))); + final Size textSize = measureText(text, textStyle); + dy += textSize.height; + } + } + } + + /// Override this method to customize the trackball tooltip labels + /// and it's positions and line rendering. + @override + void onPaint(PaintingContext context, Offset offset, + SfChartThemeData chartThemeData, ThemeData themeData) { + _drawTrackballLine(context, offset, chartThemeData, themeData); + // Draw line marker. + _drawMarkers(context, chartThemeData, _lineMarkers); + _drawLabel(context, offset, chartThemeData, themeData); + } + + void _drawTrackballLine(PaintingContext context, Offset offset, + SfChartThemeData chartThemeData, ThemeData themeData) { + if (chartPointInfo.isNotEmpty && lineType != TrackballLineType.none) { + final Paint paint = Paint() + ..isAntiAlias = true + ..color = (lineColor ?? chartThemeData.crosshairLineColor)! + ..strokeWidth = lineWidth + ..style = PaintingStyle.stroke; + + _drawLine( + context, offset, chartThemeData, themeData, lineDashArray, paint); + } + } + + void _drawLine( + PaintingContext context, + Offset offset, + SfChartThemeData chartThemeData, + ThemeData themeData, + List? dashArray, + Paint paint, + ) { + if (parentBox == null) { + return; + } + + final Rect plotAreaBounds = parentBox!.paintBounds; + final Path path = Path(); + if (_isTransposed) { + final double y = chartPointInfo[0].yPosition!; + path + ..moveTo(plotAreaBounds.left, y) + ..lineTo(plotAreaBounds.right, y); + } else { + final double x = chartPointInfo[0].xPosition!; + path + ..moveTo(x, plotAreaBounds.top) + ..lineTo(x, plotAreaBounds.bottom); + } + drawDashes(context.canvas, dashArray, paint, path: path); + } + + void _drawLabel(PaintingContext context, Offset offset, + SfChartThemeData chartThemeData, ThemeData themeData) { + final RenderBehaviorArea? parent = parentBox as RenderBehaviorArea?; + if (parent == null) { + return; + } + + final bool isRtl = parent.textDirection == TextDirection.rtl; + if (tooltipDisplayMode != TrackballDisplayMode.none) { + // Draw tooltip rectangle. + if (_tooltipPaths.isNotEmpty) { + final Color themeBackgroundColor = + chartThemeData.crosshairBackgroundColor!; + final Paint fillPaint = Paint() + ..color = tooltipSettings.color ?? themeBackgroundColor + ..isAntiAlias = true + ..style = PaintingStyle.fill; + final Paint strokePaint = Paint() + ..color = tooltipSettings.borderColor ?? themeBackgroundColor + ..strokeWidth = tooltipSettings.borderWidth + ..strokeCap = StrokeCap.butt + ..isAntiAlias = true + ..style = PaintingStyle.stroke; + final int length = _tooltipPaths.length; + for (int i = 0; i < length; i++) { + final Path path = _tooltipPaths[i]; + context.canvas.drawPath(path, strokePaint); + context.canvas.drawPath(path, fillPaint); + } + } + + // Draw tooltip marker. + _drawMarkers(context, chartThemeData, _tooltipMarkers); + + // Draw divider. + if (tooltipDisplayMode == TrackballDisplayMode.groupAllPoints && + _dividerStartOffset != null && + _dividerEndOffset != null) { + context.canvas.drawLine( + _dividerStartOffset!, + _dividerEndOffset!, + Paint() + ..color = chartThemeData.tooltipSeparatorColor! + ..strokeWidth = 1 + ..style = PaintingStyle.stroke + ..isAntiAlias = true, + ); + } + + // Draw tooltip labels. + if (_tooltipLabels.isNotEmpty) { + final int length = _tooltipLabels.length; + for (int i = 0; i < length; i++) { + final _TooltipLabels label = _tooltipLabels[i]; + _drawText( + context.canvas, label.text, label.position, label.style, isRtl); + } + } + } + } + + void _drawMarkers(PaintingContext context, SfChartThemeData chartThemeData, + List markers) { + if (markers.isNotEmpty) { + final Paint fillPaint = Paint()..isAntiAlias = true; + final Paint strokePaint = Paint() + ..isAntiAlias = true + ..style = PaintingStyle.stroke; + for (final ChartMarker marker in markers) { + fillPaint + ..color = marker.color! + ..shader = marker.shader; + strokePaint + ..color = marker.borderColor! + ..strokeWidth = marker.borderWidth; + _drawMarker( + context.canvas, + marker.position, + Size(marker.width, marker.height), + marker.type, + fillPaint, + strokePaint, + ); + } + } + } + + void _drawMarker(Canvas canvas, Offset position, Size size, + DataMarkerType type, Paint fillPaint, Paint strokePaint) { + if (position.isNaN) { + return; + } + + if (type == DataMarkerType.image) { + if (_trackballImage != null) { + paintImage( + canvas: canvas, rect: position & size, image: _trackballImage!); + } + } else if (type != DataMarkerType.none) { + paint( + canvas: canvas, + rect: position & size, + shapeType: toShapeMarkerType(type), + paint: fillPaint, + borderPaint: strokePaint, + ); + } + } + + void _drawText(Canvas canvas, String text, Offset position, TextStyle style, + bool isRtl) { + final TextPainter textPainter = TextPainter( + text: TextSpan(text: text, style: style), + textAlign: isRtl ? TextAlign.right : TextAlign.left, + maxLines: getMaxLinesContent(text), + textDirection: isRtl ? TextDirection.rtl : TextDirection.ltr, + ); + textPainter + ..layout() + ..paint(canvas, position); + } +} + +class TrackballBuilderOpacityWidget extends Opacity { + const TrackballBuilderOpacityWidget({ + super.key, + super.child, + required super.opacity, + }); + + @override + RenderOpacity createRenderObject(BuildContext context) { + return TrackballOpacityRenderBox( + opacity: opacity, + alwaysIncludeSemantics: alwaysIncludeSemantics, + ); + } +} + +class TrackballOpacityRenderBox extends RenderOpacity { + TrackballOpacityRenderBox({ + super.opacity = 1.0, + super.alwaysIncludeSemantics = false, + super.child, + }); +} + +class TrackballBuilderRenderObjectWidget extends SingleChildRenderObjectWidget { + const TrackballBuilderRenderObjectWidget( + {Key? key, + this.index, + required this.xPos, + required this.yPos, + required this.builder, + required this.chartPointInfo, + required this.trackballBehavior, + required Widget child}) + : super(key: key, child: child); + + final int? index; + final double xPos; + final double yPos; + final Widget builder; + final List? chartPointInfo; + final TrackballBehavior trackballBehavior; + + @override + RenderObject createRenderObject(BuildContext context) { + return TrackballBuilderRenderBox( + index, + xPos, + yPos, + builder, + chartPointInfo, + trackballBehavior, + ); + } + + @override + void updateRenderObject( + BuildContext context, covariant TrackballBuilderRenderBox renderObject) { + super.updateRenderObject(context, renderObject); + renderObject + ..index = index + ..xPos = xPos + ..yPos = yPos + ..builder = builder + ..chartPointInfo = chartPointInfo + ..trackballBehavior = trackballBehavior; + } +} + +/// Render the annotation widget in the respective position. +class TrackballBuilderRenderBox extends RenderShiftedBox { + /// Creates an instance of trackball template render box. + TrackballBuilderRenderBox(this.index, this.xPos, this.yPos, this._builder, + this.chartPointInfo, this.trackballBehavior, + [RenderBox? child]) + : super(child); + + /// Holds the value of x and y position. + double xPos, yPos; + + /// Specifies the list of chart point info. + List? chartPointInfo; + + /// Holds the value of index. + int? index; + + /// Holds the value of pointer length and pointer width respectively. + late double pointerLength, pointerWidth; + + /// Holds the value of trackball template rect. + Rect? trackballTemplateRect; + + /// Holds the value of boundary rect. + late Rect plotAreaBounds; + + /// Specifies the value of padding. + num padding = 10; + + /// Specifies the value of trackball behavior. + TrackballBehavior trackballBehavior; + + /// Specifies whether to group all the points. + bool isGroupAllPoints = false; + + /// Specifies whether it is the nearest point. + bool isNearestPoint = false; + + /// Specifies whether tooltip is present at right. + bool isRight = false; + + /// Specifies whether tooltip is present at bottom. + bool isBottom = false; + + /// Specifies whether the template is present inside the bounds. + bool isTemplateInBounds = true; + // Offset arrowOffset; + + /// Holds the tooltip position. + _TooltipPositions? _tooltipPosition; + + /// Holds the value of box parent data. + late BoxParentData childParentData; + + /// Gets and sets the builder widget. + Widget get builder => _builder; + Widget _builder; + set builder(Widget value) { + if (_builder != value) { + _builder = value; + markNeedsLayout(); + } + } + + bool isTransposed = false; + + @override + bool hitTestChildren(BoxHitTestResult result, {required Offset position}) { + if (child != null && child!.parentData != null) { + final BoxParentData childParentData = child!.parentData! as BoxParentData; + return result.addWithPaintOffset( + offset: childParentData.offset, + position: position, + hitTest: (BoxHitTestResult result, Offset transformed) { + return child!.hitTest(result, position: transformed); + }, + ); + } + return false; + } + + @override + void performLayout() { + size = constraints.biggest; + isTransposed = chartPointInfo != null && + chartPointInfo!.isNotEmpty && + chartPointInfo![0].series!.isTransposed; + final TrackballDisplayMode tooltipDisplayMode = + trackballBehavior.tooltipDisplayMode; + isGroupAllPoints = + tooltipDisplayMode == TrackballDisplayMode.groupAllPoints; + isNearestPoint = tooltipDisplayMode == TrackballDisplayMode.nearestPoint; + + final List? tooltipTop = []; + final List tooltipBottom = []; + final List xAxesInfo = []; + final List yAxesInfo = []; + final bool isTrackballMarkerEnabled = + trackballBehavior.markerSettings != null; + + final List visiblePoints = trackballBehavior._visiblePoints; + pointerLength = trackballBehavior.tooltipSettings.arrowLength; + pointerWidth = trackballBehavior.tooltipSettings.arrowWidth; + plotAreaBounds = trackballBehavior._plotAreaBounds; + final double boundaryLeft = plotAreaBounds.left; + final double boundaryRight = plotAreaBounds.right; + final num totalWidth = boundaryLeft + plotAreaBounds.width; + double left; + double top; + if (child != null) { + child!.layout(constraints, parentUsesSize: true); + if (child!.parentData is BoxParentData) { + childParentData = child!.parentData as BoxParentData; + final double sizeFullWidth = child!.size.width; + final double sizeFullHeight = child!.size.height; + final double sizeHalfWidth = sizeFullWidth / 2; + final double sizeHalfHeight = sizeFullHeight / 2; + + if (isGroupAllPoints) { + final ChartAlignment tooltipAlignment = + trackballBehavior.tooltipAlignment; + if (tooltipAlignment == ChartAlignment.center) { + yPos = plotAreaBounds.center.dy - sizeHalfHeight; + } else if (tooltipAlignment == ChartAlignment.near) { + yPos = plotAreaBounds.top; + } else { + yPos = plotAreaBounds.bottom; + } + + if (yPos + sizeFullHeight > plotAreaBounds.bottom && + tooltipAlignment == ChartAlignment.far) { + yPos = plotAreaBounds.bottom - sizeFullHeight; + } + } + + final double markerHalfWidth = isTrackballMarkerEnabled + ? trackballBehavior.markerSettings!.width / 2 + : 0; + + if (chartPointInfo != null && + chartPointInfo!.isNotEmpty && + !isGroupAllPoints) { + final int length = chartPointInfo!.length; + for (int i = 0; i < length; i++) { + final dynamic series = chartPointInfo![i].series!; + final Offset visiblePoint = visiblePoints[i]; + final double closestPointX = visiblePoint.dx; + final double closestPointY = visiblePoint.dy; + tooltipTop!.add(isTransposed + ? closestPointX - sizeHalfWidth + : closestPointY - sizeHalfHeight); + tooltipBottom.add(isTransposed + ? closestPointX + sizeHalfWidth + : closestPointY + sizeHalfHeight); + xAxesInfo.add(series.xAxis!); + yAxesInfo.add(series.yAxis!); + } + + if (tooltipTop != null && tooltipTop.isNotEmpty) { + _tooltipPosition = trackballBehavior._smartTooltipPositions( + tooltipTop, + tooltipBottom, + xAxesInfo, + yAxesInfo, + chartPointInfo!, + isTransposed ? 8 : 5); + } + + if (isNearestPoint) { + left = isTransposed + ? xPos + sizeHalfWidth + : xPos + padding + markerHalfWidth; + top = isTransposed + ? yPos + padding + markerHalfWidth + : yPos - sizeHalfHeight; + } else { + left = (isTransposed + ? _tooltipPosition!.tooltipTop[index!] + : xPos + padding + markerHalfWidth) + .toDouble(); + top = (isTransposed + ? yPos + pointerLength + markerHalfWidth + : _tooltipPosition!.tooltipTop[index!]) + .toDouble(); + } + + if (!isTransposed) { + if (left + sizeFullWidth > totalWidth) { + isRight = true; + left = xPos - sizeFullWidth - pointerLength - markerHalfWidth; + } else { + isRight = false; + } + } else { + if (top + sizeFullHeight > plotAreaBounds.bottom) { + isBottom = true; + top = yPos - sizeFullHeight - pointerLength - markerHalfWidth; + } else { + isBottom = false; + } + } + + trackballTemplateRect = + Rect.fromLTWH(left, top, sizeFullWidth, sizeFullHeight); + double xPlotOffset = + visiblePoints.first.dx - trackballTemplateRect!.width / 2; + final double rightTemplateEnd = + xPlotOffset + trackballTemplateRect!.width; + final double leftTemplateEnd = xPlotOffset; + + if (_isTemplateWithinBounds(plotAreaBounds, trackballTemplateRect!)) { + isTemplateInBounds = true; + childParentData.offset = Offset(left, top); + } else if (plotAreaBounds.width > trackballTemplateRect!.width && + plotAreaBounds.height > trackballTemplateRect!.height) { + isTemplateInBounds = true; + if (rightTemplateEnd > boundaryRight) { + xPlotOffset = xPlotOffset - (rightTemplateEnd - boundaryRight); + if (xPlotOffset < boundaryLeft) { + xPlotOffset = xPlotOffset + (boundaryLeft - xPlotOffset); + if (xPlotOffset + trackballTemplateRect!.width > + boundaryRight) { + xPlotOffset = xPlotOffset - + (totalWidth + + trackballTemplateRect!.width - + boundaryRight); + } + if (xPlotOffset < boundaryLeft || xPlotOffset > boundaryRight) { + isTemplateInBounds = false; + } + } + } else if (leftTemplateEnd < boundaryLeft) { + xPlotOffset = xPlotOffset + (boundaryLeft - leftTemplateEnd); + if (xPlotOffset + trackballTemplateRect!.width > boundaryRight) { + xPlotOffset = xPlotOffset - + (totalWidth + trackballTemplateRect!.width - boundaryRight); + if (xPlotOffset < boundaryLeft) { + xPlotOffset = xPlotOffset + (boundaryLeft - xPlotOffset); + } + if (xPlotOffset < boundaryLeft || + xPlotOffset + trackballTemplateRect!.width > + boundaryRight) { + isTemplateInBounds = false; + } + } + } + childParentData.offset = Offset(xPlotOffset, yPos); + } else { + child!.layout(constraints.copyWith(maxWidth: 0), + parentUsesSize: true); + isTemplateInBounds = false; + } + } else { + if (visiblePoints.isNotEmpty) { + if (xPos + sizeFullWidth > totalWidth) { + xPos = xPos - sizeFullWidth - 2 * padding - markerHalfWidth; + } + + trackballTemplateRect = + Rect.fromLTWH(xPos, yPos, sizeFullWidth, sizeFullHeight); + double xPlotOffset = + visiblePoints.first.dx - trackballTemplateRect!.width / 2; + final double rightTemplateEnd = + xPlotOffset + trackballTemplateRect!.width; + final double leftTemplateEnd = xPlotOffset; + + if (_isTemplateWithinBounds( + plotAreaBounds, trackballTemplateRect!) && + (boundaryRight > trackballTemplateRect!.right && + boundaryLeft < trackballTemplateRect!.left)) { + isTemplateInBounds = true; + childParentData.offset = Offset( + xPos + + (trackballTemplateRect!.right + padding > boundaryRight + ? trackballTemplateRect!.right + + padding - + boundaryRight + : padding) + + markerHalfWidth, + yPos); + } else if (plotAreaBounds.width > trackballTemplateRect!.width && + plotAreaBounds.height > trackballTemplateRect!.height) { + isTemplateInBounds = true; + if (rightTemplateEnd > boundaryRight) { + xPlotOffset = xPlotOffset - (rightTemplateEnd - boundaryRight); + if (xPlotOffset < boundaryLeft) { + xPlotOffset = xPlotOffset + (boundaryLeft - xPlotOffset); + if (xPlotOffset + trackballTemplateRect!.width > + boundaryRight) { + xPlotOffset = xPlotOffset - + (totalWidth + + trackballTemplateRect!.width - + boundaryRight); + } + if (xPlotOffset < boundaryLeft || + xPlotOffset > boundaryRight) { + isTemplateInBounds = false; + } + } + } else if (leftTemplateEnd < boundaryLeft) { + xPlotOffset = xPlotOffset + (boundaryLeft - leftTemplateEnd); + if (xPlotOffset + trackballTemplateRect!.width > + boundaryRight) { + xPlotOffset = xPlotOffset - + (xPlotOffset + + trackballTemplateRect!.width - + boundaryRight); + if (xPlotOffset < boundaryLeft) { + xPlotOffset = xPlotOffset + (boundaryLeft - xPlotOffset); + } + if (xPlotOffset < boundaryLeft || + xPlotOffset > boundaryRight) { + isTemplateInBounds = false; + } + } + } + childParentData.offset = Offset(xPlotOffset, yPos); + } else { + child!.layout(constraints.copyWith(maxWidth: 0), + parentUsesSize: true); + isTemplateInBounds = false; + } + } + } + } + } + if (!isGroupAllPoints && index == chartPointInfo!.length - 1) { + tooltipTop?.clear(); + tooltipBottom.clear(); + yAxesInfo.clear(); + xAxesInfo.clear(); + } + } + + /// To check template is within bounds. + bool _isTemplateWithinBounds(Rect plotAreaBounds, Rect templateRect) { + final double triplePadding = (3 * padding).toDouble(); + final Rect rect = Rect.fromLTWH( + padding + templateRect.left, + triplePadding + templateRect.top, + templateRect.width, + templateRect.height); + final Rect axisBounds = Rect.fromLTWH( + padding + plotAreaBounds.left, + triplePadding + plotAreaBounds.top, + plotAreaBounds.width, + plotAreaBounds.height); + return rect.left >= axisBounds.left && + rect.left + rect.width <= axisBounds.left + axisBounds.width && + rect.top >= axisBounds.top && + rect.bottom <= axisBounds.top + axisBounds.height; + } + + void _calculateMarkerPositions(PaintingContext context, + SfChartThemeData chartThemeData, ThemeData themeData) { + final TrackballMarkerSettings? markerSettings = + trackballBehavior.markerSettings; + if ((chartPointInfo != null && chartPointInfo!.isEmpty) || + markerSettings == null || + markerSettings.markerVisibility == TrackballVisibilityMode.hidden) { + return; + } + + final List markers = []; + trackballBehavior._computeLineMarkers(themeData, markers); + trackballBehavior._drawMarkers(context, chartThemeData, markers); + } + + @override + void paint(PaintingContext context, Offset offset) { + final SfChartThemeData chartThemeData = trackballBehavior._chartThemeData!; + final ThemeData themeData = trackballBehavior._themeData!; + _calculateMarkerPositions(context, chartThemeData, themeData); + + final bool isTemplateWithInBoundsInTransposedChart = + _isTemplateWithinBounds(plotAreaBounds, trackballTemplateRect!); + if ((!isTransposed && isTemplateInBounds) || + (isTransposed && isTemplateWithInBoundsInTransposedChart)) { + super.paint(context, offset); + } + + if (!isGroupAllPoints) { + final Color chartThemeBackgroundColor = + chartThemeData.crosshairBackgroundColor!; + final ChartPointInfo pointInfo = chartPointInfo![index!]; + final Color color = pointInfo.series is IndicatorRenderer + ? pointInfo.color + : (pointInfo.series!.color) ?? chartThemeBackgroundColor; + final InteractiveTooltip tooltipSettings = + trackballBehavior.tooltipSettings; + final Paint fillPaint = Paint() + ..color = tooltipSettings.color ?? color + ..isAntiAlias = true + ..style = PaintingStyle.fill; + final Paint strokePaint = Paint() + ..color = tooltipSettings.borderColor ?? color + ..strokeWidth = tooltipSettings.borderWidth + ..strokeCap = StrokeCap.butt + ..isAntiAlias = true + ..style = PaintingStyle.stroke; + + if (trackballTemplateRect!.left > plotAreaBounds.left && + trackballTemplateRect!.right < plotAreaBounds.right) { + final RRect templateRRect = RRect.fromRectAndRadius( + Rect.fromLTWH( + offset.dx + trackballTemplateRect!.left, + offset.dy + trackballTemplateRect!.top, + trackballTemplateRect!.width, + trackballTemplateRect!.height), + Radius.zero); + + String nosePosition = ''; + if (!isTransposed) { + if (!isRight) { + nosePosition = 'Right'; + } else { + nosePosition = 'Left'; + } + } else if (isTemplateInBounds && + isTemplateWithInBoundsInTransposedChart) { + if (!isBottom) { + nosePosition = 'Bottom'; + } else { + nosePosition = 'Top'; + } + } + + final Path nosePath = trackballBehavior._nosePath(nosePosition, + templateRRect, Offset(xPos, yPos), pointerLength, pointerWidth); + + if (isTemplateInBounds) { + context.canvas.drawPath(nosePath, fillPaint); + context.canvas.drawPath(nosePath, strokePaint); + } + } + } + } +} + +/// Options to customize the markers that are displayed when +/// trackball is enabled. +/// +/// Trackball markers are used to provide information about the exact +/// point location, when the trackball is visible. You can add a shape to adorn +/// each data point. Trackball markers can be enabled by using the +/// [markerVisibility] property in [TrackballMarkerSettings]. +/// Provides the options like color, border width, border color and shape of the +/// marker to customize the appearance. +class TrackballMarkerSettings extends MarkerSettings { + /// Creating an argument constructor of TrackballMarkerSettings class. + const TrackballMarkerSettings({ + this.markerVisibility = TrackballVisibilityMode.auto, + super.height, + super.width, + super.color, + super.shape, + super.borderWidth, + super.borderColor, + super.image, + }); + + /// Whether marker should be visible or not when trackball is enabled. + /// + /// The below values are applicable for this: + /// * TrackballVisibilityMode.auto - If the [isVisible] property in the series + /// `markerSettings` is set to true, then the trackball marker will also be + /// displayed for that particular series, else it will not be displayed. + /// * TrackballVisibilityMode.visible - Makes the trackball marker visible + /// for all the series, + /// irrespective of considering the [isVisible] property's value in the + /// `markerSettings`. + /// * TrackballVisibilityMode.hidden - Hides the trackball marker for all + /// the series. + /// + /// Defaults to `TrackballVisibilityMode.auto`. + /// + /// Also refer [TrackballVisibilityMode]. + /// + /// ```dart + /// late TrackballBehavior trackballBehavior; + /// + /// void initState() { + /// trackballBehavior = TrackballBehavior( + /// enable: true, + /// markerSettings: TrackballMarkerSettings( + /// markerVisibility: TrackballVisibilityMode.visible, + /// width: 10 + /// ) + /// ); + /// super.initState(); + /// } + /// + /// Widget build(BuildContext context) { + /// return SfCartesianChart( + /// trackballBehavior: trackballBehavior + /// ); + /// } + ///``` + final TrackballVisibilityMode markerVisibility; + + @override + bool operator ==(Object other) { + if (identical(this, other)) { + return true; + } + if (other.runtimeType != runtimeType) { + return false; + } + + return other is TrackballMarkerSettings && + other.markerVisibility == markerVisibility && + other.height == height && + other.width == width && + other.color == color && + other.shape == shape && + other.borderWidth == borderWidth && + other.borderColor == borderColor && + other.image == image; + } + + @override + int get hashCode { + final List values = [ + markerVisibility, + height, + width, + color, + shape, + borderWidth, + borderColor, + image + ]; + return Object.hashAll(values); + } +} + +class TrackballInfo { + TrackballInfo({ + required this.position, + this.name, + this.color, + }); + + /// Local position of the tooltip. + final Offset? position; + + /// Specifies the series name. + final String? name; + + /// Specifies the series color. + final Color? color; +} + +class ChartTrackballInfo extends TrackballInfo { + ChartTrackballInfo({ + required super.position, + required this.point, + required this.series, + required this.seriesIndex, + required this.segmentIndex, + required this.pointIndex, + this.header, + this.text, + this.lowYPos, + this.highXPos, + this.highYPos, + this.openXPos, + this.openYPos, + this.closeXPos, + this.closeYPos, + this.minYPos, + this.maxXPos, + this.maxYPos, + this.lowerXPos, + this.lowerYPos, + this.upperXPos, + this.upperYPos, + super.name, + super.color, + }); + + final CartesianChartPoint point; + final dynamic series; + final int seriesIndex; + final int segmentIndex; + final int pointIndex; + final String? header; + final String? text; + + double? lowYPos; + double? highXPos; + double? highYPos; + double? openXPos; + double? openYPos; + double? closeXPos; + double? closeYPos; + double? minYPos; + double? maxXPos; + double? maxYPos; + double? lowerXPos; + double? lowerYPos; + double? upperXPos; + double? upperYPos; +} + +/// Class to store trackball tooltip start and end positions. +class _TooltipPositions { + /// Creates the parameterized constructor for the class TooltipPositions. + const _TooltipPositions(this.tooltipTop, this.tooltipBottom); + + /// Specifies the tooltip top value. + final List tooltipTop; + + /// Specifies the tooltip bottom value. + final List tooltipBottom; +} + +/// Class to store trackball tooltip label, label style and positions. +class _TooltipLabels { + /// Creates the parameterized constructor for the class _TooltipLabels. + _TooltipLabels(this.text, this.style, this.position); + + /// Specifies the tooltip label value. + final String text; + + /// Specifies the tooltip label style value. + final TextStyle style; + + /// Specifies the tooltip label position value. + final Offset position; +} diff --git a/packages/syncfusion_flutter_charts/lib/src/charts/behaviors/zooming.dart b/packages/syncfusion_flutter_charts/lib/src/charts/behaviors/zooming.dart new file mode 100644 index 000000000..a0933a671 --- /dev/null +++ b/packages/syncfusion_flutter_charts/lib/src/charts/behaviors/zooming.dart @@ -0,0 +1,1825 @@ +import 'dart:math'; + +import 'package:flutter/gestures.dart'; +import 'package:flutter/material.dart'; +import 'package:flutter/rendering.dart'; +import 'package:intl/intl.dart'; +import 'package:syncfusion_flutter_core/core.dart'; +import 'package:syncfusion_flutter_core/theme.dart'; + +import '../../sparkline/utils/helper.dart'; +import '../axis/axis.dart'; +import '../axis/category_axis.dart'; +import '../axis/datetime_axis.dart'; +import '../axis/datetime_category_axis.dart'; +import '../axis/logarithmic_axis.dart'; +import '../axis/numeric_axis.dart'; +import '../base.dart'; +import '../common/callbacks.dart'; +import '../common/interactive_tooltip.dart'; +import '../interactions/behavior.dart'; +import '../utils/enum.dart'; +import '../utils/helper.dart'; +import '../utils/typedef.dart'; + +/// Customizes the zooming options. +/// +/// Customize the various zooming actions such as tap zooming, selection +/// zooming, zoom pinch. In selection zooming, you can long-press and drag to +/// select a range on the chart to be zoomed in and also you can customize the +/// selection zooming rectangle using `selectionRectBorderWidth`, +/// `selectionRectBorderColor` and `selectionRectColor` properties. +/// +/// Pinch zooming can be performed by moving two fingers over the chart. +/// Default mode is [ZoomMode.xy]. Zooming will be stopped after reaching +/// `maximumZoomLevel`. +/// +/// _Note:_ This is only applicable for `SfCartesianChart`. +class ZoomPanBehavior extends ChartBehavior { + /// Creating an argument constructor of ZoomPanBehavior class. + ZoomPanBehavior({ + this.enablePinching = false, + this.enableDoubleTapZooming = false, + this.enablePanning = false, + this.enableSelectionZooming = false, + this.enableMouseWheelZooming = false, + this.zoomMode = ZoomMode.xy, + this.maximumZoomLevel = 0.01, + this.selectionRectBorderWidth = 1, + this.selectionRectBorderColor, + this.selectionRectColor, + }); + + /// Enables or disables the pinch zooming. + /// + /// Pinching can be performed by moving two fingers over the chart. + /// You can zoom the chart through pinch gesture in touch enabled devices. + /// + /// Defaults to `false`. + /// + /// ```dart + /// late ZoomPanBehavior zoomPanBehavior; + /// + /// void initState() { + /// zoomPanBehavior = ZoomPanBehavior( + /// enablePinching: true + /// ); + /// super.initState(); + /// } + /// + /// Widget build(BuildContext context) { + /// return SfCartesianChart( + /// zoomPanBehavior: zoomPanBehavior + /// ); + /// } + /// ``` + final bool enablePinching; + + /// Enables or disables the double tap zooming. + /// + /// Zooming will enable when you tap double time in plot area. + /// After reaching the maximum zoom level, zooming will be stopped. + /// + /// Defaults to `false`. + /// + /// ```dart + /// late ZoomPanBehavior zoomPanBehavior; + /// + /// void initState() { + /// zoomPanBehavior = ZoomPanBehavior( + /// enableDoubleTapZooming: true + /// ); + /// super.initState(); + /// } + /// + /// Widget build(BuildContext context) { + /// return SfCartesianChart( + /// zoomPanBehavior: zoomPanBehavior + /// ); + /// } + /// ``` + final bool enableDoubleTapZooming; + + /// Enables or disables the panning. + /// + /// Panning can be performed on a zoomed axis. + /// + /// Defaults to `false`. + /// + /// ```dart + /// late ZoomPanBehavior zoomPanBehavior; + /// + /// void initState() { + /// zoomPanBehavior = ZoomPanBehavior( + /// enablePanning: true + /// ); + /// super.initState(); + /// } + /// + /// Widget build(BuildContext context) { + /// return SfCartesianChart( + /// zoomPanBehavior: zoomPanBehavior + /// ); + /// } + /// ``` + final bool enablePanning; + + /// Enables or disables the selection zooming. + /// + /// Selection zooming can be performed by long-press and then dragging. + /// + /// Defaults to `false`. + /// + /// ```dart + /// late ZoomPanBehavior zoomPanBehavior; + /// + /// void initState() { + /// zoomPanBehavior = ZoomPanBehavior( + /// enableSelectionZooming: true + /// ); + /// super.initState(); + /// } + /// + /// Widget build(BuildContext context) { + /// return SfCartesianChart( + /// zoomPanBehavior: zoomPanBehavior + /// ); + /// } + /// ``` + final bool enableSelectionZooming; + + /// Enables or disables the mouseWheelZooming. + /// + /// Mouse wheel zooming can be performed by rolling the mouse wheel up or + /// down. The place where the cursor is hovering gets zoomed in or out + /// according to the mouse wheel rolling up or down. + /// + /// Defaults to `false`. + /// + /// ```dart + /// late ZoomPanBehavior zoomPanBehavior; + /// + /// void initState() { + /// zoomPanBehavior = ZoomPanBehavior( + /// enableMouseWheelZooming: true + /// ); + /// super.initState(); + /// } + /// + /// Widget build(BuildContext context) { + /// return SfCartesianChart( + /// zoomPanBehavior: zoomPanBehavior + /// ); + /// } + /// ``` + final bool enableMouseWheelZooming; + + /// By default, both the x and y-axes in the chart can be zoomed. + /// + /// It can be changed by setting value to this property. + /// + /// Defaults to `ZoomMode.xy`. + /// + /// Also refer [ZoomMode]. + /// + /// ```dart + /// late ZoomPanBehavior zoomPanBehavior; + /// + /// void initState() { + /// zoomPanBehavior = ZoomPanBehavior( + /// zoomMode: ZoomMode.x + /// ); + /// super.initState(); + /// } + /// + /// Widget build(BuildContext context) { + /// return SfCartesianChart( + /// zoomPanBehavior: zoomPanBehavior + /// ); + /// } + /// ``` + final ZoomMode zoomMode; + + /// Maximum zoom level. + /// + /// Zooming will be stopped after reached this value and ranges from 0 to 1. + /// + /// Defaults to `null`. + /// + /// ```dart + /// late ZoomPanBehavior zoomPanBehavior; + /// + /// void initState() { + /// zoomPanBehavior = ZoomPanBehavior( + /// maximumZoomLevel: 0.8 + /// ); + /// super.initState(); + /// } + /// + /// Widget build(BuildContext context) { + /// return SfCartesianChart( + /// zoomPanBehavior: zoomPanBehavior + /// ); + /// } + /// ``` + final double maximumZoomLevel; + + /// Border width of the selection zooming rectangle. + /// + /// Used to change the stroke width of the selection rectangle. + /// + /// Defaults to `1`. + /// + /// ```dart + /// late ZoomPanBehavior zoomPanBehavior; + /// + /// void initState() { + /// zoomPanBehavior = ZoomPanBehavior( + /// enableSelectionZooming: true, + /// selectionRectBorderWidth: 2 + /// ); + /// super.initState(); + /// } + /// + /// Widget build(BuildContext context) { + /// return SfCartesianChart( + /// zoomPanBehavior: zoomPanBehavior + /// ); + /// } + /// ``` + final double selectionRectBorderWidth; + + /// Border color of the selection zooming rectangle. + /// + /// It used to change the stroke color of the selection rectangle. + /// + /// Defaults to `null`. + /// + /// ```dart + /// late ZoomPanBehavior zoomPanBehavior; + /// + /// void initState() { + /// zoomPanBehavior = ZoomPanBehavior( + /// enableSelectionZooming: true, + /// selectionRectBorderColor: Colors.red + /// ); + /// super.initState(); + /// } + /// + /// Widget build(BuildContext context) { + /// return SfCartesianChart( + /// zoomPanBehavior: zoomPanBehavior + /// ); + /// } + /// ``` + final Color? selectionRectBorderColor; + + /// Color of the selection zooming rectangle. + /// + /// It used to change the background color of the selection rectangle. + /// + /// Defaults to `null`. + /// + /// ```dart + /// late ZoomPanBehavior zoomPanBehavior; + /// + /// void initState() { + /// zoomPanBehavior = ZoomPanBehavior( + /// enableSelectionZooming: true, + /// selectionRectColor: Colors.yellow + /// ); + /// super.initState(); + /// } + /// + /// Widget build(BuildContext context) { + /// return SfCartesianChart( + /// zoomPanBehavior: zoomPanBehavior + /// ); + /// } + /// ``` + final Color? selectionRectColor; + + late bool _isZoomIn, _isZoomOut; + Path? _rectPath; + + bool? _isPinching = false; + Offset? _previousMovedPosition; + Offset? _zoomStartPosition; + List _touchStartPositions = []; + List _touchMovePositions = []; + List<_ZoomAxisRange> _zoomAxes = <_ZoomAxisRange>[]; + + /// Holds the value of zooming rect. + Rect _zoomingRect = Rect.zero; + + @override + // ignore: avoid_equals_and_hash_code_on_mutable_classes + bool operator ==(Object other) { + if (identical(this, other)) { + return true; + } + if (other.runtimeType != runtimeType) { + return false; + } + + return other is ZoomPanBehavior && + other.enablePinching == enablePinching && + other.enableDoubleTapZooming == enableDoubleTapZooming && + other.enablePanning == enablePanning && + other.enableSelectionZooming == enableSelectionZooming && + other.enableMouseWheelZooming == enableMouseWheelZooming && + other.zoomMode == zoomMode && + other.maximumZoomLevel == maximumZoomLevel && + other.selectionRectBorderWidth == selectionRectBorderWidth && + other.selectionRectBorderColor == selectionRectBorderColor && + other.selectionRectColor == selectionRectColor; + } + + @override + // ignore: avoid_equals_and_hash_code_on_mutable_classes + int get hashCode { + final List values = [ + enablePinching, + enableDoubleTapZooming, + enablePanning, + enableSelectionZooming, + enableMouseWheelZooming, + zoomMode, + maximumZoomLevel, + selectionRectBorderWidth, + selectionRectBorderColor, + selectionRectColor + ]; + return Object.hashAll(values); + } + + /// To customize the necessary pointer events in behaviors. + /// (e.g., CrosshairBehavior, TrackballBehavior, ZoomingBehavior). + @override + void handleEvent(PointerEvent event, BoxHitTestEntry entry) { + if (event is PointerScrollEvent || event is PointerPanZoomUpdateEvent) { + _handlePanZoomUpdate(event); + } + if (event is PointerDownEvent) { + _startPinchZooming(event); + } + if (event is PointerMoveEvent) { + _performPinchZoomUpdate(event); + } + if (event is PointerUpEvent) { + _endPinchZooming(event); + } + } + + /// Called when a long press gesture by a primary button has been + /// recognized in behavior. + @override + void handleLongPressStart(LongPressStartDetails details) { + if (enableSelectionZooming) { + _longPressStart(parentBox!.globalToLocal(details.globalPosition)); + } + } + + /// Called when moving after the long press gesture by a primary button is + /// recognized in behavior. + @override + void handleLongPressMoveUpdate(LongPressMoveUpdateDetails details) { + if (enableSelectionZooming) { + final Offset position = parentBox!.globalToLocal(details.globalPosition); + _doSelectionZooming(position.dx, position.dy); + parentBox!.markNeedsPaint(); + } + } + + /// Called when the pointer stops contacting the screen after a long-press + /// by a primary button in behavior. + @override + void handleLongPressEnd(LongPressEndDetails details) { + if (enableSelectionZooming) { + _longPressEnd(); + parentBox!.markNeedsPaint(); + } + } + + /// Called when pointer tap has contacted the screen double time in behavior. + @override + void handleDoubleTap(Offset position) { + final RenderBehaviorArea parent = parentBox as RenderBehaviorArea; + final Offset localPosition = parentBox!.globalToLocal(position); + if (enableDoubleTapZooming) { + parent.hideInteractiveTooltip(); + _doubleTap(localPosition, parentBox!.paintBounds); + } + } + + /// Called when the pointers in contact with the screen, + /// and initial scale of 1.0. + @override + void handleScaleStart(ScaleStartDetails details) { + _startPanning(); + } + + /// Called when the pointers in contact with the screen have indicated + /// a new scale. + @override + void handleScaleUpdate(ScaleUpdateDetails details) { + _performPanning(details); + } + + /// Called when the pointers are no longer in contact with the screen. + @override + void handleScaleEnd(ScaleEndDetails details) { + _endPanning(); + } + + void _handlePanZoomUpdate(PointerEvent details) { + if (parentBox!.attached && enableMouseWheelZooming) { + final Offset localPosition = parentBox!.globalToLocal(details.position); + final Rect paintBounds = parentBox!.paintBounds; + _performMouseWheelZooming( + details, localPosition.dx, localPosition.dy, paintBounds); + } + } + + void _performPinchZoomUpdate(PointerMoveEvent event) { + final RenderBehaviorArea parent = parentBox as RenderBehaviorArea; + if (parent.performZoomThroughTouch && enablePinching) { + _zoom(event); + } + } + + void _performPanning(ScaleUpdateDetails details) { + if (enablePanning) { + _pan( + parentBox!.globalToLocal(details.focalPoint), parentBox!.paintBounds); + } + } + + void _zoom(PointerMoveEvent event) { + Rect? pinchRect; + final RenderBehaviorArea? parent = parentBox as RenderBehaviorArea?; + if (parent == null) { + return; + } + final RenderCartesianAxes? axes = parent.cartesianAxes; + if (axes == null) { + return; + } + final Rect clipRect = parent.paintBounds; + num selectionMin, selectionMax, rangeMin, rangeMax, value, axisTrans; + double currentFactor, currentPosition, maxZoomFactor, currentZoomFactor; + int count = 0; + if (enablePinching && _touchStartPositions.length == 2) { + _isPinching = true; + final int pointerID = event.pointer; + bool addPointer = true; + for (int i = 0; i < _touchMovePositions.length; i++) { + if (_touchMovePositions[i].pointer == pointerID) { + addPointer = false; + } + } + if (_touchMovePositions.length < 2 && addPointer) { + _touchMovePositions.add(event); + } + if (_touchMovePositions.length == 2) { + if (_touchMovePositions[0].pointer == event.pointer) { + _touchMovePositions[0] = event; + } + if (_touchMovePositions[1].pointer == event.pointer) { + _touchMovePositions[1] = event; + } + Offset touchStart0, touchEnd0, touchStart1, touchEnd1; + _calculateZoomAxesRange(axes); + final Rect containerRect = Offset.zero & clipRect.size; + touchStart0 = _touchStartPositions[0].position - containerRect.topLeft; + touchEnd0 = _touchMovePositions[0].position - containerRect.topLeft; + touchStart1 = _touchStartPositions[1].position - containerRect.topLeft; + touchEnd1 = _touchMovePositions[1].position - containerRect.topLeft; + final double scaleX = (touchEnd0.dx - touchEnd1.dx).abs() / + (touchStart0.dx - touchStart1.dx).abs(); + final double scaleY = (touchEnd0.dy - touchEnd1.dy).abs() / + (touchStart0.dy - touchStart1.dy).abs(); + final double clipX = ((clipRect.left - touchEnd0.dx) / scaleX) + + min(touchStart0.dx, touchStart1.dx); + final double clipY = ((clipRect.top - touchEnd0.dy) / scaleY) + + min(touchStart0.dy, touchStart1.dy); + pinchRect = Rect.fromLTWH( + clipX, clipY, clipRect.width / scaleX, clipRect.height / scaleY); + } + } + axes.visitChildren((RenderObject child) { + if (child is RenderChartAxis && pinchRect != null) { + child.zoomingInProgress = true; + if ((child.isVertical && zoomMode != ZoomMode.x) || + (!child.isVertical && zoomMode != ZoomMode.y)) { + if (!child.isVertical) { + value = pinchRect.left - clipRect.left; + axisTrans = clipRect.width / _zoomAxes[count].delta!; + rangeMin = value / axisTrans + _zoomAxes[count].min!; + value = pinchRect.left + pinchRect.width - clipRect.left; + rangeMax = value / axisTrans + _zoomAxes[count].min!; + } else { + value = pinchRect.top - clipRect.top; + axisTrans = clipRect.height / _zoomAxes[count].delta!; + rangeMin = (value * -1 + clipRect.height) / axisTrans + + _zoomAxes[count].min!; + value = pinchRect.top + pinchRect.height - clipRect.top; + rangeMax = (value * -1 + clipRect.height) / axisTrans + + _zoomAxes[count].min!; + } + selectionMin = min(rangeMin, rangeMax); + selectionMax = max(rangeMin, rangeMax); + currentPosition = (selectionMin - _zoomAxes[count].actualMin!) / + _zoomAxes[count].actualDelta!; + currentFactor = + (selectionMax - selectionMin) / _zoomAxes[count].actualDelta!; + child.controller.zoomPosition = + currentPosition < 0 ? 0 : currentPosition; + currentZoomFactor = currentFactor > 1 ? 1 : currentFactor; + maxZoomFactor = maximumZoomLevel; + child.controller.zoomFactor = currentZoomFactor < maxZoomFactor + ? maxZoomFactor + : currentZoomFactor; + parent.hideInteractiveTooltip(); + } + if (parent.onZooming != null) { + _bindZoomEvent(child, parent.onZooming!); + } + } + count++; + }); + } + + void _pan(Offset currentPosition, Rect plotAreaBound) { + final RenderBehaviorArea? parent = parentBox as RenderBehaviorArea?; + if (parent == null) { + return; + } + final RenderCartesianAxes? axes = parent.cartesianAxes; + if (axes == null) { + return; + } + double currentZoomPosition; + num currentScale, value; + if (_previousMovedPosition != null) { + axes.visitChildren((RenderObject child) { + if (child is RenderChartAxis) { + child.zoomingInProgress = true; + if ((child.isVertical && zoomMode != ZoomMode.x) || + (!child.isVertical && zoomMode != ZoomMode.y)) { + currentZoomPosition = child.controller.zoomPosition; + currentScale = + max(1 / _minMax(child.controller.zoomFactor, 0, 1), 1); + if (child.isVertical) { + value = (_previousMovedPosition!.dy - currentPosition.dy) / + plotAreaBound.height / + currentScale; + currentZoomPosition = _minMax( + child.isInversed + ? child.controller.zoomPosition + value + : child.controller.zoomPosition - value, + 0, + 1 - child.controller.zoomFactor); + if (currentZoomPosition != child.controller.zoomPosition) { + child.controller.zoomPosition = currentZoomPosition; + parent.hideInteractiveTooltip(); + } + } else { + value = (_previousMovedPosition!.dx - currentPosition.dx) / + plotAreaBound.width / + currentScale; + currentZoomPosition = _minMax( + child.isInversed + ? child.controller.zoomPosition - value + : child.controller.zoomPosition + value, + 0, + 1 - child.controller.zoomFactor); + if (currentZoomPosition != child.controller.zoomPosition) { + child.controller.zoomPosition = currentZoomPosition; + parent.hideInteractiveTooltip(); + } + } + } + if (parent.onZooming != null) { + _bindZoomEvent(child, parent.onZooming!); + } + } + }); + } + _previousMovedPosition = currentPosition; + } + + void _doubleTap(Offset position, Rect plotAreaBounds) { + final RenderBehaviorArea? parent = parentBox as RenderBehaviorArea?; + if (parent == null) { + return; + } + final RenderCartesianAxes? axes = parent.cartesianAxes; + if (axes == null) { + return; + } + axes.visitChildren((RenderObject child) { + if (child is RenderChartAxis) { + child.zoomingInProgress = true; + if (parent.onZoomStart != null) { + _bindZoomEvent(child, parent.onZoomStart!); + } + if ((child.isVertical && zoomMode != ZoomMode.x) || + (!child.isVertical && zoomMode != ZoomMode.y)) { + double zoomFactor = child.controller.zoomFactor; + final double cumulative = max( + max(1 / _minMax(child.controller.zoomFactor, 0, 1), 1) + (0.25), + 1); + if (cumulative >= 1) { + double origin = child.isVertical + ? 1 - (position.dy / plotAreaBounds.height) + : position.dx / plotAreaBounds.width; + origin = origin > 1 + ? 1 + : origin < 0 + ? 0 + : origin; + zoomFactor = cumulative == 1 ? 1 : _minMax(1 / cumulative, 0, 1); + final double zoomPosition = (cumulative == 1) + ? 0 + : child.controller.zoomPosition + + ((child.controller.zoomFactor - zoomFactor) * origin); + if (child.controller.zoomPosition != zoomPosition || + child.controller.zoomFactor != zoomFactor) { + zoomFactor = (zoomPosition + zoomFactor) > 1 + ? (1 - zoomPosition) + : zoomFactor; + } + + child.controller.zoomPosition = zoomPosition; + child.controller.zoomFactor = zoomFactor; + parent.hideInteractiveTooltip(); + } + final double maxZoomFactor = maximumZoomLevel; + if (zoomFactor < maxZoomFactor) { + child.controller.zoomFactor = maxZoomFactor; + child.controller.zoomPosition = 0.0; + zoomFactor = maxZoomFactor; + } + } + if (parent.onZoomEnd != null) { + _bindZoomEvent(child, parent.onZoomEnd!); + } + } + }); + } + + /// Below method is for mouse wheel Zooming. + void _performMouseWheelZooming( + PointerEvent event, double mouseX, double mouseY, Rect plotAreaBounds) { + final RenderBehaviorArea? parent = parentBox as RenderBehaviorArea?; + if (parent == null) { + return; + } + final RenderCartesianAxes? axes = parent.cartesianAxes; + if (axes == null) { + return; + } + double direction = 0.0; + if (event is PointerScrollEvent) { + direction = (event.scrollDelta.dy / 120) > 0 ? -1 : 1; + } else if (event is PointerPanZoomUpdateEvent) { + direction = event.panDelta.dy == 0 + ? 0 + : (event.panDelta.dy / 120) > 0 + ? 1 + : -1; + } + double origin = 0.5; + double cumulative, zoomFactor, zoomPosition, maxZoomFactor; + axes.visitChildren((RenderObject child) { + if (child is RenderChartAxis) { + child.zoomingInProgress = true; + if (parent.onZoomStart != null) { + _bindZoomEvent(child, parent.onZoomStart!); + } + if ((child.isVertical && zoomMode != ZoomMode.x) || + (!child.isVertical && zoomMode != ZoomMode.y)) { + cumulative = max( + max(1 / _minMax(child.controller.zoomFactor, 0, 1), 1) + + (0.25 * direction), + 1); + if (cumulative >= 1) { + origin = child.isVertical + ? 1 - (mouseY / plotAreaBounds.height) + : mouseX / plotAreaBounds.width; + origin = origin > 1 + ? 1 + : origin < 0 + ? 0 + : origin; + zoomFactor = ((cumulative == 1) ? 1 : _minMax(1 / cumulative, 0, 1)) + .toDouble(); + zoomPosition = (cumulative == 1) + ? 0 + : child.controller.zoomPosition + + ((child.controller.zoomFactor - zoomFactor) * origin); + if (child.controller.zoomPosition != zoomPosition || + child.controller.zoomFactor != zoomFactor) { + zoomFactor = (zoomPosition + zoomFactor) > 1 + ? (1 - zoomPosition) + : zoomFactor; + } + child.controller.zoomPosition = zoomPosition < 0 + ? 0 + : zoomPosition > 1 + ? 1 + : zoomPosition; + child.controller.zoomFactor = zoomFactor < 0 + ? 0 + : zoomFactor > 1 + ? 1 + : zoomFactor; + maxZoomFactor = maximumZoomLevel; + if (zoomFactor < maxZoomFactor) { + child.controller.zoomFactor = maxZoomFactor; + zoomFactor = maxZoomFactor; + } + parent.hideInteractiveTooltip(); + if (parent.onZoomEnd != null) { + _bindZoomEvent(child, parent.onZoomEnd!); + } + if (child.controller.zoomFactor.toInt() == 1 && + child.controller.zoomPosition.toInt() == 0 && + parent.onZoomReset != null) { + _bindZoomEvent(child, parent.onZoomReset!); + } + } + } + } + }); + } + + /// Below method for drawing selection rectangle. + void _doSelectionZooming(double currentX, double currentY) { + final RenderBehaviorArea? parent = parentBox as RenderBehaviorArea?; + if (parent == null) { + return; + } + if (_isPinching != true && _zoomStartPosition != null) { + final Offset start = _zoomStartPosition!; + final Rect clipRect = parent.paintBounds; + final Offset startPosition = Offset( + (start.dx < clipRect.left) ? clipRect.left : start.dx, + (start.dy < clipRect.top) ? clipRect.top : start.dy); + final Offset currentMousePosition = Offset( + (currentX > clipRect.right) + ? clipRect.right + : ((currentX < clipRect.left) ? clipRect.left : currentX), + (currentY > clipRect.bottom) + ? clipRect.bottom + : ((currentY < clipRect.top) ? clipRect.top : currentY)); + _rectPath = Path(); + if (zoomMode == ZoomMode.x) { + _rectPath!.moveTo(startPosition.dx, clipRect.top); + _rectPath!.lineTo(startPosition.dx, clipRect.bottom); + _rectPath!.lineTo(currentMousePosition.dx, clipRect.bottom); + _rectPath!.lineTo(currentMousePosition.dx, clipRect.top); + _rectPath!.close(); + } else if (zoomMode == ZoomMode.y) { + _rectPath!.moveTo(clipRect.left, startPosition.dy); + _rectPath!.lineTo(clipRect.left, currentMousePosition.dy); + _rectPath!.lineTo(clipRect.right, currentMousePosition.dy); + _rectPath!.lineTo(clipRect.right, startPosition.dy); + _rectPath!.close(); + } else { + _rectPath!.moveTo(startPosition.dx, startPosition.dy); + _rectPath!.lineTo(startPosition.dx, currentMousePosition.dy); + _rectPath!.lineTo(currentMousePosition.dx, currentMousePosition.dy); + _rectPath!.lineTo(currentMousePosition.dx, startPosition.dy); + _rectPath!.close(); + } + _zoomingRect = _rectPath!.getBounds(); + } + } + + /// Increases the magnification of the plot area. + void zoomIn() { + final RenderBehaviorArea? parent = parentBox as RenderBehaviorArea?; + if (parent == null) { + return; + } + + parent.hideInteractiveTooltip(); + final RenderCartesianAxes? cartesianAxes = parent.cartesianAxes; + if (cartesianAxes == null) { + return; + } + _isZoomIn = true; + _isZoomOut = false; + // TODO(YuvarajG): Need to have variable to notify zooming inprogress + // _stateProperties.zoomProgress = true; + bool? needZoom; + RenderChartAxis? child = cartesianAxes.firstChild; + while (child != null) { + if ((child.isVertical && zoomMode != ZoomMode.x) || + (!child.isVertical && zoomMode != ZoomMode.y)) { + if (child.controller.zoomFactor <= 1.0 && + child.controller.zoomFactor > 0.0) { + if (child.controller.zoomFactor - 0.1 < 0) { + needZoom = false; + break; + } else { + _updateZoomFactorAndZoomPosition(child); + needZoom = true; + } + } + if (parent.onZooming != null) { + _bindZoomEvent(child, parent.onZooming!); + } + } + final CartesianAxesParentData childParentData = + child.parentData! as CartesianAxesParentData; + child = childParentData.nextSibling; + } + if (needZoom ?? false) { + (parentBox as RenderBehaviorArea?)?.invalidate(); + } + } + + /// Decreases the magnification of the plot area. + void zoomOut() { + final RenderBehaviorArea? parent = parentBox as RenderBehaviorArea?; + if (parent == null) { + return; + } + + parent.hideInteractiveTooltip(); + final RenderCartesianAxes? cartesianAxes = parent.cartesianAxes; + if (cartesianAxes == null) { + return; + } + _isZoomIn = false; + _isZoomOut = true; + // TODO(YuvarajG): Need to have variable to notify zooming inprogress + // _stateProperties.zoomProgress = true; + RenderChartAxis? child = cartesianAxes.firstChild; + while (child != null) { + if ((child.isVertical && zoomMode != ZoomMode.x) || + (!child.isVertical && zoomMode != ZoomMode.y)) { + if (child.controller.zoomFactor < 1.0 && + child.controller.zoomFactor > 0.0) { + _updateZoomFactorAndZoomPosition(child); + child.controller.zoomFactor = child.controller.zoomFactor > 1.0 + ? 1.0 + : (child.controller.zoomFactor < 0.0 + ? 0.0 + : child.controller.zoomFactor); + } + if (parent.onZooming != null) { + _bindZoomEvent(child, parent.onZooming!); + } + } + final CartesianAxesParentData childParentData = + child.parentData! as CartesianAxesParentData; + child = childParentData.nextSibling; + } + (parentBox as RenderBehaviorArea?)?.invalidate(); + } + + /// Changes the zoom level using zoom factor. + /// + /// Here, you can pass the zoom factor of an axis to magnify the plot + /// area. The value ranges from 0 to 1. + void zoomByFactor(double zoomFactor) { + final RenderBehaviorArea? parent = parentBox as RenderBehaviorArea?; + if (parent == null) { + return; + } + + parent.hideInteractiveTooltip(); + final RenderCartesianAxes? cartesianAxes = parent.cartesianAxes; + if (cartesianAxes == null) { + return; + } + _isZoomIn = false; + _isZoomOut = true; + // TODO(YuvarajG): Need to have variable to notify zooming inprogress + // _stateProperties.zoomProgress = true; + RenderChartAxis? child = cartesianAxes.firstChild; + if (zoomFactor.clamp(0.0, 1.0) == zoomFactor) { + while (child != null) { + if ((child.isVertical && zoomMode != ZoomMode.x) || + (!child.isVertical && zoomMode != ZoomMode.y)) { + child.controller.zoomFactor = zoomFactor; + if (parent.onZooming != null) { + _bindZoomEvent(child, parent.onZooming!); + } + } + final CartesianAxesParentData childParentData = + child.parentData! as CartesianAxesParentData; + child = childParentData.nextSibling; + } + (parentBox as RenderBehaviorArea?)?.invalidate(); + } + } + + /// Zooms the chart for a given rectangle value. + /// + /// Here, you can pass the rectangle with the left, right, top, and bottom + /// values, using which the selection zooming will be performed. + void zoomByRect(Rect rect) { + _drawSelectionZoomRect(rect); + } + + /// Change the zoom level of an appropriate axis. + /// + /// Here, you need to pass axis, zoom factor, zoom position of the zoom level + /// that needs to be modified. + void zoomToSingleAxis( + ChartAxis axis, double zoomPosition, double zoomFactor) { + final RenderBehaviorArea? parent = parentBox as RenderBehaviorArea?; + if (parent == null) { + return; + } + + parent.hideInteractiveTooltip(); + final RenderChartAxis? axisDetails = axis.name != null + ? parent.axisFromName(axis.name) + : parent.axisFromObject(axis); + + if (axisDetails != null) { + axisDetails.controller.zoomFactor = zoomFactor; + axisDetails.controller.zoomPosition = zoomPosition; + } + parent.invalidate(); + } + + /// Pans the plot area for given left, right, top, and bottom directions. + /// + /// To perform this action, the plot area needs to be in zoomed state. + void panToDirection(String direction) { + final RenderBehaviorArea? parent = parentBox as RenderBehaviorArea?; + if (parent == null) { + return; + } + + parent.hideInteractiveTooltip(); + final RenderCartesianAxes? cartesianAxes = parent.cartesianAxes; + if (cartesianAxes == null) { + return; + } + direction = direction.toLowerCase(); + RenderChartAxis? child = cartesianAxes.firstChild; + while (child != null) { + if (child.isVertical) { + if (direction == 'bottom') { + child.controller.zoomPosition = (child.controller.zoomPosition > 0 && + child.controller.zoomPosition <= 1.0) + ? child.controller.zoomPosition - 0.1 + : child.controller.zoomPosition; + child.controller.zoomPosition = child.controller.zoomPosition < 0.0 + ? 0.0 + : child.controller.zoomPosition; + } + if (direction == 'top') { + child.controller.zoomPosition = (child.controller.zoomPosition >= 0 && + child.controller.zoomPosition < 1) + ? child.controller.zoomPosition + 0.1 + : child.controller.zoomPosition; + child.controller.zoomPosition = child.controller.zoomPosition > 1.0 + ? 1.0 + : child.controller.zoomPosition; + } + } else { + if (direction == 'left') { + child.controller.zoomPosition = (child.controller.zoomPosition > 0 && + child.controller.zoomPosition <= 1.0) + ? child.controller.zoomPosition - 0.1 + : child.controller.zoomPosition; + child.controller.zoomPosition = child.controller.zoomPosition < 0.0 + ? 0.0 + : child.controller.zoomPosition; + } + if (direction == 'right') { + child.controller.zoomPosition = (child.controller.zoomPosition >= 0 && + child.controller.zoomPosition < 1) + ? child.controller.zoomPosition + 0.1 + : child.controller.zoomPosition; + child.controller.zoomPosition = child.controller.zoomPosition > 1.0 + ? 1.0 + : child.controller.zoomPosition; + } + } + if (parent.onZooming != null) { + _bindZoomEvent(child, parent.onZooming!); + } + final CartesianAxesParentData childParentData = + child.parentData! as CartesianAxesParentData; + child = childParentData.nextSibling; + } + parent.invalidate(); + } + + /// Returns the plot area back to its original position after zooming. + void reset() { + final RenderBehaviorArea? parent = parentBox as RenderBehaviorArea?; + if (parent == null) { + return; + } + + parent.hideInteractiveTooltip(); + final RenderCartesianAxes? cartesianAxes = parent.cartesianAxes; + if (cartesianAxes == null) { + return; + } + RenderChartAxis? child = cartesianAxes.firstChild; + while (child != null) { + child.controller.zoomFactor = 1.0; + child.controller.zoomPosition = 0.0; + if (parent.onZoomReset != null) { + _bindZoomEvent(child, parent.onZoomReset!); + } + final CartesianAxesParentData childParentData = + child.parentData! as CartesianAxesParentData; + child = childParentData.nextSibling; + } + parent.invalidate(); + } + + ZoomPanArgs _bindZoomEvent( + RenderChartAxis axis, ChartZoomingCallback zoomEventType) { + final RenderBehaviorArea? parent = parentBox as RenderBehaviorArea?; + final ZoomPanArgs zoomPanArgs = ZoomPanArgs( + axis, + axis.controller.previousZoomPosition, + axis.controller.previousZoomFactor); + zoomPanArgs.currentZoomFactor = axis.controller.zoomFactor; + zoomPanArgs.currentZoomPosition = axis.controller.zoomPosition; + if (parent == null) { + return zoomPanArgs; + } + zoomEventType == parent.onZoomStart + ? parent.onZoomStart!(zoomPanArgs) + : zoomEventType == parent.onZoomEnd + ? parent.onZoomEnd!(zoomPanArgs) + : zoomEventType == parent.onZooming + ? parent.onZooming!(zoomPanArgs) + : parent.onZoomReset!(zoomPanArgs); + return zoomPanArgs; + } + + /// Below method for zooming selected portion. + void _drawSelectionZoomRect(Rect zoomRect) { + final RenderBehaviorArea? parent = parentBox as RenderBehaviorArea?; + if (parent == null) { + return; + } + + parent.hideInteractiveTooltip(); + final RenderCartesianAxes? axes = parent.cartesianAxes; + if (axes == null) { + return; + } + axes.visitChildren((RenderObject child) { + if (child is RenderChartAxis) { + child.zoomingInProgress = true; + if (parent.onZoomStart != null) { + _bindZoomEvent(child, parent.onZoomStart!); + } + if (child.isVertical) { + if (zoomMode != ZoomMode.x) { + child.controller.zoomPosition += (1 - + ((zoomRect.height + + (zoomRect.top - child.paintBounds.top)) / + (child.paintBounds.height)) + .abs()) * + child.controller.zoomFactor; + child.controller.zoomFactor *= + zoomRect.height / child.paintBounds.height; + + child.controller.zoomFactor = + child.controller.zoomFactor >= maximumZoomLevel + ? child.controller.zoomFactor + : maximumZoomLevel; + } + } else { + if (zoomMode != ZoomMode.y) { + child.controller.zoomPosition += + ((zoomRect.left - child.paintBounds.left) / + (child.paintBounds.width)) + .abs() * + child.controller.zoomFactor; + child.controller.zoomFactor *= + zoomRect.width / child.paintBounds.width; + child.controller.zoomFactor = + child.controller.zoomFactor >= maximumZoomLevel + ? child.controller.zoomFactor + : maximumZoomLevel; + } + } + if (parent.onZoomEnd != null) { + _bindZoomEvent(child, parent.onZoomEnd!); + } + } + }); + zoomRect = Rect.zero; + _rectPath = Path(); + } + + double _minMax(double value, double min, double max) { + return value > max ? max : (value < min ? min : value); + } + + @override + void onPaint(PaintingContext context, Offset offset, + SfChartThemeData chartThemeData, ThemeData themeData) { + final RenderBehaviorArea? parent = parentBox as RenderBehaviorArea?; + if (parent == null) { + return; + } + final RenderCartesianAxes? cartesianAxes = parent.cartesianAxes; + if (cartesianAxes == null) { + return; + } + if (_zoomingRect != Rect.zero && _rectPath != null) { + Color? fillColor = selectionRectColor; + if (fillColor != null && + fillColor != Colors.transparent && + fillColor.opacity == 1) { + fillColor = fillColor.withOpacity(0.3); + } + final Paint fillPaint = Paint() + ..color = + (fillColor ?? cartesianAxes.chartThemeData.selectionRectColor)! + ..style = PaintingStyle.fill; + context.canvas.drawRect(_zoomingRect, fillPaint); + final Paint strokePaint = Paint() + ..isAntiAlias = true + ..color = (selectionRectBorderColor ?? + cartesianAxes.chartThemeData.selectionRectBorderColor)! + ..strokeWidth = selectionRectBorderWidth + ..style = PaintingStyle.stroke; + + if (strokePaint.color != Colors.transparent && + strokePaint.strokeWidth > 0) { + final List dashArray = [5, 5]; + drawDashes(context.canvas, dashArray, strokePaint, path: _rectPath); + } + + final Offset plotAreaOffset = + (parent.parentData! as BoxParentData).offset; + //Selection zooming tooltip rendering + _drawTooltipConnector( + cartesianAxes, + _zoomingRect.topLeft, + _zoomingRect.bottomRight, + context.canvas, + parent.paintBounds, + plotAreaOffset); + } + } + + void _calculateZoomAxesRange(RenderCartesianAxes axes) { + _ZoomAxisRange range; + axes.visitChildren((RenderObject child) { + range = _ZoomAxisRange(); + if (child is RenderChartAxis) { + if (child.actualRange != null) { + range.actualMin = child.actualRange!.minimum.toDouble(); + range.actualDelta = child.actualRange!.delta.toDouble(); + } + range.min = child.visibleRange!.minimum.toDouble(); + range.delta = child.visibleRange!.delta.toDouble(); + _zoomAxes.add(range); + } + }); + } + + /// Returns the tooltip label on zooming. + String _tooltipValue( + Offset position, RenderChartAxis axis, Rect plotAreaBounds) { + final num value = axis.isVertical + ? axis.pixelToPoint(axis.paintBounds, position.dx, position.dy) + : axis.pixelToPoint(axis.paintBounds, position.dx - plotAreaBounds.left, + position.dy - plotAreaBounds.top); + + dynamic result = _interactiveTooltipLabel(value, axis); + if (axis.interactiveTooltip.format != null) { + final String stringValue = + axis.interactiveTooltip.format!.replaceAll('{value}', result); + result = stringValue; + } + return result.toString(); + } + + /// Validate the rect by comparing small and large rect. + Rect _validateRect(Rect largeRect, Rect smallRect, String axisPosition) => + Rect.fromLTRB( + axisPosition == 'left' + ? (smallRect.left - (largeRect.width - smallRect.width)) + : smallRect.left, + smallRect.top, + axisPosition == 'right' + ? (smallRect.right + (largeRect.width - smallRect.width)) + : smallRect.right, + smallRect.bottom); + + /// Calculate the interactive tooltip rect, based on the zoomed axis position. + Rect _calculateRect(RenderChartAxis axis, Offset position, Size labelSize) { + const double paddingForRect = 10; + final Rect axisBound = + (axis.parentData! as BoxParentData).offset & axis.size; + final double arrowLength = axis.interactiveTooltip.arrowLength; + double left, top; + final double width = labelSize.width + paddingForRect; + final double height = labelSize.height + paddingForRect; + + if (axis.isVertical) { + top = position.dy - height / 2; + if (axis.opposedPosition) { + left = axisBound.left + arrowLength; + } else { + left = axisBound.left - width - arrowLength; + } + } else { + left = position.dx - width / 2; + if (axis.opposedPosition) { + top = axisBound.top - height - arrowLength; + } else { + top = axisBound.top + arrowLength; + } + } + return Rect.fromLTWH(left, top, width, height); + } + + /// To draw tooltip connector. + void _drawTooltipConnector( + RenderCartesianAxes axes, + Offset startPosition, + Offset endPosition, + Canvas canvas, + Rect plotAreaBounds, + Offset plotAreaOffset) { + final RenderBehaviorArea? parent = parentBox as RenderBehaviorArea?; + RRect? startTooltipRect, endTooltipRect; + String startValue, endValue; + Size startLabelSize, endLabelSize; + Rect startLabelRect, endLabelRect; + TextStyle textStyle = + parent!.chartThemeData!.selectionZoomingTooltipTextStyle!; + final Paint labelFillPaint = Paint() + ..color = axes.chartThemeData.crosshairBackgroundColor! + ..isAntiAlias = true; + + final Paint labelStrokePaint = Paint() + ..color = axes.chartThemeData.crosshairBackgroundColor! + ..isAntiAlias = true + ..style = PaintingStyle.stroke; + + axes.visitChildren((RenderObject child) { + if (child is RenderChartAxis) { + if (child.interactiveTooltip.enable) { + textStyle = textStyle.merge(child.interactiveTooltip.textStyle); + labelFillPaint.color = (child.interactiveTooltip.color ?? + axes.chartThemeData.crosshairBackgroundColor)!; + labelStrokePaint.color = (child.interactiveTooltip.borderColor ?? + axes.chartThemeData.crosshairBackgroundColor)!; + labelStrokePaint.strokeWidth = child.interactiveTooltip.borderWidth; + final Paint connectorLinePaint = Paint() + ..color = (child.interactiveTooltip.connectorLineColor ?? + axes.chartThemeData.selectionTooltipConnectorLineColor)! + ..strokeWidth = child.interactiveTooltip.connectorLineWidth + ..style = PaintingStyle.stroke; + + final Path startLabelPath = Path(); + final Path endLabelPath = Path(); + startValue = _tooltipValue(startPosition, child, plotAreaBounds); + endValue = _tooltipValue(endPosition, child, plotAreaBounds); + + if (startValue.isNotEmpty && endValue.isNotEmpty) { + startLabelSize = measureText(startValue, textStyle); + endLabelSize = measureText(endValue, textStyle); + startLabelRect = + _calculateRect(child, startPosition, startLabelSize); + endLabelRect = _calculateRect(child, endPosition, endLabelSize); + if (child.isVertical && + startLabelRect.width != endLabelRect.width) { + final String axisPosition = + child.opposedPosition ? 'right' : 'left'; + (startLabelRect.width > endLabelRect.width) + ? endLabelRect = + _validateRect(startLabelRect, endLabelRect, axisPosition) + : startLabelRect = + _validateRect(endLabelRect, startLabelRect, axisPosition); + } + startTooltipRect = _drawTooltip( + canvas, + labelFillPaint, + labelStrokePaint, + startLabelPath, + startPosition, + startLabelRect, + startTooltipRect, + startValue, + startLabelSize, + plotAreaBounds, + textStyle, + child, + plotAreaOffset); + endTooltipRect = _drawTooltip( + canvas, + labelFillPaint, + labelStrokePaint, + endLabelPath, + endPosition, + endLabelRect, + endTooltipRect, + endValue, + endLabelSize, + plotAreaBounds, + textStyle, + child, + plotAreaOffset); + _drawConnector(canvas, connectorLinePaint, startTooltipRect!, + endTooltipRect!, startPosition, endPosition, child); + } + } + } + }); + } + + /// To draw connectors. + void _drawConnector( + Canvas canvas, + Paint connectorLinePaint, + RRect startTooltipRect, + RRect endTooltipRect, + Offset startPosition, + Offset endPosition, + RenderChartAxis axis) { + final InteractiveTooltip tooltip = axis.interactiveTooltip; + if (!axis.isVertical && !axis.opposedPosition) { + startPosition = + Offset(startPosition.dx, startTooltipRect.top - tooltip.arrowLength); + endPosition = + Offset(endPosition.dx, endTooltipRect.top - tooltip.arrowLength); + } else if (!axis.isVertical && axis.opposedPosition) { + startPosition = Offset( + startPosition.dx, startTooltipRect.bottom + tooltip.arrowLength); + endPosition = + Offset(endPosition.dx, endTooltipRect.bottom + tooltip.arrowLength); + } else if (axis.isVertical && !axis.opposedPosition) { + startPosition = Offset( + startTooltipRect.right + tooltip.arrowLength, startPosition.dy); + endPosition = + Offset(endTooltipRect.right + tooltip.arrowLength, endPosition.dy); + } else { + startPosition = + Offset(startTooltipRect.left - tooltip.arrowLength, startPosition.dy); + endPosition = + Offset(endTooltipRect.left - tooltip.arrowLength, endPosition.dy); + } + drawDashedPath(canvas, connectorLinePaint, startPosition, endPosition, + tooltip.connectorLineDashArray); + } + + /// To draw tooltip. + RRect _drawTooltip( + Canvas canvas, + Paint fillPaint, + Paint strokePaint, + Path path, + Offset position, + Rect labelRect, + RRect? rect, + String value, + Size labelSize, + Rect plotAreaBound, + TextStyle textStyle, + RenderChartAxis axis, + Offset plotAreaOffset) { + final Offset parentDataOffset = (axis.parentData! as BoxParentData).offset; + final Offset axisOffset = + parentDataOffset.translate(-plotAreaOffset.dx, -plotAreaOffset.dy); + final Rect axisRect = axisOffset & axis.size; + labelRect = _validateRectBounds(labelRect, axisRect); + labelRect = axis.isVertical + ? _validateRectYPosition(labelRect, plotAreaBound) + : _validateRectXPosition(labelRect, plotAreaBound); + path.reset(); + rect = RRect.fromRectAndRadius( + labelRect, Radius.circular(axis.interactiveTooltip.borderRadius)); + path.addRRect(rect); + _calculateNeckPositions( + canvas, fillPaint, strokePaint, path, position, rect, axis); + drawText( + canvas, + value, + Offset((rect.left + rect.width / 2) - labelSize.width / 2, + (rect.top + rect.height / 2) - labelSize.height / 2), + textStyle, + ); + return rect; + } + + /// To calculate tooltip neck positions. + void _calculateNeckPositions( + Canvas canvas, + Paint fillPaint, + Paint strokePaint, + Path path, + Offset position, + RRect rect, + RenderChartAxis axis) { + final InteractiveTooltip tooltip = axis.interactiveTooltip; + double x1, x2, x3, x4, y1, y2, y3, y4; + if (!axis.isVertical && !axis.opposedPosition) { + x1 = position.dx; + y1 = rect.top - tooltip.arrowLength; + x2 = (rect.right - rect.width / 2) + tooltip.arrowWidth; + y2 = rect.top; + x3 = (rect.left + rect.width / 2) - tooltip.arrowWidth; + y3 = rect.top; + x4 = position.dx; + y4 = rect.top - tooltip.arrowLength; + } else if (!axis.isVertical && axis.opposedPosition) { + x1 = position.dx; + y1 = rect.bottom + tooltip.arrowLength; + x2 = (rect.right - rect.width / 2) + tooltip.arrowWidth; + y2 = rect.bottom; + x3 = (rect.left + rect.width / 2) - tooltip.arrowWidth; + y3 = rect.bottom; + x4 = position.dx; + y4 = rect.bottom + tooltip.arrowLength; + } else if (axis.isVertical && !axis.opposedPosition) { + x1 = rect.right; + y1 = rect.top + rect.height / 2 - tooltip.arrowWidth; + x2 = rect.right; + y2 = rect.bottom - rect.height / 2 + tooltip.arrowWidth; + x3 = rect.right + tooltip.arrowLength; + y3 = position.dy; + x4 = rect.right + tooltip.arrowLength; + y4 = position.dy; + } else { + x1 = rect.left; + y1 = rect.top + rect.height / 2 - tooltip.arrowWidth; + x2 = rect.left; + y2 = rect.bottom - rect.height / 2 + tooltip.arrowWidth; + x3 = rect.left - tooltip.arrowLength; + y3 = position.dy; + x4 = rect.left - tooltip.arrowLength; + y4 = position.dy; + } + _drawTooltipArrowhead( + canvas, path, fillPaint, strokePaint, x1, y1, x2, y2, x3, y3, x4, y4); + } + + /// Below method is for zoomIn and zoomOut public methods. + void _updateZoomFactorAndZoomPosition(RenderChartAxis axis) { + final Rect axisClipRect = axis.paintBounds; + double? zoomFactor, zoomPosition; + final num direction = _isZoomIn + ? 1 + : _isZoomOut + ? -1 + : 1; + final num cumulative = max( + max(1 / _minMax(axis.controller.zoomFactor, 0, 1), 1) + + (0.1 * direction), + 1); + if (cumulative >= 1) { + num origin = axis.isVertical + ? 1 - + ((axisClipRect.top + axisClipRect.height / 2) / + axisClipRect.height) + : (axisClipRect.left + axisClipRect.width / 2) / axisClipRect.width; + origin = origin > 1 + ? 1 + : origin < 0 + ? 0 + : origin; + zoomFactor = + ((cumulative == 1) ? 1 : _minMax(1 / cumulative, 0, 1)).toDouble(); + zoomPosition = (cumulative == 1) + ? 0 + : axis.controller.zoomPosition + + ((axis.controller.zoomFactor - zoomFactor) * origin); + if (axis.controller.zoomPosition != zoomPosition || + axis.controller.zoomFactor != zoomFactor) { + zoomFactor = + (zoomPosition + zoomFactor) > 1 ? (1 - zoomPosition) : zoomFactor; + } + + axis.controller.zoomPosition = zoomPosition; + axis.controller.zoomFactor = zoomFactor; + } + } + + void _startPinchZooming(PointerEvent event) { + if (_touchStartPositions.length < 2) { + _touchStartPositions.add(event); + } + + if (_touchStartPositions.length == 2) { + final RenderBehaviorArea? parent = parentBox as RenderBehaviorArea?; + if (parent != null && + parent.onZoomStart != null && + parent.cartesianAxes != null) { + parent.hideInteractiveTooltip(); + final RenderCartesianAxes axes = parent.cartesianAxes!; + + axes.visitChildren((RenderObject child) { + if (child is RenderChartAxis) { + _bindZoomEvent(child, parent.onZoomStart!); + } + }); + } + } + } + + // ignore: unused_element + void _endPinchZooming(PointerUpEvent event) { + if (_touchStartPositions.length == 2 && _touchMovePositions.length == 2) { + final RenderBehaviorArea? parent = parentBox as RenderBehaviorArea?; + if (parent != null && parent.cartesianAxes != null) { + final RenderCartesianAxes axes = parent.cartesianAxes!; + + axes.visitChildren((RenderObject child) { + if (child is RenderChartAxis) { + if (parent.onZoomEnd != null) { + _bindZoomEvent(child, parent.onZoomEnd!); + } + } + }); + } + } + + _zoomAxes = <_ZoomAxisRange>[]; + _touchMovePositions = []; + _touchStartPositions = []; + _isPinching = false; + } + + void _startPanning() { + _previousMovedPosition = null; + } + + void _endPanning() { + _previousMovedPosition = null; + } + + void _longPressStart(Offset position) { + if (_zoomStartPosition != position) { + _zoomStartPosition = position; + } + } + + void _longPressEnd() { + if (_zoomStartPosition != null && _zoomingRect.width != 0) { + _drawSelectionZoomRect(_zoomingRect); + } + _zoomStartPosition = null; + _zoomingRect = Rect.zero; + } +} + +/// This method will validate whether the tooltip exceeds the screen or not. +Rect _validateRectBounds(Rect tooltipRect, Rect boundary) { + Rect validatedRect = tooltipRect; + double difference = 0; + + /// Padding between the corners. + const double padding = 0.5; + + // Move the tooltip if it's outside of the boundary. + if (tooltipRect.left < boundary.left) { + difference = (boundary.left - tooltipRect.left) + padding; + validatedRect = validatedRect.translate(difference, 0); + } + if (tooltipRect.right > boundary.right) { + difference = (tooltipRect.right - boundary.right) + padding; + validatedRect = validatedRect.translate(-difference, 0); + } + if (tooltipRect.top < boundary.top) { + difference = (boundary.top - tooltipRect.top) + padding; + validatedRect = validatedRect.translate(0, difference); + } + + if (tooltipRect.bottom > boundary.bottom) { + difference = (tooltipRect.bottom - boundary.bottom) + padding; + validatedRect = validatedRect.translate(0, -difference); + } + return validatedRect; +} + +/// Gets the x position of validated rect. +Rect _validateRectYPosition(Rect labelRect, Rect axisClipRect) { + Rect validatedRect = labelRect; + if (labelRect.bottom >= axisClipRect.bottom) { + validatedRect = Rect.fromLTRB( + labelRect.left, + labelRect.top - (labelRect.bottom - axisClipRect.bottom), + labelRect.right, + axisClipRect.bottom); + } else if (labelRect.top <= axisClipRect.top) { + validatedRect = Rect.fromLTRB(labelRect.left, axisClipRect.top, + labelRect.right, labelRect.bottom + (axisClipRect.top - labelRect.top)); + } + return validatedRect; +} + +/// Gets the x position of validated rect. +Rect _validateRectXPosition(Rect labelRect, Rect axisClipRect) { + Rect validatedRect = labelRect; + if (labelRect.right >= axisClipRect.right) { + validatedRect = Rect.fromLTRB( + labelRect.left - (labelRect.right - axisClipRect.right), + labelRect.top, + axisClipRect.right, + labelRect.bottom); + } else if (labelRect.left <= axisClipRect.left) { + validatedRect = Rect.fromLTRB( + axisClipRect.left, + labelRect.top, + labelRect.right + (axisClipRect.left - labelRect.left), + labelRect.bottom); + } + return validatedRect; +} + +/// Draw tooltip arrow head. +void _drawTooltipArrowhead( + Canvas canvas, + Path backgroundPath, + Paint fillPaint, + Paint strokePaint, + double x1, + double y1, + double x2, + double y2, + double x3, + double y3, + double x4, + double y4) { + backgroundPath.moveTo(x1, y1); + backgroundPath.lineTo(x2, y2); + backgroundPath.lineTo(x3, y3); + backgroundPath.lineTo(x4, y4); + backgroundPath.lineTo(x1, y1); + fillPaint.isAntiAlias = true; + canvas.drawPath(backgroundPath, strokePaint); + canvas.drawPath(backgroundPath, fillPaint); +} + +/// To get interactive tooltip label. +dynamic _interactiveTooltipLabel(dynamic value, RenderChartAxis axis) { + if (axis.visibleLabels.isEmpty) { + return ''; + } + + final int labelsLength = axis.visibleLabels.length; + if (axis is RenderCategoryAxis) { + value = value < 0 ? 0 : value; + value = axis.labels[(value.round() >= axis.labels.length + ? (value.round() > axis.labels.length + ? axis.labels.length - 1 + : value - 1) + : value.round()) + .round()]; + } else if (axis is RenderDateTimeCategoryAxis) { + value = value < 0 ? 0 : value; + value = axis.labels[(value.round() >= axis.labels.length + ? (value.round() > axis.labels.length + ? axis.labels.length - 1 + : value - 1) + : value.round()) + .round()]; + } else if (axis is RenderDateTimeAxis) { + final num interval = axis.visibleRange!.minimum.ceil(); + final num previousInterval = (axis.visibleLabels.isNotEmpty) + ? axis.visibleLabels[labelsLength - 1].value + : interval; + final DateFormat dateFormat = axis.dateFormat ?? + _dateTimeLabelFormat(axis, interval.toInt(), previousInterval.toInt()); + value = + dateFormat.format(DateTime.fromMillisecondsSinceEpoch(value.toInt())); + } else { + value = axis is RenderLogarithmicAxis ? pow(10, value) : value; + value = _labelValue(value, axis, axis.interactiveTooltip.decimalPlaces); + } + return value; +} + +/// To get the label format of the date-time axis. +DateFormat _dateTimeLabelFormat(RenderChartAxis axis, + [int? interval, int? prevInterval]) { + DateFormat? format; + final bool notDoubleInterval = + (axis.interval != null && axis.interval! % 1 == 0) || + axis.interval == null; + DateTimeIntervalType? actualIntervalType; + num? minimum; + if (axis is RenderDateTimeAxis) { + actualIntervalType = axis.visibleIntervalType; + minimum = axis.visibleRange!.minimum; + } else if (axis is RenderDateTimeCategoryAxis) { + minimum = axis.visibleRange!.minimum; + actualIntervalType = axis.visibleIntervalType; + } + switch (actualIntervalType) { + case DateTimeIntervalType.years: + format = notDoubleInterval ? DateFormat.y() : DateFormat.MMMd(); + break; + case DateTimeIntervalType.months: + format = (minimum == interval || interval == prevInterval) + ? _firstLabelFormat(actualIntervalType) + : _dateTimeFormat(actualIntervalType, interval, prevInterval); + + break; + case DateTimeIntervalType.days: + format = (minimum == interval || interval == prevInterval) + ? _firstLabelFormat(actualIntervalType) + : _dateTimeFormat(actualIntervalType, interval, prevInterval); + break; + case DateTimeIntervalType.hours: + format = DateFormat.j(); + break; + case DateTimeIntervalType.minutes: + format = DateFormat.Hm(); + break; + case DateTimeIntervalType.seconds: + format = DateFormat.ms(); + break; + case DateTimeIntervalType.milliseconds: + final DateFormat dateFormat = DateFormat('ss.SSS'); + format = dateFormat; + break; + case DateTimeIntervalType.auto: + break; + // ignore: no_default_cases + default: + break; + } + return format!; +} + +/// Gets the the actual label value for tooltip and data label etc. +String _labelValue(dynamic value, dynamic axis, [int? showDigits]) { + if (value.toString().split('.').length > 1) { + final String str = value.toString(); + final List list = str.split('.'); + value = double.parse(value.toStringAsFixed(showDigits ?? 3)); + value = (list[1] == '0' || + list[1] == '00' || + list[1] == '000' || + list[1] == '0000' || + list[1] == '00000' || + list[1] == '000000' || + list[1] == '0000000') + ? value.round() + : value; + } + final dynamic text = axis is NumericAxis && axis.numberFormat != null + ? axis.numberFormat!.format(value) + : value; + return ((axis.labelFormat != null && axis.labelFormat != '') + ? axis.labelFormat.replaceAll(RegExp('{value}'), text.toString()) + : text.toString()) as String; +} + +/// Calculate the dateTime format. +DateFormat? _dateTimeFormat(DateTimeIntervalType? actualIntervalType, + int? interval, int? prevInterval) { + final DateTime minimum = DateTime.fromMillisecondsSinceEpoch(interval!); + final DateTime maximum = DateTime.fromMillisecondsSinceEpoch(prevInterval!); + DateFormat? format; + final bool isIntervalDecimal = interval % 1 == 0; + if (actualIntervalType == DateTimeIntervalType.months) { + format = minimum.year == maximum.year + ? (isIntervalDecimal ? DateFormat.MMM() : DateFormat.MMMd()) + : DateFormat('yyy MMM'); + } else if (actualIntervalType == DateTimeIntervalType.days) { + format = minimum.month != maximum.month + ? (isIntervalDecimal ? DateFormat.MMMd() : DateFormat.MEd()) + : DateFormat.d(); + } + + return format; +} + +/// Returns the first label format for date time values. +DateFormat? _firstLabelFormat(DateTimeIntervalType? actualIntervalType) { + DateFormat? format; + + if (actualIntervalType == DateTimeIntervalType.months) { + format = DateFormat('yyy MMM'); + } else if (actualIntervalType == DateTimeIntervalType.days) { + format = DateFormat.MMMd(); + } else if (actualIntervalType == DateTimeIntervalType.minutes) { + format = DateFormat.Hm(); + } + + return format; +} + +/// Represents the zoom axis range class. +class _ZoomAxisRange { + /// Holds the value of actual minimum, actual delta, minimum and delta value. + double? actualMin, actualDelta, min, delta; +} diff --git a/packages/syncfusion_flutter_charts/lib/src/sparkline/theme.dart b/packages/syncfusion_flutter_charts/lib/src/sparkline/theme.dart new file mode 100644 index 000000000..075144e58 --- /dev/null +++ b/packages/syncfusion_flutter_charts/lib/src/sparkline/theme.dart @@ -0,0 +1,82 @@ +import 'package:flutter/material.dart'; +import 'package:syncfusion_flutter_core/theme.dart'; + +/// Holds the value of [SfSparkChartThemeData] color properties for +/// material 2 theme based on the brightness. +class SfSparkChartThemeDataM2 extends SfSparkChartThemeData { + /// Creating an argument constructor of SfChartThemeDataM2 class. + SfSparkChartThemeDataM2(this.context); + + /// Specifies the build context of the chart widgets. + final BuildContext context; + + /// Specifies the material app color scheme based on the brightness. + late final ColorScheme colorScheme = Theme.of(context).colorScheme; + + @override + Color? get color => Colors.blue; + + @override + Color? get axisLineColor => Colors.black; + + @override + Color? get markerFillColor => colorScheme.surface; + + @override + Color? get dataLabelBackgroundColor => colorScheme.surface; + + @override + Color? get tooltipColor => colorScheme.brightness == Brightness.light + ? const Color.fromRGBO(79, 79, 79, 1) + : const Color.fromRGBO(255, 255, 255, 1); + + @override + Color? get trackballLineColor => colorScheme.brightness == Brightness.light + ? const Color.fromRGBO(79, 79, 79, 1) + : const Color.fromRGBO(255, 255, 255, 1); + + @override + Color? get tooltipLabelColor => colorScheme.brightness == Brightness.light + ? const Color.fromRGBO(229, 229, 229, 1) + : const Color.fromRGBO(0, 0, 0, 1); +} + +/// Holds the value of [SfSparkChartThemeData] color properties for +/// material 3 theme based on the brightness. +class SfSparkChartThemeDataM3 extends SfSparkChartThemeData { + /// Creating an argument constructor of SfChartThemeDataM3 class. + SfSparkChartThemeDataM3(this.context); + + /// Specifies the build context of the chart widgets. + final BuildContext context; + + /// Specifies the material app color scheme based on the brightness. + late final ColorScheme colorScheme = Theme.of(context).colorScheme; + + @override + Color? get color => colorScheme.brightness == Brightness.light + ? const Color.fromRGBO(150, 60, 112, 1) + : const Color.fromRGBO(77, 170, 255, 1); + + @override + Color? get axisLineColor => colorScheme.brightness == Brightness.light + ? const Color.fromRGBO(73, 69, 79, 1) + : const Color.fromRGBO(202, 196, 208, 1); + + @override + Color? get markerFillColor => colorScheme.surface; + + @override + Color? get dataLabelBackgroundColor => colorScheme.surface; + + @override + Color? get tooltipColor => colorScheme.inverseSurface; + + @override + Color? get trackballLineColor => colorScheme.brightness == Brightness.light + ? const Color.fromRGBO(73, 69, 79, 1) + : const Color.fromRGBO(202, 196, 208, 1); + + @override + Color? get tooltipLabelColor => colorScheme.onInverseSurface; +} From 2a657c8ddaab78f7a584149f0f1b298ebb1d38a6 Mon Sep 17 00:00:00 2001 From: LokeshPalani Date: Mon, 25 Mar 2024 23:31:59 +0530 Subject: [PATCH 2/6] Added the missed files in the pdfviewer --- .../CHANGELOG.md | 3 + .../LICENSE | 12 +++ .../README.md | 15 ++++ .../analysis_options.yaml | 8 ++ .../example/README.md | 16 ++++ .../example/analysis_options.yaml | 29 +++++++ .../example/pubspec.yaml | 83 +++++++++++++++++++ .../pubspec.yaml | 17 ++++ 8 files changed, 183 insertions(+) create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/CHANGELOG.md create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/LICENSE create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/README.md create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/analysis_options.yaml create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/README.md create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/analysis_options.yaml create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/pubspec.yaml create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/pubspec.yaml diff --git a/packages/syncfusion_flutter_pdfviewer_platform_interface/CHANGELOG.md b/packages/syncfusion_flutter_pdfviewer_platform_interface/CHANGELOG.md new file mode 100644 index 000000000..701f5bf63 --- /dev/null +++ b/packages/syncfusion_flutter_pdfviewer_platform_interface/CHANGELOG.md @@ -0,0 +1,3 @@ +## [19.1.54-beta] - 03/30/2021 + +* Initial release. diff --git a/packages/syncfusion_flutter_pdfviewer_platform_interface/LICENSE b/packages/syncfusion_flutter_pdfviewer_platform_interface/LICENSE new file mode 100644 index 000000000..f330d1667 --- /dev/null +++ b/packages/syncfusion_flutter_pdfviewer_platform_interface/LICENSE @@ -0,0 +1,12 @@ +Syncfusion License + +Syncfusion Flutter PDF Viewer package is available under the Syncfusion Essential Studio program, and can be licensed either under the Syncfusion Community License Program or the Syncfusion commercial license. + +To be qualified for the Syncfusion Community License Program you must have a gross revenue of less than one (1) million U.S. dollars ($1,000,000.00 USD) per year and have less than five (5) developers in your organization, and agree to be bound by Syncfusion’s terms and conditions. + +Customers who do not qualify for the community license can contact sales@syncfusion.com for commercial licensing options. + +Under no circumstances can you use this product without (1) either a Community License or a commercial license and (2) without agreeing and abiding by Syncfusion’s license containing all terms and conditions. + +The Syncfusion license that contains the terms and conditions can be found at +https://www.syncfusion.com/content/downloads/syncfusion_license.pdf \ No newline at end of file diff --git a/packages/syncfusion_flutter_pdfviewer_platform_interface/README.md b/packages/syncfusion_flutter_pdfviewer_platform_interface/README.md new file mode 100644 index 000000000..3fec19c37 --- /dev/null +++ b/packages/syncfusion_flutter_pdfviewer_platform_interface/README.md @@ -0,0 +1,15 @@ +# Flutter PDF Viewer Platform Interface library + +A common platform interface package for the [Syncfusion Flutter PDF Viewer](https://pub.dev/packages/syncfusion_flutter_pdfviewer) plugin. + +This interface allows platform-specific implementations of the `syncfusion_flutter_pdfviewer` +plugin, as well as the plugin itself, to ensure they are supporting the +same interface. + +# Usage + +To implement a new platform-specific implementation of `syncfusion_flutter_pdfviewer`, extend +`PdfViewerPlatform` with an implementation that performs the +platform-specific behavior, and when you register your plugin, set the default +`PdfViewerPlatform` by calling +`PdfViewerPlatform.instance = SyncfusionFlutterPdfViewerPlugin()`. \ No newline at end of file diff --git a/packages/syncfusion_flutter_pdfviewer_platform_interface/analysis_options.yaml b/packages/syncfusion_flutter_pdfviewer_platform_interface/analysis_options.yaml new file mode 100644 index 000000000..c3d5c4ffe --- /dev/null +++ b/packages/syncfusion_flutter_pdfviewer_platform_interface/analysis_options.yaml @@ -0,0 +1,8 @@ +include: package:syncfusion_flutter_core/analysis_options.yaml + +analyzer: + errors: + lines_longer_than_80_chars: ignore + include_file_not_found: ignore + uri_does_not_exist: ignore + invalid_dependency: ignore \ No newline at end of file diff --git a/packages/syncfusion_flutter_pdfviewer_platform_interface/example/README.md b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/README.md new file mode 100644 index 000000000..a13562602 --- /dev/null +++ b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/README.md @@ -0,0 +1,16 @@ +# example + +A new Flutter project. + +## Getting Started + +This project is a starting point for a Flutter application. + +A few resources to get you started if this is your first Flutter project: + +- [Lab: Write your first Flutter app](https://flutter.dev/docs/get-started/codelab) +- [Cookbook: Useful Flutter samples](https://flutter.dev/docs/cookbook) + +For help getting started with Flutter, view our +[online documentation](https://flutter.dev/docs), which offers tutorials, +samples, guidance on mobile development, and a full API reference. diff --git a/packages/syncfusion_flutter_pdfviewer_platform_interface/example/analysis_options.yaml b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/analysis_options.yaml new file mode 100644 index 000000000..61b6c4de1 --- /dev/null +++ b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/analysis_options.yaml @@ -0,0 +1,29 @@ +# This file configures the analyzer, which statically analyzes Dart code to +# check for errors, warnings, and lints. +# +# The issues identified by the analyzer are surfaced in the UI of Dart-enabled +# IDEs (https://dart.dev/tools#ides-and-editors). The analyzer can also be +# invoked from the command line by running `flutter analyze`. + +# The following line activates a set of recommended lints for Flutter apps, +# packages, and plugins designed to encourage good coding practices. +include: package:flutter_lints/flutter.yaml + +linter: + # The lint rules applied to this project can be customized in the + # section below to disable rules from the `package:flutter_lints/flutter.yaml` + # included above or to enable additional rules. A list of all available lints + # and their documentation is published at + # https://dart-lang.github.io/linter/lints/index.html. + # + # Instead of disabling a lint rule for the entire project in the + # section below, it can also be suppressed for a single line of code + # or a specific dart file by using the `// ignore: name_of_lint` and + # `// ignore_for_file: name_of_lint` syntax on the line or in the file + # producing the lint. + rules: + # avoid_print: false # Uncomment to disable the `avoid_print` rule + # prefer_single_quotes: true # Uncomment to enable the `prefer_single_quotes` rule + +# Additional information about this file can be found at +# https://dart.dev/guides/language/analysis-options diff --git a/packages/syncfusion_flutter_pdfviewer_platform_interface/example/pubspec.yaml b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/pubspec.yaml new file mode 100644 index 000000000..53d29af35 --- /dev/null +++ b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/pubspec.yaml @@ -0,0 +1,83 @@ +name: syncfusion_pdfviewer_platform_interface_example +description: Demonstrates how to use the syncfusion_pdfviewer_platform_interface plugin. + +# The following line prevents the package from being accidentally published to +# pub.dev using `flutter pub publish`. This is preferred for private packages. +publish_to: 'none' # Remove this line if you wish to publish to pub.dev + +environment: + sdk: ">=2.17.0 <4.0.0" + +# Dependencies specify other packages that your package needs in order to work. +# To automatically upgrade your package dependencies to the latest versions +# consider running `flutter pub upgrade --major-versions`. Alternatively, +# dependencies can be manually updated by changing the version numbers below to +# the latest version available on pub.dev. To see which dependencies have newer +# versions available, run `flutter pub outdated`. +dependencies: + flutter: + sdk: flutter + + syncfusion_flutter_pdfviewer: + git: + url: https://SyncfusionBuild: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@github.com/essential-studio/flutter-pdfviewer + path: flutter_pdfviewer/syncfusion_flutter_pdfviewer + branch: development + ref: development + + # The following adds the Cupertino Icons font to your application. + # Use with the CupertinoIcons class for iOS style icons. + cupertino_icons: ^1.0.5 + +dev_dependencies: + flutter_test: + sdk: flutter + + # The "flutter_lints" package below contains a set of recommended lints to + # encourage good coding practices. The lint set provided by the package is + # activated in the `analysis_options.yaml` file located at the root of your + # package. See that file for information about deactivating specific lint + # rules and activating additional ones. + flutter_lints: ^1.0.0 + +# For information on the generic Dart part of this file, see the +# following page: https://dart.dev/tools/pub/pubspec + +# The following section is specific to Flutter. +flutter: + + # The following line ensures that the Material Icons font is + # included with your application, so that you can use the icons in + # the material Icons class. + uses-material-design: true + + # To add assets to your application, add an assets section, like this: + # assets: + # - images/a_dot_burr.jpeg + # - images/a_dot_ham.jpeg + + # An image asset can refer to one or more resolution-specific "variants", see + # https://flutter.dev/assets-and-images/#resolution-aware. + + # For details regarding adding assets from package dependencies, see + # https://flutter.dev/assets-and-images/#from-packages + + # To add custom fonts to your application, add a fonts section here, + # in this "flutter" section. Each entry in this list should have a + # "family" key with the font family name, and a "fonts" key with a + # list giving the asset and other descriptors for the font. For + # example: + # fonts: + # - family: Schyler + # fonts: + # - asset: fonts/Schyler-Regular.ttf + # - asset: fonts/Schyler-Italic.ttf + # style: italic + # - family: Trajan Pro + # fonts: + # - asset: fonts/TrajanPro.ttf + # - asset: fonts/TrajanPro_Bold.ttf + # weight: 700 + # + # For details regarding fonts from package dependencies, + # see https://flutter.dev/custom-fonts/#from-packages diff --git a/packages/syncfusion_flutter_pdfviewer_platform_interface/pubspec.yaml b/packages/syncfusion_flutter_pdfviewer_platform_interface/pubspec.yaml new file mode 100644 index 000000000..9af6d9c6f --- /dev/null +++ b/packages/syncfusion_flutter_pdfviewer_platform_interface/pubspec.yaml @@ -0,0 +1,17 @@ +name: syncfusion_pdfviewer_platform_interface +description: A common platform interface for the Flutter PDF Viewer library that lets you view the PDF documents seamlessly and efficiently. +version: 24.2.9 +homepage: https://github.com/syncfusion/flutter-widgets/tree/master/packages/syncfusion_pdfviewer_platform_interface + +environment: + sdk: '>=2.17.0 <4.0.0' + flutter: ">=1.20.0" + +dependencies: + flutter: + sdk: flutter + plugin_platform_interface: ^2.0.0 + +dev_dependencies: + flutter_test: + sdk: flutter \ No newline at end of file From 69f0f82418ea1818ec3616d5979868f0b0119dc5 Mon Sep 17 00:00:00 2001 From: LokeshPalani Date: Mon, 25 Mar 2024 23:39:21 +0530 Subject: [PATCH 3/6] Added missed files in the example folder --- .../example/android/app/build.gradle | 68 +++ .../android/app/src/debug/AndroidManifest.xml | 7 + .../android/app/src/main/AndroidManifest.xml | 34 ++ .../com/example/example/MainActivity.kt | 6 + .../res/drawable-v21/launch_background.xml | 12 + .../main/res/drawable/launch_background.xml | 12 + .../src/main/res/mipmap-hdpi/ic_launcher.png | Bin 0 -> 544 bytes .../src/main/res/mipmap-mdpi/ic_launcher.png | Bin 0 -> 442 bytes .../src/main/res/mipmap-xhdpi/ic_launcher.png | Bin 0 -> 721 bytes .../main/res/mipmap-xxhdpi/ic_launcher.png | Bin 0 -> 1031 bytes .../main/res/mipmap-xxxhdpi/ic_launcher.png | Bin 0 -> 1443 bytes .../app/src/main/res/values-night/styles.xml | 18 + .../app/src/main/res/values/styles.xml | 18 + .../app/src/profile/AndroidManifest.xml | 7 + .../example/android/build.gradle | 31 ++ .../example/android/gradle.properties | 3 + .../gradle/wrapper/gradle-wrapper.properties | 6 + .../example/android/settings.gradle | 11 + .../example/ios/.gitignore | 34 ++ .../ios/Flutter/AppFrameworkInfo.plist | 26 + .../example/ios/Flutter/Debug.xcconfig | 1 + .../example/ios/Flutter/Release.xcconfig | 1 + .../ios/Runner.xcodeproj/project.pbxproj | 481 ++++++++++++++++++ .../contents.xcworkspacedata | 7 + .../xcshareddata/IDEWorkspaceChecks.plist | 8 + .../xcshareddata/WorkspaceSettings.xcsettings | 8 + .../xcshareddata/xcschemes/Runner.xcscheme | 87 ++++ .../contents.xcworkspacedata | 7 + .../xcshareddata/IDEWorkspaceChecks.plist | 8 + .../xcshareddata/WorkspaceSettings.xcsettings | 8 + .../example/ios/Runner/AppDelegate.swift | 13 + .../AppIcon.appiconset/Contents.json | 122 +++++ .../Icon-App-1024x1024@1x.png | Bin 0 -> 10932 bytes .../AppIcon.appiconset/Icon-App-20x20@1x.png | Bin 0 -> 564 bytes .../AppIcon.appiconset/Icon-App-20x20@2x.png | Bin 0 -> 1283 bytes .../AppIcon.appiconset/Icon-App-20x20@3x.png | Bin 0 -> 1588 bytes .../AppIcon.appiconset/Icon-App-29x29@1x.png | Bin 0 -> 1025 bytes .../AppIcon.appiconset/Icon-App-29x29@2x.png | Bin 0 -> 1716 bytes .../AppIcon.appiconset/Icon-App-29x29@3x.png | Bin 0 -> 1920 bytes .../AppIcon.appiconset/Icon-App-40x40@1x.png | Bin 0 -> 1283 bytes .../AppIcon.appiconset/Icon-App-40x40@2x.png | Bin 0 -> 1895 bytes .../AppIcon.appiconset/Icon-App-40x40@3x.png | Bin 0 -> 2665 bytes .../AppIcon.appiconset/Icon-App-60x60@2x.png | Bin 0 -> 2665 bytes .../AppIcon.appiconset/Icon-App-60x60@3x.png | Bin 0 -> 3831 bytes .../AppIcon.appiconset/Icon-App-76x76@1x.png | Bin 0 -> 1888 bytes .../AppIcon.appiconset/Icon-App-76x76@2x.png | Bin 0 -> 3294 bytes .../Icon-App-83.5x83.5@2x.png | Bin 0 -> 3612 bytes .../LaunchImage.imageset/Contents.json | 23 + .../LaunchImage.imageset/LaunchImage.png | Bin 0 -> 68 bytes .../LaunchImage.imageset/LaunchImage@2x.png | Bin 0 -> 68 bytes .../LaunchImage.imageset/LaunchImage@3x.png | Bin 0 -> 68 bytes .../LaunchImage.imageset/README.md | 5 + .../Runner/Base.lproj/LaunchScreen.storyboard | 37 ++ .../ios/Runner/Base.lproj/Main.storyboard | 26 + .../example/ios/Runner/Info.plist | 47 ++ .../ios/Runner/Runner-Bridging-Header.h | 1 + .../example/web/favicon.png | Bin 0 -> 917 bytes .../example/web/icons/Icon-192.png | Bin 0 -> 5292 bytes .../example/web/icons/Icon-512.png | Bin 0 -> 8252 bytes .../example/web/index.html | 39 ++ .../example/web/manifest.json | 35 ++ .../example/windows/.gitignore | 17 + .../example/windows/CMakeLists.txt | 95 ++++ .../example/windows/flutter/CMakeLists.txt | 103 ++++ .../flutter/generated_plugin_registrant.cc | 14 + .../flutter/generated_plugin_registrant.h | 15 + .../windows/flutter/generated_plugins.cmake | 16 + .../example/windows/runner/CMakeLists.txt | 17 + .../example/windows/runner/Runner.rc | 121 +++++ .../example/windows/runner/flutter_window.cpp | 61 +++ .../example/windows/runner/flutter_window.h | 33 ++ .../example/windows/runner/main.cpp | 43 ++ .../example/windows/runner/resource.h | 16 + .../windows/runner/resources/app_icon.ico | Bin 0 -> 33772 bytes .../windows/runner/runner.exe.manifest | 20 + .../example/windows/runner/utils.cpp | 64 +++ .../example/windows/runner/utils.h | 19 + .../example/windows/runner/win32_window.cpp | 245 +++++++++ .../example/windows/runner/win32_window.h | 98 ++++ 79 files changed, 2254 insertions(+) create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/android/app/build.gradle create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/android/app/src/debug/AndroidManifest.xml create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/android/app/src/main/AndroidManifest.xml create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/android/app/src/main/kotlin/com/example/example/MainActivity.kt create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/android/app/src/main/res/drawable-v21/launch_background.xml create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/android/app/src/main/res/drawable/launch_background.xml create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/android/app/src/main/res/values-night/styles.xml create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/android/app/src/main/res/values/styles.xml create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/android/app/src/profile/AndroidManifest.xml create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/android/build.gradle create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/android/gradle.properties create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/android/gradle/wrapper/gradle-wrapper.properties create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/android/settings.gradle create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/.gitignore create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Flutter/AppFrameworkInfo.plist create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Flutter/Debug.xcconfig create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Flutter/Release.xcconfig create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner.xcodeproj/project.pbxproj create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner.xcworkspace/contents.xcworkspacedata create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner/AppDelegate.swift create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner/Base.lproj/LaunchScreen.storyboard create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner/Base.lproj/Main.storyboard create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner/Info.plist create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner/Runner-Bridging-Header.h create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/web/favicon.png create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/web/icons/Icon-192.png create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/web/icons/Icon-512.png create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/web/index.html create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/web/manifest.json create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/windows/.gitignore create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/windows/CMakeLists.txt create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/windows/flutter/CMakeLists.txt create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/windows/flutter/generated_plugin_registrant.cc create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/windows/flutter/generated_plugin_registrant.h create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/windows/flutter/generated_plugins.cmake create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/windows/runner/CMakeLists.txt create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/windows/runner/Runner.rc create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/windows/runner/flutter_window.cpp create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/windows/runner/flutter_window.h create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/windows/runner/main.cpp create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/windows/runner/resource.h create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/windows/runner/resources/app_icon.ico create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/windows/runner/runner.exe.manifest create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/windows/runner/utils.cpp create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/windows/runner/utils.h create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/windows/runner/win32_window.cpp create mode 100644 packages/syncfusion_flutter_pdfviewer_platform_interface/example/windows/runner/win32_window.h diff --git a/packages/syncfusion_flutter_pdfviewer_platform_interface/example/android/app/build.gradle b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/android/app/build.gradle new file mode 100644 index 000000000..5fe3c929f --- /dev/null +++ b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/android/app/build.gradle @@ -0,0 +1,68 @@ +def localProperties = new Properties() +def localPropertiesFile = rootProject.file('local.properties') +if (localPropertiesFile.exists()) { + localPropertiesFile.withReader('UTF-8') { reader -> + localProperties.load(reader) + } +} + +def flutterRoot = localProperties.getProperty('flutter.sdk') +if (flutterRoot == null) { + throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.") +} + +def flutterVersionCode = localProperties.getProperty('flutter.versionCode') +if (flutterVersionCode == null) { + flutterVersionCode = '1' +} + +def flutterVersionName = localProperties.getProperty('flutter.versionName') +if (flutterVersionName == null) { + flutterVersionName = '1.0' +} + +apply plugin: 'com.android.application' +apply plugin: 'kotlin-android' +apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle" + +android { + compileSdkVersion flutter.compileSdkVersion + + compileOptions { + sourceCompatibility JavaVersion.VERSION_1_8 + targetCompatibility JavaVersion.VERSION_1_8 + } + + kotlinOptions { + jvmTarget = '1.8' + } + + sourceSets { + main.java.srcDirs += 'src/main/kotlin' + } + + defaultConfig { + // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). + applicationId "com.example.example" + minSdkVersion flutter.minSdkVersion + targetSdkVersion flutter.targetSdkVersion + versionCode flutterVersionCode.toInteger() + versionName flutterVersionName + } + + buildTypes { + release { + // TODO: Add your own signing config for the release build. + // Signing with the debug keys for now, so `flutter run --release` works. + signingConfig signingConfigs.debug + } + } +} + +flutter { + source '../..' +} + +dependencies { + implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" +} diff --git a/packages/syncfusion_flutter_pdfviewer_platform_interface/example/android/app/src/debug/AndroidManifest.xml b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/android/app/src/debug/AndroidManifest.xml new file mode 100644 index 000000000..c208884f3 --- /dev/null +++ b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/android/app/src/debug/AndroidManifest.xml @@ -0,0 +1,7 @@ + + + + diff --git a/packages/syncfusion_flutter_pdfviewer_platform_interface/example/android/app/src/main/AndroidManifest.xml b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/android/app/src/main/AndroidManifest.xml new file mode 100644 index 000000000..3f41384db --- /dev/null +++ b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/android/app/src/main/AndroidManifest.xml @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + diff --git a/packages/syncfusion_flutter_pdfviewer_platform_interface/example/android/app/src/main/kotlin/com/example/example/MainActivity.kt b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/android/app/src/main/kotlin/com/example/example/MainActivity.kt new file mode 100644 index 000000000..e793a000d --- /dev/null +++ b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/android/app/src/main/kotlin/com/example/example/MainActivity.kt @@ -0,0 +1,6 @@ +package com.example.example + +import io.flutter.embedding.android.FlutterActivity + +class MainActivity: FlutterActivity() { +} diff --git a/packages/syncfusion_flutter_pdfviewer_platform_interface/example/android/app/src/main/res/drawable-v21/launch_background.xml b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/android/app/src/main/res/drawable-v21/launch_background.xml new file mode 100644 index 000000000..f74085f3f --- /dev/null +++ b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/android/app/src/main/res/drawable-v21/launch_background.xml @@ -0,0 +1,12 @@ + + + + + + + + diff --git a/packages/syncfusion_flutter_pdfviewer_platform_interface/example/android/app/src/main/res/drawable/launch_background.xml b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/android/app/src/main/res/drawable/launch_background.xml new file mode 100644 index 000000000..304732f88 --- /dev/null +++ b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/android/app/src/main/res/drawable/launch_background.xml @@ -0,0 +1,12 @@ + + + + + + + + diff --git a/packages/syncfusion_flutter_pdfviewer_platform_interface/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 0000000000000000000000000000000000000000..db77bb4b7b0906d62b1847e87f15cdcacf6a4f29 GIT binary patch literal 544 zcmeAS@N?(olHy`uVBq!ia0vp^9w5xY3?!3`olAj~WQl7;NpOBzNqJ&XDuZK6ep0G} zXKrG8YEWuoN@d~6R2!h8bpbvhu0Wd6uZuB!w&u2PAxD2eNXD>P5D~Wn-+_Wa#27Xc zC?Zj|6r#X(-D3u$NCt}(Ms06KgJ4FxJVv{GM)!I~&n8Bnc94O7-Hd)cjDZswgC;Qs zO=b+9!WcT8F?0rF7!Uys2bs@gozCP?z~o%U|N3vA*22NaGQG zlg@K`O_XuxvZ&Ks^m&R!`&1=spLvfx7oGDKDwpwW`#iqdw@AL`7MR}m`rwr|mZgU`8P7SBkL78fFf!WnuYWm$5Z0 zNXhDbCv&49sM544K|?c)WrFfiZvCi9h0O)B3Pgg&ebxsLQ05GG~ AQ2+n{ literal 0 HcmV?d00001 diff --git a/packages/syncfusion_flutter_pdfviewer_platform_interface/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 0000000000000000000000000000000000000000..17987b79bb8a35cc66c3c1fd44f5a5526c1b78be GIT binary patch literal 442 zcmeAS@N?(olHy`uVBq!ia0vp^1|ZDA3?vioaBc-sk|nMYCBgY=CFO}lsSJ)O`AMk? zp1FzXsX?iUDV2pMQ*D5Xx&nMcT!A!W`0S9QKQy;}1Cl^CgaH=;G9cpY;r$Q>i*pfB zP2drbID<_#qf;rPZx^FqH)F_D#*k@@q03KywUtLX8Ua?`H+NMzkczFPK3lFz@i_kW%1NOn0|D2I9n9wzH8m|-tHjsw|9>@K=iMBhxvkv6m8Y-l zytQ?X=U+MF$@3 zt`~i=@j|6y)RWMK--}M|=T`o&^Ni>IoWKHEbBXz7?A@mgWoL>!*SXo`SZH-*HSdS+ yn*9;$7;m`l>wYBC5bq;=U}IMqLzqbYCidGC!)_gkIk_C@Uy!y&wkt5C($~2D>~)O*cj@FGjOCM)M>_ixfudOh)?xMu#Fs z#}Y=@YDTwOM)x{K_j*Q;dPdJ?Mz0n|pLRx{4n|)f>SXlmV)XB04CrSJn#dS5nK2lM zrZ9#~WelCp7&e13Y$jvaEXHskn$2V!!DN-nWS__6T*l;H&Fopn?A6HZ-6WRLFP=R` zqG+CE#d4|IbyAI+rJJ`&x9*T`+a=p|0O(+s{UBcyZdkhj=yS1>AirP+0R;mf2uMgM zC}@~JfByORAh4SyRgi&!(cja>F(l*O+nd+@4m$|6K6KDn_&uvCpV23&>G9HJp{xgg zoq1^2_p9@|WEo z*X_Uko@K)qYYv~>43eQGMdbiGbo>E~Q& zrYBH{QP^@Sti!`2)uG{irBBq@y*$B zi#&(U-*=fp74j)RyIw49+0MRPMRU)+a2r*PJ$L5roHt2$UjExCTZSbq%V!HeS7J$N zdG@vOZB4v_lF7Plrx+hxo7(fCV&}fHq)$ literal 0 HcmV?d00001 diff --git a/packages/syncfusion_flutter_pdfviewer_platform_interface/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 0000000000000000000000000000000000000000..d5f1c8d34e7a88e3f88bea192c3a370d44689c3c GIT binary patch literal 1031 zcmeAS@N?(olHy`uVBq!ia0vp^6F``Q8Ax83A=Cw=BuiW)N`mv#O3D+9QW+dm@{>{( zJaZG%Q-e|yQz{EjrrIztFa`(sgt!6~Yi|1%a`XoT0ojZ}lNrNjb9xjc(B0U1_% zz5^97Xt*%oq$rQy4?0GKNfJ44uvxI)gC`h-NZ|&0-7(qS@?b!5r36oQ}zyZrNO3 zMO=Or+<~>+A&uN&E!^Sl+>xE!QC-|oJv`ApDhqC^EWD|@=#J`=d#Xzxs4ah}w&Jnc z$|q_opQ^2TrnVZ0o~wh<3t%W&flvYGe#$xqda2bR_R zvPYgMcHgjZ5nSA^lJr%;<&0do;O^tDDh~=pIxA#coaCY>&N%M2^tq^U%3DB@ynvKo}b?yu-bFc-u0JHzced$sg7S3zqI(2 z#Km{dPr7I=pQ5>FuK#)QwK?Y`E`B?nP+}U)I#c1+FM*1kNvWG|a(TpksZQ3B@sD~b zpQ2)*V*TdwjFOtHvV|;OsiDqHi=6%)o4b!)x$)%9pGTsE z-JL={-Ffv+T87W(Xpooq<`r*VzWQcgBN$$`u}f>-ZQI1BB8ykN*=e4rIsJx9>z}*o zo~|9I;xof literal 0 HcmV?d00001 diff --git a/packages/syncfusion_flutter_pdfviewer_platform_interface/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 0000000000000000000000000000000000000000..4d6372eebdb28e45604e46eeda8dd24651419bc0 GIT binary patch literal 1443 zcmb`G{WsKk6vsdJTdFg%tJav9_E4vzrOaqkWF|A724Nly!y+?N9`YV6wZ}5(X(D_N(?!*n3`|_r0Hc?=PQw&*vnU?QTFY zB_MsH|!j$PP;I}?dppoE_gA(4uc!jV&0!l7_;&p2^pxNo>PEcNJv za5_RT$o2Mf!<+r?&EbHH6nMoTsDOa;mN(wv8RNsHpG)`^ymG-S5By8=l9iVXzN_eG%Xg2@Xeq76tTZ*dGh~Lo9vl;Zfs+W#BydUw zCkZ$o1LqWQO$FC9aKlLl*7x9^0q%0}$OMlp@Kk_jHXOjofdePND+j!A{q!8~Jn+s3 z?~~w@4?egS02}8NuulUA=L~QQfm;MzCGd)XhiftT;+zFO&JVyp2mBww?;QByS_1w! zrQlx%{^cMj0|Bo1FjwY@Q8?Hx0cIPF*@-ZRFpPc#bBw{5@tD(5%sClzIfl8WU~V#u zm5Q;_F!wa$BSpqhN>W@2De?TKWR*!ujY;Yylk_X5#~V!L*Gw~;$%4Q8~Mad z@`-kG?yb$a9cHIApZDVZ^U6Xkp<*4rU82O7%}0jjHlK{id@?-wpN*fCHXyXh(bLt* zPc}H-x0e4E&nQ>y%B-(EL=9}RyC%MyX=upHuFhAk&MLbsF0LP-q`XnH78@fT+pKPW zu72MW`|?8ht^tz$iC}ZwLp4tB;Q49K!QCF3@!iB1qOI=?w z7In!}F~ij(18UYUjnbmC!qKhPo%24?8U1x{7o(+?^Zu0Hx81|FuS?bJ0jgBhEMzf< zCgUq7r2OCB(`XkKcN-TL>u5y#dD6D!)5W?`O5)V^>jb)P)GBdy%t$uUMpf$SNV31$ zb||OojAbvMP?T@$h_ZiFLFVHDmbyMhJF|-_)HX3%m=CDI+ID$0^C>kzxprBW)hw(v zr!Gmda);ICoQyhV_oP5+C%?jcG8v+D@9f?Dk*!BxY}dazmrT@64UrP3hlslANK)bq z$67n83eh}OeW&SV@HG95P|bjfqJ7gw$e+`Hxo!4cx`jdK1bJ>YDSpGKLPZ^1cv$ek zIB?0S<#tX?SJCLWdMd{-ME?$hc7A$zBOdIJ)4!KcAwb=VMov)nK;9z>x~rfT1>dS+ zZ6#`2v@`jgbqq)P22H)Tx2CpmM^o1$B+xT6`(v%5xJ(?j#>Q$+rx_R|7TzDZe{J6q zG1*EcU%tE?!kO%^M;3aM6JN*LAKUVb^xz8-Pxo#jR5(-KBeLJvA@-gxNHx0M-ZJLl z;#JwQoh~9V?`UVo#}{6ka@II>++D@%KqGpMdlQ}?9E*wFcf5(#XQnP$Dk5~%iX^>f z%$y;?M0BLp{O3a(-4A?ewryHrrD%cx#Q^%KY1H zNre$ve+vceSLZcNY4U(RBX&)oZn*Py()h)XkE?PL$!bNb{N5FVI2Y%LKEm%yvpyTP z(1P?z~7YxD~Rf<(a@_y` literal 0 HcmV?d00001 diff --git a/packages/syncfusion_flutter_pdfviewer_platform_interface/example/android/app/src/main/res/values-night/styles.xml b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/android/app/src/main/res/values-night/styles.xml new file mode 100644 index 000000000..3db14bb53 --- /dev/null +++ b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/android/app/src/main/res/values-night/styles.xml @@ -0,0 +1,18 @@ + + + + + + + diff --git a/packages/syncfusion_flutter_pdfviewer_platform_interface/example/android/app/src/main/res/values/styles.xml b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/android/app/src/main/res/values/styles.xml new file mode 100644 index 000000000..d460d1e92 --- /dev/null +++ b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/android/app/src/main/res/values/styles.xml @@ -0,0 +1,18 @@ + + + + + + + diff --git a/packages/syncfusion_flutter_pdfviewer_platform_interface/example/android/app/src/profile/AndroidManifest.xml b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/android/app/src/profile/AndroidManifest.xml new file mode 100644 index 000000000..c208884f3 --- /dev/null +++ b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/android/app/src/profile/AndroidManifest.xml @@ -0,0 +1,7 @@ + + + + diff --git a/packages/syncfusion_flutter_pdfviewer_platform_interface/example/android/build.gradle b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/android/build.gradle new file mode 100644 index 000000000..4256f9173 --- /dev/null +++ b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/android/build.gradle @@ -0,0 +1,31 @@ +buildscript { + ext.kotlin_version = '1.6.10' + repositories { + google() + mavenCentral() + } + + dependencies { + classpath 'com.android.tools.build:gradle:4.1.0' + classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" + } +} + +allprojects { + repositories { + google() + mavenCentral() + } +} + +rootProject.buildDir = '../build' +subprojects { + project.buildDir = "${rootProject.buildDir}/${project.name}" +} +subprojects { + project.evaluationDependsOn(':app') +} + +task clean(type: Delete) { + delete rootProject.buildDir +} diff --git a/packages/syncfusion_flutter_pdfviewer_platform_interface/example/android/gradle.properties b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/android/gradle.properties new file mode 100644 index 000000000..94adc3a3f --- /dev/null +++ b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/android/gradle.properties @@ -0,0 +1,3 @@ +org.gradle.jvmargs=-Xmx1536M +android.useAndroidX=true +android.enableJetifier=true diff --git a/packages/syncfusion_flutter_pdfviewer_platform_interface/example/android/gradle/wrapper/gradle-wrapper.properties b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/android/gradle/wrapper/gradle-wrapper.properties new file mode 100644 index 000000000..bc6a58afd --- /dev/null +++ b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/android/gradle/wrapper/gradle-wrapper.properties @@ -0,0 +1,6 @@ +#Fri Jun 23 08:50:38 CEST 2017 +distributionBase=GRADLE_USER_HOME +distributionPath=wrapper/dists +zipStoreBase=GRADLE_USER_HOME +zipStorePath=wrapper/dists +distributionUrl=https\://services.gradle.org/distributions/gradle-6.7-all.zip diff --git a/packages/syncfusion_flutter_pdfviewer_platform_interface/example/android/settings.gradle b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/android/settings.gradle new file mode 100644 index 000000000..44e62bcf0 --- /dev/null +++ b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/android/settings.gradle @@ -0,0 +1,11 @@ +include ':app' + +def localPropertiesFile = new File(rootProject.projectDir, "local.properties") +def properties = new Properties() + +assert localPropertiesFile.exists() +localPropertiesFile.withReader("UTF-8") { reader -> properties.load(reader) } + +def flutterSdkPath = properties.getProperty("flutter.sdk") +assert flutterSdkPath != null, "flutter.sdk not set in local.properties" +apply from: "$flutterSdkPath/packages/flutter_tools/gradle/app_plugin_loader.gradle" diff --git a/packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/.gitignore b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/.gitignore new file mode 100644 index 000000000..7a7f9873a --- /dev/null +++ b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/.gitignore @@ -0,0 +1,34 @@ +**/dgph +*.mode1v3 +*.mode2v3 +*.moved-aside +*.pbxuser +*.perspectivev3 +**/*sync/ +.sconsign.dblite +.tags* +**/.vagrant/ +**/DerivedData/ +Icon? +**/Pods/ +**/.symlinks/ +profile +xcuserdata +**/.generated/ +Flutter/App.framework +Flutter/Flutter.framework +Flutter/Flutter.podspec +Flutter/Generated.xcconfig +Flutter/ephemeral/ +Flutter/app.flx +Flutter/app.zip +Flutter/flutter_assets/ +Flutter/flutter_export_environment.sh +ServiceDefinitions.json +Runner/GeneratedPluginRegistrant.* + +# Exceptions to above rules. +!default.mode1v3 +!default.mode2v3 +!default.pbxuser +!default.perspectivev3 diff --git a/packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Flutter/AppFrameworkInfo.plist b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Flutter/AppFrameworkInfo.plist new file mode 100644 index 000000000..8d4492f97 --- /dev/null +++ b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Flutter/AppFrameworkInfo.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + App + CFBundleIdentifier + io.flutter.flutter.app + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + App + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + 1.0 + MinimumOSVersion + 9.0 + + diff --git a/packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Flutter/Debug.xcconfig b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Flutter/Debug.xcconfig new file mode 100644 index 000000000..592ceee85 --- /dev/null +++ b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Flutter/Debug.xcconfig @@ -0,0 +1 @@ +#include "Generated.xcconfig" diff --git a/packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Flutter/Release.xcconfig b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Flutter/Release.xcconfig new file mode 100644 index 000000000..592ceee85 --- /dev/null +++ b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Flutter/Release.xcconfig @@ -0,0 +1 @@ +#include "Generated.xcconfig" diff --git a/packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner.xcodeproj/project.pbxproj b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner.xcodeproj/project.pbxproj new file mode 100644 index 000000000..6edd238e7 --- /dev/null +++ b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner.xcodeproj/project.pbxproj @@ -0,0 +1,481 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 50; + objects = { + +/* Begin PBXBuildFile section */ + 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; }; + 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; }; + 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; }; + 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; }; + 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; }; + 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; }; +/* End PBXBuildFile section */ + +/* Begin PBXCopyFilesBuildPhase section */ + 9705A1C41CF9048500538489 /* Embed Frameworks */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = ""; + dstSubfolderSpec = 10; + files = ( + ); + name = "Embed Frameworks"; + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXCopyFilesBuildPhase section */ + +/* Begin PBXFileReference section */ + 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = ""; }; + 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = ""; }; + 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = ""; }; + 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = ""; }; + 74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; + 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = ""; }; + 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = ""; }; + 9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = ""; }; + 97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; }; + 97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; + 97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; + 97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; + 97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 97C146EB1CF9000F007C117D /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 9740EEB11CF90186004384FC /* Flutter */ = { + isa = PBXGroup; + children = ( + 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */, + 9740EEB21CF90195004384FC /* Debug.xcconfig */, + 7AFA3C8E1D35360C0083082E /* Release.xcconfig */, + 9740EEB31CF90195004384FC /* Generated.xcconfig */, + ); + name = Flutter; + sourceTree = ""; + }; + 97C146E51CF9000F007C117D = { + isa = PBXGroup; + children = ( + 9740EEB11CF90186004384FC /* Flutter */, + 97C146F01CF9000F007C117D /* Runner */, + 97C146EF1CF9000F007C117D /* Products */, + ); + sourceTree = ""; + }; + 97C146EF1CF9000F007C117D /* Products */ = { + isa = PBXGroup; + children = ( + 97C146EE1CF9000F007C117D /* Runner.app */, + ); + name = Products; + sourceTree = ""; + }; + 97C146F01CF9000F007C117D /* Runner */ = { + isa = PBXGroup; + children = ( + 97C146FA1CF9000F007C117D /* Main.storyboard */, + 97C146FD1CF9000F007C117D /* Assets.xcassets */, + 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */, + 97C147021CF9000F007C117D /* Info.plist */, + 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */, + 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */, + 74858FAE1ED2DC5600515810 /* AppDelegate.swift */, + 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */, + ); + path = Runner; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + 97C146ED1CF9000F007C117D /* Runner */ = { + isa = PBXNativeTarget; + buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */; + buildPhases = ( + 9740EEB61CF901F6004384FC /* Run Script */, + 97C146EA1CF9000F007C117D /* Sources */, + 97C146EB1CF9000F007C117D /* Frameworks */, + 97C146EC1CF9000F007C117D /* Resources */, + 9705A1C41CF9048500538489 /* Embed Frameworks */, + 3B06AD1E1E4923F5004D2608 /* Thin Binary */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = Runner; + productName = Runner; + productReference = 97C146EE1CF9000F007C117D /* Runner.app */; + productType = "com.apple.product-type.application"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 97C146E61CF9000F007C117D /* Project object */ = { + isa = PBXProject; + attributes = { + LastUpgradeCheck = 1300; + ORGANIZATIONNAME = ""; + TargetAttributes = { + 97C146ED1CF9000F007C117D = { + CreatedOnToolsVersion = 7.3.1; + LastSwiftMigration = 1100; + }; + }; + }; + buildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */; + compatibilityVersion = "Xcode 9.3"; + developmentRegion = en; + hasScannedForEncodings = 0; + knownRegions = ( + en, + Base, + ); + mainGroup = 97C146E51CF9000F007C117D; + productRefGroup = 97C146EF1CF9000F007C117D /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + 97C146ED1CF9000F007C117D /* Runner */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + 97C146EC1CF9000F007C117D /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */, + 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */, + 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */, + 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXShellScriptBuildPhase section */ + 3B06AD1E1E4923F5004D2608 /* Thin Binary */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "Thin Binary"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin"; + }; + 9740EEB61CF901F6004384FC /* Run Script */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "Run Script"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build"; + }; +/* End PBXShellScriptBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 97C146EA1CF9000F007C117D /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */, + 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXVariantGroup section */ + 97C146FA1CF9000F007C117D /* Main.storyboard */ = { + isa = PBXVariantGroup; + children = ( + 97C146FB1CF9000F007C117D /* Base */, + ); + name = Main.storyboard; + sourceTree = ""; + }; + 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = { + isa = PBXVariantGroup; + children = ( + 97C147001CF9000F007C117D /* Base */, + ); + name = LaunchScreen.storyboard; + sourceTree = ""; + }; +/* End PBXVariantGroup section */ + +/* Begin XCBuildConfiguration section */ + 249021D3217E4FDB00AE95B9 /* Profile */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + MTL_ENABLE_DEBUG_INFO = NO; + SDKROOT = iphoneos; + SUPPORTED_PLATFORMS = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Profile; + }; + 249021D4217E4FDB00AE95B9 /* Profile */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_MODULES = YES; + CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; + ENABLE_BITCODE = NO; + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = com.example.example; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; + SWIFT_VERSION = 5.0; + VERSIONING_SYSTEM = "apple-generic"; + }; + name = Profile; + }; + 97C147031CF9000F007C117D /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = dwarf; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + MTL_ENABLE_DEBUG_INFO = YES; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 97C147041CF9000F007C117D /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + MTL_ENABLE_DEBUG_INFO = NO; + SDKROOT = iphoneos; + SUPPORTED_PLATFORMS = iphoneos; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_OPTIMIZATION_LEVEL = "-O"; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 97C147061CF9000F007C117D /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_MODULES = YES; + CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; + ENABLE_BITCODE = NO; + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = com.example.example; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 5.0; + VERSIONING_SYSTEM = "apple-generic"; + }; + name = Debug; + }; + 97C147071CF9000F007C117D /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_MODULES = YES; + CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; + ENABLE_BITCODE = NO; + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = com.example.example; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; + SWIFT_VERSION = 5.0; + VERSIONING_SYSTEM = "apple-generic"; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 97C147031CF9000F007C117D /* Debug */, + 97C147041CF9000F007C117D /* Release */, + 249021D3217E4FDB00AE95B9 /* Profile */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 97C147061CF9000F007C117D /* Debug */, + 97C147071CF9000F007C117D /* Release */, + 249021D4217E4FDB00AE95B9 /* Profile */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = 97C146E61CF9000F007C117D /* Project object */; +} diff --git a/packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata new file mode 100644 index 000000000..919434a62 --- /dev/null +++ b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 000000000..18d981003 --- /dev/null +++ b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings new file mode 100644 index 000000000..f9b0d7c5e --- /dev/null +++ b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings @@ -0,0 +1,8 @@ + + + + + PreviewsEnabled + + + diff --git a/packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme new file mode 100644 index 000000000..c87d15a33 --- /dev/null +++ b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme @@ -0,0 +1,87 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner.xcworkspace/contents.xcworkspacedata b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner.xcworkspace/contents.xcworkspacedata new file mode 100644 index 000000000..1d526a16e --- /dev/null +++ b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 000000000..18d981003 --- /dev/null +++ b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings new file mode 100644 index 000000000..f9b0d7c5e --- /dev/null +++ b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings @@ -0,0 +1,8 @@ + + + + + PreviewsEnabled + + + diff --git a/packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner/AppDelegate.swift b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner/AppDelegate.swift new file mode 100644 index 000000000..70693e4a8 --- /dev/null +++ b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner/AppDelegate.swift @@ -0,0 +1,13 @@ +import UIKit +import Flutter + +@UIApplicationMain +@objc class AppDelegate: FlutterAppDelegate { + override func application( + _ application: UIApplication, + didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? + ) -> Bool { + GeneratedPluginRegistrant.register(with: self) + return super.application(application, didFinishLaunchingWithOptions: launchOptions) + } +} diff --git a/packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json new file mode 100644 index 000000000..d36b1fab2 --- /dev/null +++ b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json @@ -0,0 +1,122 @@ +{ + "images" : [ + { + "size" : "20x20", + "idiom" : "iphone", + "filename" : "Icon-App-20x20@2x.png", + "scale" : "2x" + }, + { + "size" : "20x20", + "idiom" : "iphone", + "filename" : "Icon-App-20x20@3x.png", + "scale" : "3x" + }, + { + "size" : "29x29", + "idiom" : "iphone", + "filename" : "Icon-App-29x29@1x.png", + "scale" : "1x" + }, + { + "size" : "29x29", + "idiom" : "iphone", + "filename" : "Icon-App-29x29@2x.png", + "scale" : "2x" + }, + { + "size" : "29x29", + "idiom" : "iphone", + "filename" : "Icon-App-29x29@3x.png", + "scale" : "3x" + }, + { + "size" : "40x40", + "idiom" : "iphone", + "filename" : "Icon-App-40x40@2x.png", + "scale" : "2x" + }, + { + "size" : "40x40", + "idiom" : "iphone", + "filename" : "Icon-App-40x40@3x.png", + "scale" : "3x" + }, + { + "size" : "60x60", + "idiom" : "iphone", + "filename" : "Icon-App-60x60@2x.png", + "scale" : "2x" + }, + { + "size" : "60x60", + "idiom" : "iphone", + "filename" : "Icon-App-60x60@3x.png", + "scale" : "3x" + }, + { + "size" : "20x20", + "idiom" : "ipad", + "filename" : "Icon-App-20x20@1x.png", + "scale" : "1x" + }, + { + "size" : "20x20", + "idiom" : "ipad", + "filename" : "Icon-App-20x20@2x.png", + "scale" : "2x" + }, + { + "size" : "29x29", + "idiom" : "ipad", + "filename" : "Icon-App-29x29@1x.png", + "scale" : "1x" + }, + { + "size" : "29x29", + "idiom" : "ipad", + "filename" : "Icon-App-29x29@2x.png", + "scale" : "2x" + }, + { + "size" : "40x40", + "idiom" : "ipad", + "filename" : "Icon-App-40x40@1x.png", + "scale" : "1x" + }, + { + "size" : "40x40", + "idiom" : "ipad", + "filename" : "Icon-App-40x40@2x.png", + "scale" : "2x" + }, + { + "size" : "76x76", + "idiom" : "ipad", + "filename" : "Icon-App-76x76@1x.png", + "scale" : "1x" + }, + { + "size" : "76x76", + "idiom" : "ipad", + "filename" : "Icon-App-76x76@2x.png", + "scale" : "2x" + }, + { + "size" : "83.5x83.5", + "idiom" : "ipad", + "filename" : "Icon-App-83.5x83.5@2x.png", + "scale" : "2x" + }, + { + "size" : "1024x1024", + "idiom" : "ios-marketing", + "filename" : "Icon-App-1024x1024@1x.png", + "scale" : "1x" + } + ], + "info" : { + "version" : 1, + "author" : "xcode" + } +} diff --git a/packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png new file mode 100644 index 0000000000000000000000000000000000000000..dc9ada4725e9b0ddb1deab583e5b5102493aa332 GIT binary patch literal 10932 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 literal 0 HcmV?d00001 diff --git a/packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png new file mode 100644 index 0000000000000000000000000000000000000000..f091b6b0bca859a3f474b03065bef75ba58a9e4c GIT binary patch literal 1588 zcmV-42Fv-0P)C1SqPt}wig>|5Crh^=oyX$BK<}M8eLU3e2hGT;=G|!_SP)7zNI6fqUMB=)y zRAZ>eDe#*r`yDAVgB_R*LB*MAc)8(b{g{9McCXW!lq7r(btRoB9!8B-#AI6JMb~YFBEvdsV)`mEQO^&#eRKx@b&x- z5lZm*!WfD8oCLzfHGz#u7sT0^VLMI1MqGxF^v+`4YYnVYgk*=kU?HsSz{v({E3lb9 z>+xILjBN)t6`=g~IBOelGQ(O990@BfXf(DRI5I$qN$0Gkz-FSc$3a+2fX$AedL4u{ z4V+5Ong(9LiGcIKW?_352sR;LtDPmPJXI{YtT=O8=76o9;*n%_m|xo!i>7$IrZ-{l z-x3`7M}qzHsPV@$v#>H-TpjDh2UE$9g6sysUREDy_R(a)>=eHw-WAyfIN z*qb!_hW>G)Tu8nSw9yn#3wFMiLcfc4pY0ek1}8(NqkBR@t4{~oC>ryc-h_ByH(Cg5 z>ao-}771+xE3um9lWAY1FeQFxowa1(!J(;Jg*wrg!=6FdRX+t_<%z&d&?|Bn){>zm zZQj(aA_HeBY&OC^jj*)N`8fa^ePOU72VpInJoI1?`ty#lvlNzs(&MZX+R%2xS~5Kh zX*|AU4QE#~SgPzOXe9>tRj>hjU@c1k5Y_mW*Jp3fI;)1&g3j|zDgC+}2Q_v%YfDax z!?umcN^n}KYQ|a$Lr+51Nf9dkkYFSjZZjkma$0KOj+;aQ&721~t7QUKx61J3(P4P1 zstI~7-wOACnWP4=8oGOwz%vNDqD8w&Q`qcNGGrbbf&0s9L0De{4{mRS?o0MU+nR_! zrvshUau0G^DeMhM_v{5BuLjb#Hh@r23lDAk8oF(C+P0rsBpv85EP>4CVMx#04MOfG z;P%vktHcXwTj~+IE(~px)3*MY77e}p#|c>TD?sMatC0Tu4iKKJ0(X8jxQY*gYtxsC z(zYC$g|@+I+kY;dg_dE>scBf&bP1Nc@Hz<3R)V`=AGkc;8CXqdi=B4l2k|g;2%#m& z*jfX^%b!A8#bI!j9-0Fi0bOXl(-c^AB9|nQaE`*)Hw+o&jS9@7&Gov#HbD~#d{twV zXd^Tr^mWLfFh$@Dr$e;PBEz4(-2q1FF0}c;~B5sA}+Q>TOoP+t>wf)V9Iy=5ruQa;z)y zI9C9*oUga6=hxw6QasLPnee@3^Rr*M{CdaL5=R41nLs(AHk_=Y+A9$2&H(B7!_pURs&8aNw7?`&Z&xY_Ye z)~D5Bog^td-^QbUtkTirdyK^mTHAOuptDflut!#^lnKqU md>ggs(5nOWAqO?umG&QVYK#ibz}*4>0000U6E9hRK9^#O7(mu>ETqrXGsduA8$)?`v2seloOCza43C{NQ$$gAOH**MCn0Q?+L7dl7qnbRdqZ8LSVp1ItDxhxD?t@5_yHg6A8yI zC*%Wgg22K|8E#!~cTNYR~@Y9KepMPrrB8cABapAFa=`H+UGhkXUZV1GnwR1*lPyZ;*K(i~2gp|@bzp8}og7e*#% zEnr|^CWdVV!-4*Y_7rFvlww2Ze+>j*!Z!pQ?2l->4q#nqRu9`ELo6RMS5=br47g_X zRw}P9a7RRYQ%2Vsd0Me{_(EggTnuN6j=-?uFS6j^u69elMypu?t>op*wBx<=Wx8?( ztpe^(fwM6jJX7M-l*k3kEpWOl_Vk3@(_w4oc}4YF4|Rt=2V^XU?#Yz`8(e?aZ@#li0n*=g^qOcVpd-Wbok=@b#Yw zqn8u9a)z>l(1kEaPYZ6hwubN6i<8QHgsu0oE) ziJ(p;Wxm>sf!K+cw>R-(^Y2_bahB+&KI9y^);#0qt}t-$C|Bo71lHi{_+lg#f%RFy z0um=e3$K3i6K{U_4K!EX?F&rExl^W|G8Z8;`5z-k}OGNZ0#WVb$WCpQu-_YsiqKP?BB# vzVHS-CTUF4Ozn5G+mq_~Qqto~ahA+K`|lyv3(-e}00000NkvXXu0mjfd`9t{ literal 0 HcmV?d00001 diff --git a/packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png new file mode 100644 index 0000000000000000000000000000000000000000..d0ef06e7edb86cdfe0d15b4b0d98334a86163658 GIT binary patch literal 1716 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 literal 0 HcmV?d00001 diff --git a/packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png new file mode 100644 index 0000000000000000000000000000000000000000..c8f9ed8f5cee1c98386d13b17e89f719e83555b2 GIT binary patch literal 1895 zcmV-t2blPYP)FQtfgmafE#=YDCq`qUBt#QpG%*H6QHY765~R=q zZ6iudfM}q!Pz#~9JgOi8QJ|DSu?1-*(kSi1K4#~5?#|rh?sS)(-JQqX*}ciXJ56_H zdw=^s_srbAdqxlvGyrgGet#6T7_|j;95sL%MtM;q86vOxKM$f#puR)Bjv9Zvz9-di zXOTSsZkM83)E9PYBXC<$6(|>lNLVBb&&6y{NByFCp%6+^ALR@NCTse_wqvNmSWI-m z!$%KlHFH2omF!>#%1l3LTZg(s7eof$7*xB)ZQ0h?ejh?Ta9fDv59+u#MokW+1t8Zb zgHv%K(u9G^Lv`lh#f3<6!JVTL3(dCpxHbnbA;kKqQyd1~^Xe0VIaYBSWm6nsr;dFj z4;G-RyL?cYgsN1{L4ZFFNa;8)Rv0fM0C(~Tkit94 zz#~A)59?QjD&pAPSEQ)p8gP|DS{ng)j=2ux)_EzzJ773GmQ_Cic%3JJhC0t2cx>|v zJcVusIB!%F90{+}8hG3QU4KNeKmK%T>mN57NnCZ^56=0?&3@!j>a>B43pi{!u z7JyDj7`6d)qVp^R=%j>UIY6f+3`+qzIc!Y_=+uN^3BYV|o+$vGo-j-Wm<10%A=(Yk^beI{t%ld@yhKjq0iNjqN4XMGgQtbKubPM$JWBz}YA65k%dm*awtC^+f;a-x4+ddbH^7iDWGg&N0n#MW{kA|=8iMUiFYvMoDY@sPC#t$55gn6ykUTPAr`a@!(;np824>2xJthS z*ZdmT`g5-`BuJs`0LVhz+D9NNa3<=6m;cQLaF?tCv8)zcRSh66*Z|vXhG@$I%U~2l z?`Q zykI#*+rQ=z6Jm=Bui-SfpDYLA=|vzGE(dYm=OC8XM&MDo7ux4UF1~0J1+i%aCUpRe zt3L_uNyQ*cE(38Uy03H%I*)*Bh=Lb^Xj3?I^Hnbeq72(EOK^Y93CNp*uAA{5Lc=ky zx=~RKa4{iTm{_>_vSCm?$Ej=i6@=m%@VvAITnigVg{&@!7CDgs908761meDK5azA} z4?=NOH|PdvabgJ&fW2{Mo$Q0CcD8Qc84%{JPYt5EiG{MdLIAeX%T=D7NIP4%Hw}p9 zg)==!2Lbp#j{u_}hMiao9=!VSyx0gHbeCS`;q&vzeq|fs`y&^X-lso(Ls@-706qmA z7u*T5PMo_w3{se1t2`zWeO^hOvTsohG_;>J0wVqVe+n)AbQCx)yh9;w+J6?NF5Lmo zecS@ieAKL8%bVd@+-KT{yI|S}O>pYckUFs;ry9Ow$CD@ztz5K-*D$^{i(_1llhSh^ zEkL$}tsQt5>QA^;QgjgIfBDmcOgi5YDyu?t6vSnbp=1+@6D& z5MJ}B8q;bRlVoxasyhcUF1+)o`&3r0colr}QJ3hcSdLu;9;td>kf@Tcn<@9sIx&=m z;AD;SCh95=&p;$r{Xz3iWCO^MX83AGJ(yH&eTXgv|0=34#-&WAmw{)U7OU9!Wz^!7 zZ%jZFi@JR;>Mhi7S>V7wQ176|FdW2m?&`qa(ScO^CFPR80HucLHOTy%5s*HR0^8)i h0WYBP*#0Ks^FNSabJA*5${_#%002ovPDHLkV1oKhTl@e3 literal 0 HcmV?d00001 diff --git a/packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png new file mode 100644 index 0000000000000000000000000000000000000000..a6d6b8609df07bf62e5100a53a01510388bd2b22 GIT binary patch literal 2665 zcmV-v3YPVWP)oFh3q0MFesq&64WThn3$;G69TfjsAv=f2G9}p zgSx99+!YV6qME!>9MD13x)k(+XE7W?_O4LoLb5ND8 zaV{9+P@>42xDfRiYBMSgD$0!vssptcb;&?u9u(LLBKmkZ>RMD=kvD3h`sk6!QYtBa ztlZI#nu$8lJ^q2Z79UTgZe>BU73(Aospiq+?SdMt8lDZ;*?@tyWVZVS_Q7S&*tJaiRlJ z+aSMOmbg3@h5}v;A*c8SbqM3icg-`Cnwl;7Ts%A1RkNIp+Txl-Ckkvg4oxrqGA5ewEgYqwtECD<_3Egu)xGllKt&J8g&+=ac@Jq4-?w6M3b*>w5 z69N3O%=I^6&UL5gZ!}trC7bUj*12xLdkNs~Bz4QdJJ*UDZox2UGR}SNg@lmOvhCc~ z*f_UeXv(=#I#*7>VZx2ObEN~UoGUTl=-@)E;YtCRZ>SVp$p9yG5hEFZ!`wI!spd)n zSk+vK0Vin7FL{7f&6OB%f;SH22dtbcF<|9fi2Fp%q4kxL!b1#l^)8dUwJ zwEf{(wJj@8iYDVnKB`eSU+;ml-t2`@%_)0jDM`+a46xhDbBj2+&Ih>1A>6aky#(-SYyE{R3f#y57wfLs z6w1p~$bp;6!9DX$M+J~S@D6vJAaElETnsX4h9a5tvPhC3L@qB~bOzkL@^z0k_hS{T4PF*TDrgdXp+dzsE? z>V|VR035Pl9n5&-RePFdS{7KAr2vPOqR9=M$vXA1Yy5>w;EsF`;OK{2pkn-kpp9Pw z)r;5JfJKKaT$4qCb{TaXHjb$QA{y0EYy*+b1XI;6Ah- zw13P)xT`>~eFoJC!>{2XL(a_#upp3gaR1#5+L(Jmzp4TBnx{~WHedpJ1ch8JFk~Sw z>F+gN+i+VD?gMXwcIhn8rz`>e>J^TI3E-MW>f}6R-pL}>WMOa0k#jN+`RyUVUC;#D zg|~oS^$6%wpF{^Qr+}X>0PKcr3Fc&>Z>uv@C);pwDs@2bZWhYP!rvGx?_|q{d`t<*XEb#=aOb=N+L@CVBGqImZf&+a zCQEa3$~@#kC);pasdG=f6tuIi0PO-y&tvX%>Mv=oY3U$nD zJ#gMegnQ46pq+3r=;zmgcG+zRc9D~c>z+jo9&D+`E6$LmyFqlmCYw;-Zooma{sR@~ z)_^|YL1&&@|GXo*pivH7k!msl+$Sew3%XJnxajt0K%3M6Bd&YFNy9}tWG^aovK2eX z1aL1%7;KRDrA@eG-Wr6w+;*H_VD~qLiVI`{_;>o)k`{8xa3EJT1O_>#iy_?va0eR? zDV=N%;Zjb%Z2s$@O>w@iqt!I}tLjGk!=p`D23I}N4Be@$(|iSA zf3Ih7b<{zqpDB4WF_5X1(peKe+rASze%u8eKLn#KKXt;UZ+Adf$_TO+vTqshLLJ5c z52HucO=lrNVae5XWOLm!V@n-ObU11!b+DN<$RuU+YsrBq*lYT;?AwJpmNKniF0Q1< zJCo>Q$=v$@&y=sj6{r!Y&y&`0$-I}S!H_~pI&2H8Z1C|BX4VgZ^-! zje3-;x0PBD!M`v*J_)rL^+$<1VJhH*2Fi~aA7s&@_rUHYJ9zD=M%4AFQ`}k8OC$9s XsPq=LnkwKG00000NkvXXu0mjfhAk5^ literal 0 HcmV?d00001 diff --git a/packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png new file mode 100644 index 0000000000000000000000000000000000000000..a6d6b8609df07bf62e5100a53a01510388bd2b22 GIT binary patch literal 2665 zcmV-v3YPVWP)oFh3q0MFesq&64WThn3$;G69TfjsAv=f2G9}p zgSx99+!YV6qME!>9MD13x)k(+XE7W?_O4LoLb5ND8 zaV{9+P@>42xDfRiYBMSgD$0!vssptcb;&?u9u(LLBKmkZ>RMD=kvD3h`sk6!QYtBa ztlZI#nu$8lJ^q2Z79UTgZe>BU73(Aospiq+?SdMt8lDZ;*?@tyWVZVS_Q7S&*tJaiRlJ z+aSMOmbg3@h5}v;A*c8SbqM3icg-`Cnwl;7Ts%A1RkNIp+Txl-Ckkvg4oxrqGA5ewEgYqwtECD<_3Egu)xGllKt&J8g&+=ac@Jq4-?w6M3b*>w5 z69N3O%=I^6&UL5gZ!}trC7bUj*12xLdkNs~Bz4QdJJ*UDZox2UGR}SNg@lmOvhCc~ z*f_UeXv(=#I#*7>VZx2ObEN~UoGUTl=-@)E;YtCRZ>SVp$p9yG5hEFZ!`wI!spd)n zSk+vK0Vin7FL{7f&6OB%f;SH22dtbcF<|9fi2Fp%q4kxL!b1#l^)8dUwJ zwEf{(wJj@8iYDVnKB`eSU+;ml-t2`@%_)0jDM`+a46xhDbBj2+&Ih>1A>6aky#(-SYyE{R3f#y57wfLs z6w1p~$bp;6!9DX$M+J~S@D6vJAaElETnsX4h9a5tvPhC3L@qB~bOzkL@^z0k_hS{T4PF*TDrgdXp+dzsE? z>V|VR035Pl9n5&-RePFdS{7KAr2vPOqR9=M$vXA1Yy5>w;EsF`;OK{2pkn-kpp9Pw z)r;5JfJKKaT$4qCb{TaXHjb$QA{y0EYy*+b1XI;6Ah- zw13P)xT`>~eFoJC!>{2XL(a_#upp3gaR1#5+L(Jmzp4TBnx{~WHedpJ1ch8JFk~Sw z>F+gN+i+VD?gMXwcIhn8rz`>e>J^TI3E-MW>f}6R-pL}>WMOa0k#jN+`RyUVUC;#D zg|~oS^$6%wpF{^Qr+}X>0PKcr3Fc&>Z>uv@C);pwDs@2bZWhYP!rvGx?_|q{d`t<*XEb#=aOb=N+L@CVBGqImZf&+a zCQEa3$~@#kC);pasdG=f6tuIi0PO-y&tvX%>Mv=oY3U$nD zJ#gMegnQ46pq+3r=;zmgcG+zRc9D~c>z+jo9&D+`E6$LmyFqlmCYw;-Zooma{sR@~ z)_^|YL1&&@|GXo*pivH7k!msl+$Sew3%XJnxajt0K%3M6Bd&YFNy9}tWG^aovK2eX z1aL1%7;KRDrA@eG-Wr6w+;*H_VD~qLiVI`{_;>o)k`{8xa3EJT1O_>#iy_?va0eR? zDV=N%;Zjb%Z2s$@O>w@iqt!I}tLjGk!=p`D23I}N4Be@$(|iSA zf3Ih7b<{zqpDB4WF_5X1(peKe+rASze%u8eKLn#KKXt;UZ+Adf$_TO+vTqshLLJ5c z52HucO=lrNVae5XWOLm!V@n-ObU11!b+DN<$RuU+YsrBq*lYT;?AwJpmNKniF0Q1< zJCo>Q$=v$@&y=sj6{r!Y&y&`0$-I}S!H_~pI&2H8Z1C|BX4VgZ^-! zje3-;x0PBD!M`v*J_)rL^+$<1VJhH*2Fi~aA7s&@_rUHYJ9zD=M%4AFQ`}k8OC$9s XsPq=LnkwKG00000NkvXXu0mjfhAk5^ literal 0 HcmV?d00001 diff --git a/packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png new file mode 100644 index 0000000000000000000000000000000000000000..75b2d164a5a98e212cca15ea7bf2ab5de5108680 GIT binary patch literal 3831 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 literal 0 HcmV?d00001 diff --git a/packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png new file mode 100644 index 0000000000000000000000000000000000000000..c4df70d39da7941ef3f6dcb7f06a192d8dcb308d GIT binary patch literal 1888 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 iW8Zci7-kcv6Uzs@r-FtIZ-&5|)J Q1PU{Fy85}Sb4q9e0B4a5jsO4v literal 0 HcmV?d00001 diff --git a/packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png new file mode 100644 index 0000000000000000000000000000000000000000..9da19eacad3b03bb08bbddbbf4ac48dd78b3d838 GIT binary patch literal 68 zcmeAS@N?(olHy`uVBq!ia0vp^j3CUx0wlM}@Gt=>Zci7-kcv6Uzs@r-FtIZ-&5|)J Q1PU{Fy85}Sb4q9e0B4a5jsO4v literal 0 HcmV?d00001 diff --git a/packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png new file mode 100644 index 0000000000000000000000000000000000000000..9da19eacad3b03bb08bbddbbf4ac48dd78b3d838 GIT binary patch literal 68 zcmeAS@N?(olHy`uVBq!ia0vp^j3CUx0wlM}@Gt=>Zci7-kcv6Uzs@r-FtIZ-&5|)J Q1PU{Fy85}Sb4q9e0B4a5jsO4v literal 0 HcmV?d00001 diff --git a/packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md new file mode 100644 index 000000000..89c2725b7 --- /dev/null +++ b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md @@ -0,0 +1,5 @@ +# Launch Screen Assets + +You can customize the launch screen with your own desired assets by replacing the image files in this directory. + +You can also do it by opening your Flutter project's Xcode project with `open ios/Runner.xcworkspace`, selecting `Runner/Assets.xcassets` in the Project Navigator and dropping in the desired images. \ No newline at end of file diff --git a/packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner/Base.lproj/LaunchScreen.storyboard b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner/Base.lproj/LaunchScreen.storyboard new file mode 100644 index 000000000..f2e259c7c --- /dev/null +++ b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner/Base.lproj/LaunchScreen.storyboard @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner/Base.lproj/Main.storyboard b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner/Base.lproj/Main.storyboard new file mode 100644 index 000000000..f3c28516f --- /dev/null +++ b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner/Base.lproj/Main.storyboard @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner/Info.plist b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner/Info.plist new file mode 100644 index 000000000..5baf7a1cc --- /dev/null +++ b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner/Info.plist @@ -0,0 +1,47 @@ + + + + + CFBundleDevelopmentRegion + $(DEVELOPMENT_LANGUAGE) + CFBundleDisplayName + Example + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + example + CFBundlePackageType + APPL + CFBundleShortVersionString + $(FLUTTER_BUILD_NAME) + CFBundleSignature + ???? + CFBundleVersion + $(FLUTTER_BUILD_NUMBER) + LSRequiresIPhoneOS + + UILaunchStoryboardName + LaunchScreen + UIMainStoryboardFile + Main + UISupportedInterfaceOrientations + + UIInterfaceOrientationPortrait + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + UISupportedInterfaceOrientations~ipad + + UIInterfaceOrientationPortrait + UIInterfaceOrientationPortraitUpsideDown + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + UIViewControllerBasedStatusBarAppearance + + + diff --git a/packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner/Runner-Bridging-Header.h b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner/Runner-Bridging-Header.h new file mode 100644 index 000000000..308a2a560 --- /dev/null +++ b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/ios/Runner/Runner-Bridging-Header.h @@ -0,0 +1 @@ +#import "GeneratedPluginRegistrant.h" diff --git a/packages/syncfusion_flutter_pdfviewer_platform_interface/example/web/favicon.png b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/web/favicon.png new file mode 100644 index 0000000000000000000000000000000000000000..8aaa46ac1ae21512746f852a42ba87e4165dfdd1 GIT binary patch literal 917 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|I14-?iy0X7 zltGxWVyS%@P(fs7NJL45ua8x7ey(0(N`6wRUPW#JP&EUCO@$SZnVVXYs8ErclUHn2 zVXFjIVFhG^g!Ppaz)DK8ZIvQ?0~DO|i&7O#^-S~(l1AfjnEK zjFOT9D}DX)@^Za$W4-*MbbUihOG|wNBYh(yU7!lx;>x^|#0uTKVr7USFmqf|i<65o z3raHc^AtelCMM;Vme?vOfh>Xph&xL%(-1c06+^uR^q@XSM&D4+Kp$>4P^%3{)XKjo zGZknv$b36P8?Z_gF{nK@`XI}Z90TzwSQO}0J1!f2c(B=V`5aP@1P1a|PZ!4!3&Gl8 zTYqUsf!gYFyJnXpu0!n&N*SYAX-%d(5gVjrHJWqXQshj@!Zm{!01WsQrH~9=kTxW#6SvuapgMqt>$=j#%eyGrQzr zP{L-3gsMA^$I1&gsBAEL+vxi1*Igl=8#8`5?A-T5=z-sk46WA1IUT)AIZHx1rdUrf zVJrJn<74DDw`j)Ki#gt}mIT-Q`XRa2-jQXQoI%w`nb|XblvzK${ZzlV)m-XcwC(od z71_OEC5Bt9GEXosOXaPTYOia#R4ID2TiU~`zVMl08TV_C%DnU4^+HE>9(CE4D6?Fz oujB08i7adh9xk7*FX66dWH6F5TM;?E2b5PlUHx3vIVCg!0Dx9vYXATM literal 0 HcmV?d00001 diff --git a/packages/syncfusion_flutter_pdfviewer_platform_interface/example/web/icons/Icon-192.png b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/web/icons/Icon-192.png new file mode 100644 index 0000000000000000000000000000000000000000..b749bfef07473333cf1dd31e9eed89862a5d52aa GIT binary patch literal 5292 zcmZ`-2T+sGz6~)*FVZ`aW+(v>MIm&M-g^@e2u-B-DoB?qO+b1Tq<5uCCv>ESfRum& zp%X;f!~1{tzL__3=gjVJ=j=J>+nMj%ncXj1Q(b|Ckbw{Y0FWpt%4y%$uD=Z*c-x~o zE;IoE;xa#7Ll5nj-e4CuXB&G*IM~D21rCP$*xLXAK8rIMCSHuSu%bL&S3)8YI~vyp@KBu9Ph7R_pvKQ@xv>NQ`dZp(u{Z8K3yOB zn7-AR+d2JkW)KiGx0hosml;+eCXp6+w%@STjFY*CJ?udJ64&{BCbuebcuH;}(($@@ znNlgBA@ZXB)mcl9nbX#F!f_5Z=W>0kh|UVWnf!At4V*LQP%*gPdCXd6P@J4Td;!Ur z<2ZLmwr(NG`u#gDEMP19UcSzRTL@HsK+PnIXbVBT@oHm53DZr?~V(0{rsalAfwgo zEh=GviaqkF;}F_5-yA!1u3!gxaR&Mj)hLuj5Q-N-@Lra{%<4ONja8pycD90&>yMB` zchhd>0CsH`^|&TstH-8+R`CfoWqmTTF_0?zDOY`E`b)cVi!$4xA@oO;SyOjJyP^_j zx^@Gdf+w|FW@DMdOi8=4+LJl$#@R&&=UM`)G!y%6ZzQLoSL%*KE8IO0~&5XYR9 z&N)?goEiWA(YoRfT{06&D6Yuu@Qt&XVbuW@COb;>SP9~aRc+z`m`80pB2o%`#{xD@ zI3RAlukL5L>px6b?QW1Ac_0>ew%NM!XB2(H+1Y3AJC?C?O`GGs`331Nd4ZvG~bMo{lh~GeL zSL|tT*fF-HXxXYtfu5z+T5Mx9OdP7J4g%@oeC2FaWO1D{=NvL|DNZ}GO?O3`+H*SI z=grGv=7dL{+oY0eJFGO!Qe(e2F?CHW(i!!XkGo2tUvsQ)I9ev`H&=;`N%Z{L zO?vV%rDv$y(@1Yj@xfr7Kzr<~0{^T8wM80xf7IGQF_S-2c0)0D6b0~yD7BsCy+(zL z#N~%&e4iAwi4F$&dI7x6cE|B{f@lY5epaDh=2-(4N05VO~A zQT3hanGy_&p+7Fb^I#ewGsjyCEUmSCaP6JDB*=_()FgQ(-pZ28-{qx~2foO4%pM9e z*_63RT8XjgiaWY|*xydf;8MKLd{HnfZ2kM%iq}fstImB-K6A79B~YoPVa@tYN@T_$ zea+9)<%?=Fl!kd(Y!G(-o}ko28hg2!MR-o5BEa_72uj7Mrc&{lRh3u2%Y=Xk9^-qa zBPWaD=2qcuJ&@Tf6ue&)4_V*45=zWk@Z}Q?f5)*z)-+E|-yC4fs5CE6L_PH3=zI8p z*Z3!it{1e5_^(sF*v=0{`U9C741&lub89gdhKp|Y8CeC{_{wYK-LSbp{h)b~9^j!s z7e?Y{Z3pZv0J)(VL=g>l;<}xk=T*O5YR|hg0eg4u98f2IrA-MY+StQIuK-(*J6TRR z|IM(%uI~?`wsfyO6Tgmsy1b3a)j6M&-jgUjVg+mP*oTKdHg?5E`!r`7AE_#?Fc)&a z08KCq>Gc=ne{PCbRvs6gVW|tKdcE1#7C4e`M|j$C5EYZ~Y=jUtc zj`+?p4ba3uy7><7wIokM79jPza``{Lx0)zGWg;FW1^NKY+GpEi=rHJ+fVRGfXO zPHV52k?jxei_!YYAw1HIz}y8ZMwdZqU%ESwMn7~t zdI5%B;U7RF=jzRz^NuY9nM)&<%M>x>0(e$GpU9th%rHiZsIT>_qp%V~ILlyt^V`=d z!1+DX@ah?RnB$X!0xpTA0}lN@9V-ePx>wQ?-xrJr^qDlw?#O(RsXeAvM%}rg0NT#t z!CsT;-vB=B87ShG`GwO;OEbeL;a}LIu=&@9cb~Rsx(ZPNQ!NT7H{@j0e(DiLea>QD zPmpe90gEKHEZ8oQ@6%E7k-Ptn#z)b9NbD@_GTxEhbS+}Bb74WUaRy{w;E|MgDAvHw zL)ycgM7mB?XVh^OzbC?LKFMotw3r@i&VdUV%^Efdib)3@soX%vWCbnOyt@Y4swW925@bt45y0HY3YI~BnnzZYrinFy;L?2D3BAL`UQ zEj))+f>H7~g8*VuWQ83EtGcx`hun$QvuurSMg3l4IP8Fe`#C|N6mbYJ=n;+}EQm;< z!!N=5j1aAr_uEnnzrEV%_E|JpTb#1p1*}5!Ce!R@d$EtMR~%9# zd;h8=QGT)KMW2IKu_fA_>p_und#-;Q)p%%l0XZOXQicfX8M~7?8}@U^ihu;mizj)t zgV7wk%n-UOb z#!P5q?Ex+*Kx@*p`o$q8FWL*E^$&1*!gpv?Za$YO~{BHeGY*5%4HXUKa_A~~^d z=E*gf6&+LFF^`j4$T~dR)%{I)T?>@Ma?D!gi9I^HqvjPc3-v~=qpX1Mne@*rzT&Xw zQ9DXsSV@PqpEJO-g4A&L{F&;K6W60D!_vs?Vx!?w27XbEuJJP&);)^+VF1nHqHBWu z^>kI$M9yfOY8~|hZ9WB!q-9u&mKhEcRjlf2nm_@s;0D#c|@ED7NZE% zzR;>P5B{o4fzlfsn3CkBK&`OSb-YNrqx@N#4CK!>bQ(V(D#9|l!e9(%sz~PYk@8zt zPN9oK78&-IL_F zhsk1$6p;GqFbtB^ZHHP+cjMvA0(LqlskbdYE_rda>gvQLTiqOQ1~*7lg%z*&p`Ry& zRcG^DbbPj_jOKHTr8uk^15Boj6>hA2S-QY(W-6!FIq8h$<>MI>PYYRenQDBamO#Fv zAH5&ImqKBDn0v5kb|8i0wFhUBJTpT!rB-`zK)^SNnRmLraZcPYK7b{I@+}wXVdW-{Ps17qdRA3JatEd?rPV z4@}(DAMf5EqXCr4-B+~H1P#;t@O}B)tIJ(W6$LrK&0plTmnPpb1TKn3?f?Kk``?D+ zQ!MFqOX7JbsXfQrz`-M@hq7xlfNz;_B{^wbpG8des56x(Q)H)5eLeDwCrVR}hzr~= zM{yXR6IM?kXxauLza#@#u?Y|o;904HCqF<8yT~~c-xyRc0-vxofnxG^(x%>bj5r}N zyFT+xnn-?B`ohA>{+ZZQem=*Xpqz{=j8i2TAC#x-m;;mo{{sLB_z(UoAqD=A#*juZ zCv=J~i*O8;F}A^Wf#+zx;~3B{57xtoxC&j^ie^?**T`WT2OPRtC`xj~+3Kprn=rVM zVJ|h5ux%S{dO}!mq93}P+h36mZ5aZg1-?vhL$ke1d52qIiXSE(llCr5i=QUS?LIjc zV$4q=-)aaR4wsrQv}^shL5u%6;`uiSEs<1nG^?$kl$^6DL z43CjY`M*p}ew}}3rXc7Xck@k41jx}c;NgEIhKZ*jsBRZUP-x2cm;F1<5$jefl|ppO zmZd%%?gMJ^g9=RZ^#8Mf5aWNVhjAS^|DQO+q$)oeob_&ZLFL(zur$)); zU19yRm)z<4&4-M}7!9+^Wl}Uk?`S$#V2%pQ*SIH5KI-mn%i;Z7-)m$mN9CnI$G7?# zo`zVrUwoSL&_dJ92YhX5TKqaRkfPgC4=Q&=K+;_aDs&OU0&{WFH}kKX6uNQC6%oUH z2DZa1s3%Vtk|bglbxep-w)PbFG!J17`<$g8lVhqD2w;Z0zGsh-r zxZ13G$G<48leNqR!DCVt9)@}(zMI5w6Wo=N zpP1*3DI;~h2WDWgcKn*f!+ORD)f$DZFwgKBafEZmeXQMAsq9sxP9A)7zOYnkHT9JU zRA`umgmP9d6=PHmFIgx=0$(sjb>+0CHG)K@cPG{IxaJ&Ueo8)0RWgV9+gO7+Bl1(F z7!BslJ2MP*PWJ;x)QXbR$6jEr5q3 z(3}F@YO_P1NyTdEXRLU6fp?9V2-S=E+YaeLL{Y)W%6`k7$(EW8EZSA*(+;e5@jgD^I zaJQ2|oCM1n!A&-8`;#RDcZyk*+RPkn_r8?Ak@agHiSp*qFNX)&i21HE?yuZ;-C<3C zwJGd1lx5UzViP7sZJ&|LqH*mryb}y|%AOw+v)yc`qM)03qyyrqhX?ub`Cjwx2PrR! z)_z>5*!*$x1=Qa-0uE7jy0z`>|Ni#X+uV|%_81F7)b+nf%iz=`fF4g5UfHS_?PHbr zB;0$bK@=di?f`dS(j{l3-tSCfp~zUuva+=EWxJcRfp(<$@vd(GigM&~vaYZ0c#BTs z3ijkxMl=vw5AS&DcXQ%eeKt!uKvh2l3W?&3=dBHU=Gz?O!40S&&~ei2vg**c$o;i89~6DVns zG>9a*`k5)NI9|?W!@9>rzJ;9EJ=YlJTx1r1BA?H`LWijk(rTax9(OAu;q4_wTj-yj z1%W4GW&K4T=uEGb+E!>W0SD_C0RR91 literal 0 HcmV?d00001 diff --git a/packages/syncfusion_flutter_pdfviewer_platform_interface/example/web/icons/Icon-512.png b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/web/icons/Icon-512.png new file mode 100644 index 0000000000000000000000000000000000000000..88cfd48dff1169879ba46840804b412fe02fefd6 GIT binary patch literal 8252 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 literal 0 HcmV?d00001 diff --git a/packages/syncfusion_flutter_pdfviewer_platform_interface/example/web/index.html b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/web/index.html new file mode 100644 index 000000000..bd74f3c23 --- /dev/null +++ b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/web/index.html @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + example + + + + + + + + + + + \ No newline at end of file diff --git a/packages/syncfusion_flutter_pdfviewer_platform_interface/example/web/manifest.json b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/web/manifest.json new file mode 100644 index 000000000..096edf8fe --- /dev/null +++ b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/web/manifest.json @@ -0,0 +1,35 @@ +{ + "name": "example", + "short_name": "example", + "start_url": ".", + "display": "standalone", + "background_color": "#0175C2", + "theme_color": "#0175C2", + "description": "A new Flutter project.", + "orientation": "portrait-primary", + "prefer_related_applications": false, + "icons": [ + { + "src": "icons/Icon-192.png", + "sizes": "192x192", + "type": "image/png" + }, + { + "src": "icons/Icon-512.png", + "sizes": "512x512", + "type": "image/png" + }, + { + "src": "icons/Icon-maskable-192.png", + "sizes": "192x192", + "type": "image/png", + "purpose": "maskable" + }, + { + "src": "icons/Icon-maskable-512.png", + "sizes": "512x512", + "type": "image/png", + "purpose": "maskable" + } + ] +} diff --git a/packages/syncfusion_flutter_pdfviewer_platform_interface/example/windows/.gitignore b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/windows/.gitignore new file mode 100644 index 000000000..d492d0d98 --- /dev/null +++ b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/windows/.gitignore @@ -0,0 +1,17 @@ +flutter/ephemeral/ + +# Visual Studio user-specific files. +*.suo +*.user +*.userosscache +*.sln.docstates + +# Visual Studio build-related files. +x64/ +x86/ + +# Visual Studio cache files +# files ending in .cache can be ignored +*.[Cc]ache +# but keep track of directories ending in .cache +!*.[Cc]ache/ diff --git a/packages/syncfusion_flutter_pdfviewer_platform_interface/example/windows/CMakeLists.txt b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/windows/CMakeLists.txt new file mode 100644 index 000000000..1633297a0 --- /dev/null +++ b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/windows/CMakeLists.txt @@ -0,0 +1,95 @@ +cmake_minimum_required(VERSION 3.14) +project(example LANGUAGES CXX) + +set(BINARY_NAME "example") + +cmake_policy(SET CMP0063 NEW) + +set(CMAKE_INSTALL_RPATH "$ORIGIN/lib") + +# Configure build options. +get_property(IS_MULTICONFIG GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG) +if(IS_MULTICONFIG) + set(CMAKE_CONFIGURATION_TYPES "Debug;Profile;Release" + CACHE STRING "" FORCE) +else() + if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES) + set(CMAKE_BUILD_TYPE "Debug" CACHE + STRING "Flutter build mode" FORCE) + set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS + "Debug" "Profile" "Release") + endif() +endif() + +set(CMAKE_EXE_LINKER_FLAGS_PROFILE "${CMAKE_EXE_LINKER_FLAGS_RELEASE}") +set(CMAKE_SHARED_LINKER_FLAGS_PROFILE "${CMAKE_SHARED_LINKER_FLAGS_RELEASE}") +set(CMAKE_C_FLAGS_PROFILE "${CMAKE_C_FLAGS_RELEASE}") +set(CMAKE_CXX_FLAGS_PROFILE "${CMAKE_CXX_FLAGS_RELEASE}") + +# Use Unicode for all projects. +add_definitions(-DUNICODE -D_UNICODE) + +# Compilation settings that should be applied to most targets. +function(APPLY_STANDARD_SETTINGS TARGET) + target_compile_features(${TARGET} PUBLIC cxx_std_17) + target_compile_options(${TARGET} PRIVATE /W4 /WX /wd"4100") + target_compile_options(${TARGET} PRIVATE /EHsc) + target_compile_definitions(${TARGET} PRIVATE "_HAS_EXCEPTIONS=0") + target_compile_definitions(${TARGET} PRIVATE "$<$:_DEBUG>") +endfunction() + +set(FLUTTER_MANAGED_DIR "${CMAKE_CURRENT_SOURCE_DIR}/flutter") + +# Flutter library and tool build rules. +add_subdirectory(${FLUTTER_MANAGED_DIR}) + +# Application build +add_subdirectory("runner") + +# Generated plugin build rules, which manage building the plugins and adding +# them to the application. +include(flutter/generated_plugins.cmake) + + +# === Installation === +# Support files are copied into place next to the executable, so that it can +# run in place. This is done instead of making a separate bundle (as on Linux) +# so that building and running from within Visual Studio will work. +set(BUILD_BUNDLE_DIR "$") +# Make the "install" step default, as it's required to run. +set(CMAKE_VS_INCLUDE_INSTALL_TO_DEFAULT_BUILD 1) +if(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT) + set(CMAKE_INSTALL_PREFIX "${BUILD_BUNDLE_DIR}" CACHE PATH "..." FORCE) +endif() + +set(INSTALL_BUNDLE_DATA_DIR "${CMAKE_INSTALL_PREFIX}/data") +set(INSTALL_BUNDLE_LIB_DIR "${CMAKE_INSTALL_PREFIX}") + +install(TARGETS ${BINARY_NAME} RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}" + COMPONENT Runtime) + +install(FILES "${FLUTTER_ICU_DATA_FILE}" DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" + COMPONENT Runtime) + +install(FILES "${FLUTTER_LIBRARY}" DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" + COMPONENT Runtime) + +if(PLUGIN_BUNDLED_LIBRARIES) + install(FILES "${PLUGIN_BUNDLED_LIBRARIES}" + DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" + COMPONENT Runtime) +endif() + +# Fully re-copy the assets directory on each build to avoid having stale files +# from a previous install. +set(FLUTTER_ASSET_DIR_NAME "flutter_assets") +install(CODE " + file(REMOVE_RECURSE \"${INSTALL_BUNDLE_DATA_DIR}/${FLUTTER_ASSET_DIR_NAME}\") + " COMPONENT Runtime) +install(DIRECTORY "${PROJECT_BUILD_DIR}/${FLUTTER_ASSET_DIR_NAME}" + DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" COMPONENT Runtime) + +# Install the AOT library on non-Debug builds only. +install(FILES "${AOT_LIBRARY}" DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" + CONFIGURATIONS Profile;Release + COMPONENT Runtime) diff --git a/packages/syncfusion_flutter_pdfviewer_platform_interface/example/windows/flutter/CMakeLists.txt b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/windows/flutter/CMakeLists.txt new file mode 100644 index 000000000..b2e4bd8d6 --- /dev/null +++ b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/windows/flutter/CMakeLists.txt @@ -0,0 +1,103 @@ +cmake_minimum_required(VERSION 3.14) + +set(EPHEMERAL_DIR "${CMAKE_CURRENT_SOURCE_DIR}/ephemeral") + +# Configuration provided via flutter tool. +include(${EPHEMERAL_DIR}/generated_config.cmake) + +# TODO: Move the rest of this into files in ephemeral. See +# https://github.com/flutter/flutter/issues/57146. +set(WRAPPER_ROOT "${EPHEMERAL_DIR}/cpp_client_wrapper") + +# === Flutter Library === +set(FLUTTER_LIBRARY "${EPHEMERAL_DIR}/flutter_windows.dll") + +# Published to parent scope for install step. +set(FLUTTER_LIBRARY ${FLUTTER_LIBRARY} PARENT_SCOPE) +set(FLUTTER_ICU_DATA_FILE "${EPHEMERAL_DIR}/icudtl.dat" PARENT_SCOPE) +set(PROJECT_BUILD_DIR "${PROJECT_DIR}/build/" PARENT_SCOPE) +set(AOT_LIBRARY "${PROJECT_DIR}/build/windows/app.so" PARENT_SCOPE) + +list(APPEND FLUTTER_LIBRARY_HEADERS + "flutter_export.h" + "flutter_windows.h" + "flutter_messenger.h" + "flutter_plugin_registrar.h" + "flutter_texture_registrar.h" +) +list(TRANSFORM FLUTTER_LIBRARY_HEADERS PREPEND "${EPHEMERAL_DIR}/") +add_library(flutter INTERFACE) +target_include_directories(flutter INTERFACE + "${EPHEMERAL_DIR}" +) +target_link_libraries(flutter INTERFACE "${FLUTTER_LIBRARY}.lib") +add_dependencies(flutter flutter_assemble) + +# === Wrapper === +list(APPEND CPP_WRAPPER_SOURCES_CORE + "core_implementations.cc" + "standard_codec.cc" +) +list(TRANSFORM CPP_WRAPPER_SOURCES_CORE PREPEND "${WRAPPER_ROOT}/") +list(APPEND CPP_WRAPPER_SOURCES_PLUGIN + "plugin_registrar.cc" +) +list(TRANSFORM CPP_WRAPPER_SOURCES_PLUGIN PREPEND "${WRAPPER_ROOT}/") +list(APPEND CPP_WRAPPER_SOURCES_APP + "flutter_engine.cc" + "flutter_view_controller.cc" +) +list(TRANSFORM CPP_WRAPPER_SOURCES_APP PREPEND "${WRAPPER_ROOT}/") + +# Wrapper sources needed for a plugin. +add_library(flutter_wrapper_plugin STATIC + ${CPP_WRAPPER_SOURCES_CORE} + ${CPP_WRAPPER_SOURCES_PLUGIN} +) +apply_standard_settings(flutter_wrapper_plugin) +set_target_properties(flutter_wrapper_plugin PROPERTIES + POSITION_INDEPENDENT_CODE ON) +set_target_properties(flutter_wrapper_plugin PROPERTIES + CXX_VISIBILITY_PRESET hidden) +target_link_libraries(flutter_wrapper_plugin PUBLIC flutter) +target_include_directories(flutter_wrapper_plugin PUBLIC + "${WRAPPER_ROOT}/include" +) +add_dependencies(flutter_wrapper_plugin flutter_assemble) + +# Wrapper sources needed for the runner. +add_library(flutter_wrapper_app STATIC + ${CPP_WRAPPER_SOURCES_CORE} + ${CPP_WRAPPER_SOURCES_APP} +) +apply_standard_settings(flutter_wrapper_app) +target_link_libraries(flutter_wrapper_app PUBLIC flutter) +target_include_directories(flutter_wrapper_app PUBLIC + "${WRAPPER_ROOT}/include" +) +add_dependencies(flutter_wrapper_app flutter_assemble) + +# === Flutter tool backend === +# _phony_ is a non-existent file to force this command to run every time, +# since currently there's no way to get a full input/output list from the +# flutter tool. +set(PHONY_OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/_phony_") +set_source_files_properties("${PHONY_OUTPUT}" PROPERTIES SYMBOLIC TRUE) +add_custom_command( + OUTPUT ${FLUTTER_LIBRARY} ${FLUTTER_LIBRARY_HEADERS} + ${CPP_WRAPPER_SOURCES_CORE} ${CPP_WRAPPER_SOURCES_PLUGIN} + ${CPP_WRAPPER_SOURCES_APP} + ${PHONY_OUTPUT} + COMMAND ${CMAKE_COMMAND} -E env + ${FLUTTER_TOOL_ENVIRONMENT} + "${FLUTTER_ROOT}/packages/flutter_tools/bin/tool_backend.bat" + windows-x64 $ + VERBATIM +) +add_custom_target(flutter_assemble DEPENDS + "${FLUTTER_LIBRARY}" + ${FLUTTER_LIBRARY_HEADERS} + ${CPP_WRAPPER_SOURCES_CORE} + ${CPP_WRAPPER_SOURCES_PLUGIN} + ${CPP_WRAPPER_SOURCES_APP} +) diff --git a/packages/syncfusion_flutter_pdfviewer_platform_interface/example/windows/flutter/generated_plugin_registrant.cc b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/windows/flutter/generated_plugin_registrant.cc new file mode 100644 index 000000000..42c63bcfd --- /dev/null +++ b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/windows/flutter/generated_plugin_registrant.cc @@ -0,0 +1,14 @@ +// +// Generated file. Do not edit. +// + +// clang-format off + +#include "generated_plugin_registrant.h" + +#include + +void RegisterPlugins(flutter::PluginRegistry* registry) { + SyncfusionPdfviewerWindowsPluginRegisterWithRegistrar( + registry->GetRegistrarForPlugin("SyncfusionPdfviewerWindowsPlugin")); +} diff --git a/packages/syncfusion_flutter_pdfviewer_platform_interface/example/windows/flutter/generated_plugin_registrant.h b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/windows/flutter/generated_plugin_registrant.h new file mode 100644 index 000000000..dc139d85a --- /dev/null +++ b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/windows/flutter/generated_plugin_registrant.h @@ -0,0 +1,15 @@ +// +// Generated file. Do not edit. +// + +// clang-format off + +#ifndef GENERATED_PLUGIN_REGISTRANT_ +#define GENERATED_PLUGIN_REGISTRANT_ + +#include + +// Registers Flutter plugins. +void RegisterPlugins(flutter::PluginRegistry* registry); + +#endif // GENERATED_PLUGIN_REGISTRANT_ diff --git a/packages/syncfusion_flutter_pdfviewer_platform_interface/example/windows/flutter/generated_plugins.cmake b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/windows/flutter/generated_plugins.cmake new file mode 100644 index 000000000..90342fb89 --- /dev/null +++ b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/windows/flutter/generated_plugins.cmake @@ -0,0 +1,16 @@ +# +# Generated file, do not edit. +# + +list(APPEND FLUTTER_PLUGIN_LIST + syncfusion_pdfviewer_windows +) + +set(PLUGIN_BUNDLED_LIBRARIES) + +foreach(plugin ${FLUTTER_PLUGIN_LIST}) + add_subdirectory(flutter/ephemeral/.plugin_symlinks/${plugin}/windows plugins/${plugin}) + target_link_libraries(${BINARY_NAME} PRIVATE ${plugin}_plugin) + list(APPEND PLUGIN_BUNDLED_LIBRARIES $) + list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${plugin}_bundled_libraries}) +endforeach(plugin) diff --git a/packages/syncfusion_flutter_pdfviewer_platform_interface/example/windows/runner/CMakeLists.txt b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/windows/runner/CMakeLists.txt new file mode 100644 index 000000000..de2d8916b --- /dev/null +++ b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/windows/runner/CMakeLists.txt @@ -0,0 +1,17 @@ +cmake_minimum_required(VERSION 3.14) +project(runner LANGUAGES CXX) + +add_executable(${BINARY_NAME} WIN32 + "flutter_window.cpp" + "main.cpp" + "utils.cpp" + "win32_window.cpp" + "${FLUTTER_MANAGED_DIR}/generated_plugin_registrant.cc" + "Runner.rc" + "runner.exe.manifest" +) +apply_standard_settings(${BINARY_NAME}) +target_compile_definitions(${BINARY_NAME} PRIVATE "NOMINMAX") +target_link_libraries(${BINARY_NAME} PRIVATE flutter flutter_wrapper_app) +target_include_directories(${BINARY_NAME} PRIVATE "${CMAKE_SOURCE_DIR}") +add_dependencies(${BINARY_NAME} flutter_assemble) diff --git a/packages/syncfusion_flutter_pdfviewer_platform_interface/example/windows/runner/Runner.rc b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/windows/runner/Runner.rc new file mode 100644 index 000000000..5fdea291c --- /dev/null +++ b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/windows/runner/Runner.rc @@ -0,0 +1,121 @@ +// Microsoft Visual C++ generated resource script. +// +#pragma code_page(65001) +#include "resource.h" + +#define APSTUDIO_READONLY_SYMBOLS +///////////////////////////////////////////////////////////////////////////// +// +// Generated from the TEXTINCLUDE 2 resource. +// +#include "winres.h" + +///////////////////////////////////////////////////////////////////////////// +#undef APSTUDIO_READONLY_SYMBOLS + +///////////////////////////////////////////////////////////////////////////// +// English (United States) resources + +#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU) +LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US + +#ifdef APSTUDIO_INVOKED +///////////////////////////////////////////////////////////////////////////// +// +// TEXTINCLUDE +// + +1 TEXTINCLUDE +BEGIN + "resource.h\0" +END + +2 TEXTINCLUDE +BEGIN + "#include ""winres.h""\r\n" + "\0" +END + +3 TEXTINCLUDE +BEGIN + "\r\n" + "\0" +END + +#endif // APSTUDIO_INVOKED + + +///////////////////////////////////////////////////////////////////////////// +// +// Icon +// + +// Icon with lowest ID value placed first to ensure application icon +// remains consistent on all systems. +IDI_APP_ICON ICON "resources\\app_icon.ico" + + +///////////////////////////////////////////////////////////////////////////// +// +// Version +// + +#ifdef FLUTTER_BUILD_NUMBER +#define VERSION_AS_NUMBER FLUTTER_BUILD_NUMBER +#else +#define VERSION_AS_NUMBER 1,0,0 +#endif + +#ifdef FLUTTER_BUILD_NAME +#define VERSION_AS_STRING #FLUTTER_BUILD_NAME +#else +#define VERSION_AS_STRING "1.0.0" +#endif + +VS_VERSION_INFO VERSIONINFO + FILEVERSION VERSION_AS_NUMBER + PRODUCTVERSION VERSION_AS_NUMBER + FILEFLAGSMASK VS_FFI_FILEFLAGSMASK +#ifdef _DEBUG + FILEFLAGS VS_FF_DEBUG +#else + FILEFLAGS 0x0L +#endif + FILEOS VOS__WINDOWS32 + FILETYPE VFT_APP + FILESUBTYPE 0x0L +BEGIN + BLOCK "StringFileInfo" + BEGIN + BLOCK "040904e4" + BEGIN + VALUE "CompanyName", "com.example" "\0" + VALUE "FileDescription", "example" "\0" + VALUE "FileVersion", VERSION_AS_STRING "\0" + VALUE "InternalName", "example" "\0" + VALUE "LegalCopyright", "Copyright (C) 2022 com.example. All rights reserved." "\0" + VALUE "OriginalFilename", "example.exe" "\0" + VALUE "ProductName", "example" "\0" + VALUE "ProductVersion", VERSION_AS_STRING "\0" + END + END + BLOCK "VarFileInfo" + BEGIN + VALUE "Translation", 0x409, 1252 + END +END + +#endif // English (United States) resources +///////////////////////////////////////////////////////////////////////////// + + + +#ifndef APSTUDIO_INVOKED +///////////////////////////////////////////////////////////////////////////// +// +// Generated from the TEXTINCLUDE 3 resource. +// + + +///////////////////////////////////////////////////////////////////////////// +#endif // not APSTUDIO_INVOKED diff --git a/packages/syncfusion_flutter_pdfviewer_platform_interface/example/windows/runner/flutter_window.cpp b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/windows/runner/flutter_window.cpp new file mode 100644 index 000000000..b43b9095e --- /dev/null +++ b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/windows/runner/flutter_window.cpp @@ -0,0 +1,61 @@ +#include "flutter_window.h" + +#include + +#include "flutter/generated_plugin_registrant.h" + +FlutterWindow::FlutterWindow(const flutter::DartProject& project) + : project_(project) {} + +FlutterWindow::~FlutterWindow() {} + +bool FlutterWindow::OnCreate() { + if (!Win32Window::OnCreate()) { + return false; + } + + RECT frame = GetClientArea(); + + // The size here must match the window dimensions to avoid unnecessary surface + // creation / destruction in the startup path. + flutter_controller_ = std::make_unique( + frame.right - frame.left, frame.bottom - frame.top, project_); + // Ensure that basic setup of the controller was successful. + if (!flutter_controller_->engine() || !flutter_controller_->view()) { + return false; + } + RegisterPlugins(flutter_controller_->engine()); + SetChildContent(flutter_controller_->view()->GetNativeWindow()); + return true; +} + +void FlutterWindow::OnDestroy() { + if (flutter_controller_) { + flutter_controller_ = nullptr; + } + + Win32Window::OnDestroy(); +} + +LRESULT +FlutterWindow::MessageHandler(HWND hwnd, UINT const message, + WPARAM const wparam, + LPARAM const lparam) noexcept { + // Give Flutter, including plugins, an opportunity to handle window messages. + if (flutter_controller_) { + std::optional result = + flutter_controller_->HandleTopLevelWindowProc(hwnd, message, wparam, + lparam); + if (result) { + return *result; + } + } + + switch (message) { + case WM_FONTCHANGE: + flutter_controller_->engine()->ReloadSystemFonts(); + break; + } + + return Win32Window::MessageHandler(hwnd, message, wparam, lparam); +} diff --git a/packages/syncfusion_flutter_pdfviewer_platform_interface/example/windows/runner/flutter_window.h b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/windows/runner/flutter_window.h new file mode 100644 index 000000000..6da0652f0 --- /dev/null +++ b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/windows/runner/flutter_window.h @@ -0,0 +1,33 @@ +#ifndef RUNNER_FLUTTER_WINDOW_H_ +#define RUNNER_FLUTTER_WINDOW_H_ + +#include +#include + +#include + +#include "win32_window.h" + +// A window that does nothing but host a Flutter view. +class FlutterWindow : public Win32Window { + public: + // Creates a new FlutterWindow hosting a Flutter view running |project|. + explicit FlutterWindow(const flutter::DartProject& project); + virtual ~FlutterWindow(); + + protected: + // Win32Window: + bool OnCreate() override; + void OnDestroy() override; + LRESULT MessageHandler(HWND window, UINT const message, WPARAM const wparam, + LPARAM const lparam) noexcept override; + + private: + // The project to run. + flutter::DartProject project_; + + // The Flutter instance hosted by this window. + std::unique_ptr flutter_controller_; +}; + +#endif // RUNNER_FLUTTER_WINDOW_H_ diff --git a/packages/syncfusion_flutter_pdfviewer_platform_interface/example/windows/runner/main.cpp b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/windows/runner/main.cpp new file mode 100644 index 000000000..bcb57b0e2 --- /dev/null +++ b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/windows/runner/main.cpp @@ -0,0 +1,43 @@ +#include +#include +#include + +#include "flutter_window.h" +#include "utils.h" + +int APIENTRY wWinMain(_In_ HINSTANCE instance, _In_opt_ HINSTANCE prev, + _In_ wchar_t *command_line, _In_ int show_command) { + // Attach to console when present (e.g., 'flutter run') or create a + // new console when running with a debugger. + if (!::AttachConsole(ATTACH_PARENT_PROCESS) && ::IsDebuggerPresent()) { + CreateAndAttachConsole(); + } + + // Initialize COM, so that it is available for use in the library and/or + // plugins. + ::CoInitializeEx(nullptr, COINIT_APARTMENTTHREADED); + + flutter::DartProject project(L"data"); + + std::vector command_line_arguments = + GetCommandLineArguments(); + + project.set_dart_entrypoint_arguments(std::move(command_line_arguments)); + + FlutterWindow window(project); + Win32Window::Point origin(10, 10); + Win32Window::Size size(1280, 720); + if (!window.CreateAndShow(L"example", origin, size)) { + return EXIT_FAILURE; + } + window.SetQuitOnClose(true); + + ::MSG msg; + while (::GetMessage(&msg, nullptr, 0, 0)) { + ::TranslateMessage(&msg); + ::DispatchMessage(&msg); + } + + ::CoUninitialize(); + return EXIT_SUCCESS; +} diff --git a/packages/syncfusion_flutter_pdfviewer_platform_interface/example/windows/runner/resource.h b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/windows/runner/resource.h new file mode 100644 index 000000000..66a65d1e4 --- /dev/null +++ b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/windows/runner/resource.h @@ -0,0 +1,16 @@ +//{{NO_DEPENDENCIES}} +// Microsoft Visual C++ generated include file. +// Used by Runner.rc +// +#define IDI_APP_ICON 101 + +// Next default values for new objects +// +#ifdef APSTUDIO_INVOKED +#ifndef APSTUDIO_READONLY_SYMBOLS +#define _APS_NEXT_RESOURCE_VALUE 102 +#define _APS_NEXT_COMMAND_VALUE 40001 +#define _APS_NEXT_CONTROL_VALUE 1001 +#define _APS_NEXT_SYMED_VALUE 101 +#endif +#endif diff --git a/packages/syncfusion_flutter_pdfviewer_platform_interface/example/windows/runner/resources/app_icon.ico b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/windows/runner/resources/app_icon.ico new file mode 100644 index 0000000000000000000000000000000000000000..c04e20caf6370ebb9253ad831cc31de4a9c965f6 GIT binary patch literal 33772 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 literal 0 HcmV?d00001 diff --git a/packages/syncfusion_flutter_pdfviewer_platform_interface/example/windows/runner/runner.exe.manifest b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/windows/runner/runner.exe.manifest new file mode 100644 index 000000000..c977c4a42 --- /dev/null +++ b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/windows/runner/runner.exe.manifest @@ -0,0 +1,20 @@ + + + + + PerMonitorV2 + + + + + + + + + + + + + + + diff --git a/packages/syncfusion_flutter_pdfviewer_platform_interface/example/windows/runner/utils.cpp b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/windows/runner/utils.cpp new file mode 100644 index 000000000..d19bdbbcc --- /dev/null +++ b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/windows/runner/utils.cpp @@ -0,0 +1,64 @@ +#include "utils.h" + +#include +#include +#include +#include + +#include + +void CreateAndAttachConsole() { + if (::AllocConsole()) { + FILE *unused; + if (freopen_s(&unused, "CONOUT$", "w", stdout)) { + _dup2(_fileno(stdout), 1); + } + if (freopen_s(&unused, "CONOUT$", "w", stderr)) { + _dup2(_fileno(stdout), 2); + } + std::ios::sync_with_stdio(); + FlutterDesktopResyncOutputStreams(); + } +} + +std::vector GetCommandLineArguments() { + // Convert the UTF-16 command line arguments to UTF-8 for the Engine to use. + int argc; + wchar_t** argv = ::CommandLineToArgvW(::GetCommandLineW(), &argc); + if (argv == nullptr) { + return std::vector(); + } + + std::vector command_line_arguments; + + // Skip the first argument as it's the binary name. + for (int i = 1; i < argc; i++) { + command_line_arguments.push_back(Utf8FromUtf16(argv[i])); + } + + ::LocalFree(argv); + + return command_line_arguments; +} + +std::string Utf8FromUtf16(const wchar_t* utf16_string) { + if (utf16_string == nullptr) { + return std::string(); + } + int target_length = ::WideCharToMultiByte( + CP_UTF8, WC_ERR_INVALID_CHARS, utf16_string, + -1, nullptr, 0, nullptr, nullptr); + if (target_length == 0) { + return std::string(); + } + std::string utf8_string; + utf8_string.resize(target_length); + int converted_length = ::WideCharToMultiByte( + CP_UTF8, WC_ERR_INVALID_CHARS, utf16_string, + -1, utf8_string.data(), + target_length, nullptr, nullptr); + if (converted_length == 0) { + return std::string(); + } + return utf8_string; +} diff --git a/packages/syncfusion_flutter_pdfviewer_platform_interface/example/windows/runner/utils.h b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/windows/runner/utils.h new file mode 100644 index 000000000..3879d5475 --- /dev/null +++ b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/windows/runner/utils.h @@ -0,0 +1,19 @@ +#ifndef RUNNER_UTILS_H_ +#define RUNNER_UTILS_H_ + +#include +#include + +// Creates a console for the process, and redirects stdout and stderr to +// it for both the runner and the Flutter library. +void CreateAndAttachConsole(); + +// Takes a null-terminated wchar_t* encoded in UTF-16 and returns a std::string +// encoded in UTF-8. Returns an empty std::string on failure. +std::string Utf8FromUtf16(const wchar_t* utf16_string); + +// Gets the command line arguments passed in as a std::vector, +// encoded in UTF-8. Returns an empty std::vector on failure. +std::vector GetCommandLineArguments(); + +#endif // RUNNER_UTILS_H_ diff --git a/packages/syncfusion_flutter_pdfviewer_platform_interface/example/windows/runner/win32_window.cpp b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/windows/runner/win32_window.cpp new file mode 100644 index 000000000..c10f08dc7 --- /dev/null +++ b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/windows/runner/win32_window.cpp @@ -0,0 +1,245 @@ +#include "win32_window.h" + +#include + +#include "resource.h" + +namespace { + +constexpr const wchar_t kWindowClassName[] = L"FLUTTER_RUNNER_WIN32_WINDOW"; + +// The number of Win32Window objects that currently exist. +static int g_active_window_count = 0; + +using EnableNonClientDpiScaling = BOOL __stdcall(HWND hwnd); + +// Scale helper to convert logical scaler values to physical using passed in +// scale factor +int Scale(int source, double scale_factor) { + return static_cast(source * scale_factor); +} + +// Dynamically loads the |EnableNonClientDpiScaling| from the User32 module. +// This API is only needed for PerMonitor V1 awareness mode. +void EnableFullDpiSupportIfAvailable(HWND hwnd) { + HMODULE user32_module = LoadLibraryA("User32.dll"); + if (!user32_module) { + return; + } + auto enable_non_client_dpi_scaling = + reinterpret_cast( + GetProcAddress(user32_module, "EnableNonClientDpiScaling")); + if (enable_non_client_dpi_scaling != nullptr) { + enable_non_client_dpi_scaling(hwnd); + FreeLibrary(user32_module); + } +} + +} // namespace + +// Manages the Win32Window's window class registration. +class WindowClassRegistrar { + public: + ~WindowClassRegistrar() = default; + + // Returns the singleton registar instance. + static WindowClassRegistrar* GetInstance() { + if (!instance_) { + instance_ = new WindowClassRegistrar(); + } + return instance_; + } + + // Returns the name of the window class, registering the class if it hasn't + // previously been registered. + const wchar_t* GetWindowClass(); + + // Unregisters the window class. Should only be called if there are no + // instances of the window. + void UnregisterWindowClass(); + + private: + WindowClassRegistrar() = default; + + static WindowClassRegistrar* instance_; + + bool class_registered_ = false; +}; + +WindowClassRegistrar* WindowClassRegistrar::instance_ = nullptr; + +const wchar_t* WindowClassRegistrar::GetWindowClass() { + if (!class_registered_) { + WNDCLASS window_class{}; + window_class.hCursor = LoadCursor(nullptr, IDC_ARROW); + window_class.lpszClassName = kWindowClassName; + window_class.style = CS_HREDRAW | CS_VREDRAW; + window_class.cbClsExtra = 0; + window_class.cbWndExtra = 0; + window_class.hInstance = GetModuleHandle(nullptr); + window_class.hIcon = + LoadIcon(window_class.hInstance, MAKEINTRESOURCE(IDI_APP_ICON)); + window_class.hbrBackground = 0; + window_class.lpszMenuName = nullptr; + window_class.lpfnWndProc = Win32Window::WndProc; + RegisterClass(&window_class); + class_registered_ = true; + } + return kWindowClassName; +} + +void WindowClassRegistrar::UnregisterWindowClass() { + UnregisterClass(kWindowClassName, nullptr); + class_registered_ = false; +} + +Win32Window::Win32Window() { + ++g_active_window_count; +} + +Win32Window::~Win32Window() { + --g_active_window_count; + Destroy(); +} + +bool Win32Window::CreateAndShow(const std::wstring& title, + const Point& origin, + const Size& size) { + Destroy(); + + const wchar_t* window_class = + WindowClassRegistrar::GetInstance()->GetWindowClass(); + + const POINT target_point = {static_cast(origin.x), + static_cast(origin.y)}; + HMONITOR monitor = MonitorFromPoint(target_point, MONITOR_DEFAULTTONEAREST); + UINT dpi = FlutterDesktopGetDpiForMonitor(monitor); + double scale_factor = dpi / 96.0; + + HWND window = CreateWindow( + window_class, title.c_str(), WS_OVERLAPPEDWINDOW | WS_VISIBLE, + Scale(origin.x, scale_factor), Scale(origin.y, scale_factor), + Scale(size.width, scale_factor), Scale(size.height, scale_factor), + nullptr, nullptr, GetModuleHandle(nullptr), this); + + if (!window) { + return false; + } + + return OnCreate(); +} + +// static +LRESULT CALLBACK Win32Window::WndProc(HWND const window, + UINT const message, + WPARAM const wparam, + LPARAM const lparam) noexcept { + if (message == WM_NCCREATE) { + auto window_struct = reinterpret_cast(lparam); + SetWindowLongPtr(window, GWLP_USERDATA, + reinterpret_cast(window_struct->lpCreateParams)); + + auto that = static_cast(window_struct->lpCreateParams); + EnableFullDpiSupportIfAvailable(window); + that->window_handle_ = window; + } else if (Win32Window* that = GetThisFromHandle(window)) { + return that->MessageHandler(window, message, wparam, lparam); + } + + return DefWindowProc(window, message, wparam, lparam); +} + +LRESULT +Win32Window::MessageHandler(HWND hwnd, + UINT const message, + WPARAM const wparam, + LPARAM const lparam) noexcept { + switch (message) { + case WM_DESTROY: + window_handle_ = nullptr; + Destroy(); + if (quit_on_close_) { + PostQuitMessage(0); + } + return 0; + + case WM_DPICHANGED: { + auto newRectSize = reinterpret_cast(lparam); + LONG newWidth = newRectSize->right - newRectSize->left; + LONG newHeight = newRectSize->bottom - newRectSize->top; + + SetWindowPos(hwnd, nullptr, newRectSize->left, newRectSize->top, newWidth, + newHeight, SWP_NOZORDER | SWP_NOACTIVATE); + + return 0; + } + case WM_SIZE: { + RECT rect = GetClientArea(); + if (child_content_ != nullptr) { + // Size and position the child window. + MoveWindow(child_content_, rect.left, rect.top, rect.right - rect.left, + rect.bottom - rect.top, TRUE); + } + return 0; + } + + case WM_ACTIVATE: + if (child_content_ != nullptr) { + SetFocus(child_content_); + } + return 0; + } + + return DefWindowProc(window_handle_, message, wparam, lparam); +} + +void Win32Window::Destroy() { + OnDestroy(); + + if (window_handle_) { + DestroyWindow(window_handle_); + window_handle_ = nullptr; + } + if (g_active_window_count == 0) { + WindowClassRegistrar::GetInstance()->UnregisterWindowClass(); + } +} + +Win32Window* Win32Window::GetThisFromHandle(HWND const window) noexcept { + return reinterpret_cast( + GetWindowLongPtr(window, GWLP_USERDATA)); +} + +void Win32Window::SetChildContent(HWND content) { + child_content_ = content; + SetParent(content, window_handle_); + RECT frame = GetClientArea(); + + MoveWindow(content, frame.left, frame.top, frame.right - frame.left, + frame.bottom - frame.top, true); + + SetFocus(child_content_); +} + +RECT Win32Window::GetClientArea() { + RECT frame; + GetClientRect(window_handle_, &frame); + return frame; +} + +HWND Win32Window::GetHandle() { + return window_handle_; +} + +void Win32Window::SetQuitOnClose(bool quit_on_close) { + quit_on_close_ = quit_on_close; +} + +bool Win32Window::OnCreate() { + // No-op; provided for subclasses. + return true; +} + +void Win32Window::OnDestroy() { + // No-op; provided for subclasses. +} diff --git a/packages/syncfusion_flutter_pdfviewer_platform_interface/example/windows/runner/win32_window.h b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/windows/runner/win32_window.h new file mode 100644 index 000000000..17ba43112 --- /dev/null +++ b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/windows/runner/win32_window.h @@ -0,0 +1,98 @@ +#ifndef RUNNER_WIN32_WINDOW_H_ +#define RUNNER_WIN32_WINDOW_H_ + +#include + +#include +#include +#include + +// A class abstraction for a high DPI-aware Win32 Window. Intended to be +// inherited from by classes that wish to specialize with custom +// rendering and input handling +class Win32Window { + public: + struct Point { + unsigned int x; + unsigned int y; + Point(unsigned int x, unsigned int y) : x(x), y(y) {} + }; + + struct Size { + unsigned int width; + unsigned int height; + Size(unsigned int width, unsigned int height) + : width(width), height(height) {} + }; + + Win32Window(); + virtual ~Win32Window(); + + // Creates and shows a win32 window with |title| and position and size using + // |origin| and |size|. New windows are created on the default monitor. Window + // sizes are specified to the OS in physical pixels, hence to ensure a + // consistent size to will treat the width height passed in to this function + // as logical pixels and scale to appropriate for the default monitor. Returns + // true if the window was created successfully. + bool CreateAndShow(const std::wstring& title, + const Point& origin, + const Size& size); + + // Release OS resources associated with window. + void Destroy(); + + // Inserts |content| into the window tree. + void SetChildContent(HWND content); + + // Returns the backing Window handle to enable clients to set icon and other + // window properties. Returns nullptr if the window has been destroyed. + HWND GetHandle(); + + // If true, closing this window will quit the application. + void SetQuitOnClose(bool quit_on_close); + + // Return a RECT representing the bounds of the current client area. + RECT GetClientArea(); + + protected: + // Processes and route salient window messages for mouse handling, + // size change and DPI. Delegates handling of these to member overloads that + // inheriting classes can handle. + virtual LRESULT MessageHandler(HWND window, + UINT const message, + WPARAM const wparam, + LPARAM const lparam) noexcept; + + // Called when CreateAndShow is called, allowing subclass window-related + // setup. Subclasses should return false if setup fails. + virtual bool OnCreate(); + + // Called when Destroy is called. + virtual void OnDestroy(); + + private: + friend class WindowClassRegistrar; + + // OS callback called by message pump. Handles the WM_NCCREATE message which + // is passed when the non-client area is being created and enables automatic + // non-client DPI scaling so that the non-client area automatically + // responsponds to changes in DPI. All other messages are handled by + // MessageHandler. + static LRESULT CALLBACK WndProc(HWND const window, + UINT const message, + WPARAM const wparam, + LPARAM const lparam) noexcept; + + // Retrieves a class instance pointer for |window| + static Win32Window* GetThisFromHandle(HWND const window) noexcept; + + bool quit_on_close_ = false; + + // window handle for top level window. + HWND window_handle_ = nullptr; + + // window handle for hosted content. + HWND child_content_ = nullptr; +}; + +#endif // RUNNER_WIN32_WINDOW_H_ From c013b18f36c71f0aad1ca24cedd114e3659cffce Mon Sep 17 00:00:00 2001 From: LokeshPalani Date: Tue, 26 Mar 2024 06:37:55 +0530 Subject: [PATCH 4/6] Added the changes in the pubspec file --- .../example/pubspec.yaml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/packages/syncfusion_pdfviewer_platform_interface/example/pubspec.yaml b/packages/syncfusion_pdfviewer_platform_interface/example/pubspec.yaml index 7e9260272..47624291e 100644 --- a/packages/syncfusion_pdfviewer_platform_interface/example/pubspec.yaml +++ b/packages/syncfusion_pdfviewer_platform_interface/example/pubspec.yaml @@ -19,11 +19,7 @@ dependencies: sdk: flutter syncfusion_flutter_pdfviewer: - git: - url: https://SyncfusionBuild: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@github.com/essential-studio/flutter-pdfviewer - path: flutter_pdfviewer/syncfusion_flutter_pdfviewer - branch: release/25.1.1 - ref: release/25.1.1 + path: ../../syncfusion_flutter_pdfviewer # The following adds the Cupertino Icons font to your application. # Use with the CupertinoIcons class for iOS style icons. From fdbffc83cf2178ec45e8a2f41db7078bd33ad4a0 Mon Sep 17 00:00:00 2001 From: LokeshPalani Date: Tue, 26 Mar 2024 06:48:10 +0530 Subject: [PATCH 5/6] Removed the duplicate folder --- .../CHANGELOG.md | 3 - .../LICENSE | 12 - .../README.md | 15 - .../analysis_options.yaml | 8 - .../example/README.md | 16 - .../example/analysis_options.yaml | 29 -- .../example/android/app/build.gradle | 68 --- .../android/app/src/debug/AndroidManifest.xml | 7 - .../android/app/src/main/AndroidManifest.xml | 34 -- .../com/example/example/MainActivity.kt | 6 - .../res/drawable-v21/launch_background.xml | 12 - .../main/res/drawable/launch_background.xml | 12 - .../src/main/res/mipmap-hdpi/ic_launcher.png | Bin 544 -> 0 bytes .../src/main/res/mipmap-mdpi/ic_launcher.png | Bin 442 -> 0 bytes .../src/main/res/mipmap-xhdpi/ic_launcher.png | Bin 721 -> 0 bytes .../main/res/mipmap-xxhdpi/ic_launcher.png | Bin 1031 -> 0 bytes .../main/res/mipmap-xxxhdpi/ic_launcher.png | Bin 1443 -> 0 bytes .../app/src/main/res/values-night/styles.xml | 18 - .../app/src/main/res/values/styles.xml | 18 - .../app/src/profile/AndroidManifest.xml | 7 - .../example/android/build.gradle | 31 -- .../example/android/gradle.properties | 3 - .../gradle/wrapper/gradle-wrapper.properties | 6 - .../example/android/settings.gradle | 11 - .../example/ios/.gitignore | 34 -- .../ios/Flutter/AppFrameworkInfo.plist | 26 - .../example/ios/Flutter/Debug.xcconfig | 1 - .../example/ios/Flutter/Release.xcconfig | 1 - .../ios/Runner.xcodeproj/project.pbxproj | 481 ------------------ .../contents.xcworkspacedata | 7 - .../xcshareddata/IDEWorkspaceChecks.plist | 8 - .../xcshareddata/WorkspaceSettings.xcsettings | 8 - .../xcshareddata/xcschemes/Runner.xcscheme | 87 ---- .../contents.xcworkspacedata | 7 - .../xcshareddata/IDEWorkspaceChecks.plist | 8 - .../xcshareddata/WorkspaceSettings.xcsettings | 8 - .../example/ios/Runner/AppDelegate.swift | 13 - .../AppIcon.appiconset/Contents.json | 122 ----- .../Icon-App-1024x1024@1x.png | Bin 10932 -> 0 bytes .../AppIcon.appiconset/Icon-App-20x20@1x.png | Bin 564 -> 0 bytes .../AppIcon.appiconset/Icon-App-20x20@2x.png | Bin 1283 -> 0 bytes .../AppIcon.appiconset/Icon-App-20x20@3x.png | Bin 1588 -> 0 bytes .../AppIcon.appiconset/Icon-App-29x29@1x.png | Bin 1025 -> 0 bytes .../AppIcon.appiconset/Icon-App-29x29@2x.png | Bin 1716 -> 0 bytes .../AppIcon.appiconset/Icon-App-29x29@3x.png | Bin 1920 -> 0 bytes .../AppIcon.appiconset/Icon-App-40x40@1x.png | Bin 1283 -> 0 bytes .../AppIcon.appiconset/Icon-App-40x40@2x.png | Bin 1895 -> 0 bytes .../AppIcon.appiconset/Icon-App-40x40@3x.png | Bin 2665 -> 0 bytes .../AppIcon.appiconset/Icon-App-60x60@2x.png | Bin 2665 -> 0 bytes .../AppIcon.appiconset/Icon-App-60x60@3x.png | Bin 3831 -> 0 bytes .../AppIcon.appiconset/Icon-App-76x76@1x.png | Bin 1888 -> 0 bytes .../AppIcon.appiconset/Icon-App-76x76@2x.png | Bin 3294 -> 0 bytes .../Icon-App-83.5x83.5@2x.png | Bin 3612 -> 0 bytes .../LaunchImage.imageset/Contents.json | 23 - .../LaunchImage.imageset/LaunchImage.png | Bin 68 -> 0 bytes .../LaunchImage.imageset/LaunchImage@2x.png | Bin 68 -> 0 bytes .../LaunchImage.imageset/LaunchImage@3x.png | Bin 68 -> 0 bytes .../LaunchImage.imageset/README.md | 5 - .../Runner/Base.lproj/LaunchScreen.storyboard | 37 -- .../ios/Runner/Base.lproj/Main.storyboard | 26 - .../example/ios/Runner/Info.plist | 47 -- .../ios/Runner/Runner-Bridging-Header.h | 1 - .../example/lib/main.dart | 53 -- .../example/pubspec.yaml | 79 --- .../example/web/favicon.png | Bin 917 -> 0 bytes .../example/web/icons/Icon-192.png | Bin 5292 -> 0 bytes .../example/web/icons/Icon-512.png | Bin 8252 -> 0 bytes .../example/web/index.html | 39 -- .../example/web/manifest.json | 35 -- .../example/windows/.gitignore | 17 - .../example/windows/CMakeLists.txt | 95 ---- .../example/windows/flutter/CMakeLists.txt | 103 ---- .../flutter/generated_plugin_registrant.cc | 14 - .../flutter/generated_plugin_registrant.h | 15 - .../windows/flutter/generated_plugins.cmake | 16 - .../example/windows/runner/CMakeLists.txt | 17 - .../example/windows/runner/Runner.rc | 121 ----- .../example/windows/runner/flutter_window.cpp | 61 --- .../example/windows/runner/flutter_window.h | 33 -- .../example/windows/runner/main.cpp | 43 -- .../example/windows/runner/resource.h | 16 - .../windows/runner/resources/app_icon.ico | Bin 33772 -> 0 bytes .../windows/runner/runner.exe.manifest | 20 - .../example/windows/runner/utils.cpp | 64 --- .../example/windows/runner/utils.h | 19 - .../example/windows/runner/win32_window.cpp | 245 --------- .../example/windows/runner/win32_window.h | 98 ---- .../lib/pdfviewer_platform_interface.dart | 1 - .../lib/src/method_channel_pdfviewer.dart | 62 --- .../lib/src/pdfviewer_platform_interface.dart | 69 --- .../pubspec.yaml | 17 - 91 files changed, 2618 deletions(-) delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/CHANGELOG.md delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/LICENSE delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/README.md delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/analysis_options.yaml delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/README.md delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/analysis_options.yaml delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/android/app/build.gradle delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/android/app/src/debug/AndroidManifest.xml delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/android/app/src/main/AndroidManifest.xml delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/android/app/src/main/kotlin/com/example/example/MainActivity.kt delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/android/app/src/main/res/drawable-v21/launch_background.xml delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/android/app/src/main/res/drawable/launch_background.xml delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/android/app/src/main/res/values-night/styles.xml delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/android/app/src/main/res/values/styles.xml delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/android/app/src/profile/AndroidManifest.xml delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/android/build.gradle delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/android/gradle.properties delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/android/gradle/wrapper/gradle-wrapper.properties delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/android/settings.gradle delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/ios/.gitignore delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/ios/Flutter/AppFrameworkInfo.plist delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/ios/Flutter/Debug.xcconfig delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/ios/Flutter/Release.xcconfig delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner.xcodeproj/project.pbxproj delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner.xcworkspace/contents.xcworkspacedata delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner/AppDelegate.swift delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner/Base.lproj/LaunchScreen.storyboard delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner/Base.lproj/Main.storyboard delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner/Info.plist delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner/Runner-Bridging-Header.h delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/lib/main.dart delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/pubspec.yaml delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/web/favicon.png delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/web/icons/Icon-192.png delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/web/icons/Icon-512.png delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/web/index.html delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/web/manifest.json delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/windows/.gitignore delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/windows/CMakeLists.txt delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/windows/flutter/CMakeLists.txt delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/windows/flutter/generated_plugin_registrant.cc delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/windows/flutter/generated_plugin_registrant.h delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/windows/flutter/generated_plugins.cmake delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/windows/runner/CMakeLists.txt delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/windows/runner/Runner.rc delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/windows/runner/flutter_window.cpp delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/windows/runner/flutter_window.h delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/windows/runner/main.cpp delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/windows/runner/resource.h delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/windows/runner/resources/app_icon.ico delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/windows/runner/runner.exe.manifest delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/windows/runner/utils.cpp delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/windows/runner/utils.h delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/windows/runner/win32_window.cpp delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/example/windows/runner/win32_window.h delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/lib/pdfviewer_platform_interface.dart delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/lib/src/method_channel_pdfviewer.dart delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/lib/src/pdfviewer_platform_interface.dart delete mode 100644 packages/syncfusion_pdfviewer_platform_interface/pubspec.yaml diff --git a/packages/syncfusion_pdfviewer_platform_interface/CHANGELOG.md b/packages/syncfusion_pdfviewer_platform_interface/CHANGELOG.md deleted file mode 100644 index 701f5bf63..000000000 --- a/packages/syncfusion_pdfviewer_platform_interface/CHANGELOG.md +++ /dev/null @@ -1,3 +0,0 @@ -## [19.1.54-beta] - 03/30/2021 - -* Initial release. diff --git a/packages/syncfusion_pdfviewer_platform_interface/LICENSE b/packages/syncfusion_pdfviewer_platform_interface/LICENSE deleted file mode 100644 index f330d1667..000000000 --- a/packages/syncfusion_pdfviewer_platform_interface/LICENSE +++ /dev/null @@ -1,12 +0,0 @@ -Syncfusion License - -Syncfusion Flutter PDF Viewer package is available under the Syncfusion Essential Studio program, and can be licensed either under the Syncfusion Community License Program or the Syncfusion commercial license. - -To be qualified for the Syncfusion Community License Program you must have a gross revenue of less than one (1) million U.S. dollars ($1,000,000.00 USD) per year and have less than five (5) developers in your organization, and agree to be bound by Syncfusion’s terms and conditions. - -Customers who do not qualify for the community license can contact sales@syncfusion.com for commercial licensing options. - -Under no circumstances can you use this product without (1) either a Community License or a commercial license and (2) without agreeing and abiding by Syncfusion’s license containing all terms and conditions. - -The Syncfusion license that contains the terms and conditions can be found at -https://www.syncfusion.com/content/downloads/syncfusion_license.pdf \ No newline at end of file diff --git a/packages/syncfusion_pdfviewer_platform_interface/README.md b/packages/syncfusion_pdfviewer_platform_interface/README.md deleted file mode 100644 index 3fec19c37..000000000 --- a/packages/syncfusion_pdfviewer_platform_interface/README.md +++ /dev/null @@ -1,15 +0,0 @@ -# Flutter PDF Viewer Platform Interface library - -A common platform interface package for the [Syncfusion Flutter PDF Viewer](https://pub.dev/packages/syncfusion_flutter_pdfviewer) plugin. - -This interface allows platform-specific implementations of the `syncfusion_flutter_pdfviewer` -plugin, as well as the plugin itself, to ensure they are supporting the -same interface. - -# Usage - -To implement a new platform-specific implementation of `syncfusion_flutter_pdfviewer`, extend -`PdfViewerPlatform` with an implementation that performs the -platform-specific behavior, and when you register your plugin, set the default -`PdfViewerPlatform` by calling -`PdfViewerPlatform.instance = SyncfusionFlutterPdfViewerPlugin()`. \ No newline at end of file diff --git a/packages/syncfusion_pdfviewer_platform_interface/analysis_options.yaml b/packages/syncfusion_pdfviewer_platform_interface/analysis_options.yaml deleted file mode 100644 index c3d5c4ffe..000000000 --- a/packages/syncfusion_pdfviewer_platform_interface/analysis_options.yaml +++ /dev/null @@ -1,8 +0,0 @@ -include: package:syncfusion_flutter_core/analysis_options.yaml - -analyzer: - errors: - lines_longer_than_80_chars: ignore - include_file_not_found: ignore - uri_does_not_exist: ignore - invalid_dependency: ignore \ No newline at end of file diff --git a/packages/syncfusion_pdfviewer_platform_interface/example/README.md b/packages/syncfusion_pdfviewer_platform_interface/example/README.md deleted file mode 100644 index a13562602..000000000 --- a/packages/syncfusion_pdfviewer_platform_interface/example/README.md +++ /dev/null @@ -1,16 +0,0 @@ -# example - -A new Flutter project. - -## Getting Started - -This project is a starting point for a Flutter application. - -A few resources to get you started if this is your first Flutter project: - -- [Lab: Write your first Flutter app](https://flutter.dev/docs/get-started/codelab) -- [Cookbook: Useful Flutter samples](https://flutter.dev/docs/cookbook) - -For help getting started with Flutter, view our -[online documentation](https://flutter.dev/docs), which offers tutorials, -samples, guidance on mobile development, and a full API reference. diff --git a/packages/syncfusion_pdfviewer_platform_interface/example/analysis_options.yaml b/packages/syncfusion_pdfviewer_platform_interface/example/analysis_options.yaml deleted file mode 100644 index 61b6c4de1..000000000 --- a/packages/syncfusion_pdfviewer_platform_interface/example/analysis_options.yaml +++ /dev/null @@ -1,29 +0,0 @@ -# This file configures the analyzer, which statically analyzes Dart code to -# check for errors, warnings, and lints. -# -# The issues identified by the analyzer are surfaced in the UI of Dart-enabled -# IDEs (https://dart.dev/tools#ides-and-editors). The analyzer can also be -# invoked from the command line by running `flutter analyze`. - -# The following line activates a set of recommended lints for Flutter apps, -# packages, and plugins designed to encourage good coding practices. -include: package:flutter_lints/flutter.yaml - -linter: - # The lint rules applied to this project can be customized in the - # section below to disable rules from the `package:flutter_lints/flutter.yaml` - # included above or to enable additional rules. A list of all available lints - # and their documentation is published at - # https://dart-lang.github.io/linter/lints/index.html. - # - # Instead of disabling a lint rule for the entire project in the - # section below, it can also be suppressed for a single line of code - # or a specific dart file by using the `// ignore: name_of_lint` and - # `// ignore_for_file: name_of_lint` syntax on the line or in the file - # producing the lint. - rules: - # avoid_print: false # Uncomment to disable the `avoid_print` rule - # prefer_single_quotes: true # Uncomment to enable the `prefer_single_quotes` rule - -# Additional information about this file can be found at -# https://dart.dev/guides/language/analysis-options diff --git a/packages/syncfusion_pdfviewer_platform_interface/example/android/app/build.gradle b/packages/syncfusion_pdfviewer_platform_interface/example/android/app/build.gradle deleted file mode 100644 index 5fe3c929f..000000000 --- a/packages/syncfusion_pdfviewer_platform_interface/example/android/app/build.gradle +++ /dev/null @@ -1,68 +0,0 @@ -def localProperties = new Properties() -def localPropertiesFile = rootProject.file('local.properties') -if (localPropertiesFile.exists()) { - localPropertiesFile.withReader('UTF-8') { reader -> - localProperties.load(reader) - } -} - -def flutterRoot = localProperties.getProperty('flutter.sdk') -if (flutterRoot == null) { - throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.") -} - -def flutterVersionCode = localProperties.getProperty('flutter.versionCode') -if (flutterVersionCode == null) { - flutterVersionCode = '1' -} - -def flutterVersionName = localProperties.getProperty('flutter.versionName') -if (flutterVersionName == null) { - flutterVersionName = '1.0' -} - -apply plugin: 'com.android.application' -apply plugin: 'kotlin-android' -apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle" - -android { - compileSdkVersion flutter.compileSdkVersion - - compileOptions { - sourceCompatibility JavaVersion.VERSION_1_8 - targetCompatibility JavaVersion.VERSION_1_8 - } - - kotlinOptions { - jvmTarget = '1.8' - } - - sourceSets { - main.java.srcDirs += 'src/main/kotlin' - } - - defaultConfig { - // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). - applicationId "com.example.example" - minSdkVersion flutter.minSdkVersion - targetSdkVersion flutter.targetSdkVersion - versionCode flutterVersionCode.toInteger() - versionName flutterVersionName - } - - buildTypes { - release { - // TODO: Add your own signing config for the release build. - // Signing with the debug keys for now, so `flutter run --release` works. - signingConfig signingConfigs.debug - } - } -} - -flutter { - source '../..' -} - -dependencies { - implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" -} diff --git a/packages/syncfusion_pdfviewer_platform_interface/example/android/app/src/debug/AndroidManifest.xml b/packages/syncfusion_pdfviewer_platform_interface/example/android/app/src/debug/AndroidManifest.xml deleted file mode 100644 index c208884f3..000000000 --- a/packages/syncfusion_pdfviewer_platform_interface/example/android/app/src/debug/AndroidManifest.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - diff --git a/packages/syncfusion_pdfviewer_platform_interface/example/android/app/src/main/AndroidManifest.xml b/packages/syncfusion_pdfviewer_platform_interface/example/android/app/src/main/AndroidManifest.xml deleted file mode 100644 index 3f41384db..000000000 --- a/packages/syncfusion_pdfviewer_platform_interface/example/android/app/src/main/AndroidManifest.xml +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - - - - diff --git a/packages/syncfusion_pdfviewer_platform_interface/example/android/app/src/main/kotlin/com/example/example/MainActivity.kt b/packages/syncfusion_pdfviewer_platform_interface/example/android/app/src/main/kotlin/com/example/example/MainActivity.kt deleted file mode 100644 index e793a000d..000000000 --- a/packages/syncfusion_pdfviewer_platform_interface/example/android/app/src/main/kotlin/com/example/example/MainActivity.kt +++ /dev/null @@ -1,6 +0,0 @@ -package com.example.example - -import io.flutter.embedding.android.FlutterActivity - -class MainActivity: FlutterActivity() { -} diff --git a/packages/syncfusion_pdfviewer_platform_interface/example/android/app/src/main/res/drawable-v21/launch_background.xml b/packages/syncfusion_pdfviewer_platform_interface/example/android/app/src/main/res/drawable-v21/launch_background.xml deleted file mode 100644 index f74085f3f..000000000 --- a/packages/syncfusion_pdfviewer_platform_interface/example/android/app/src/main/res/drawable-v21/launch_background.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - diff --git a/packages/syncfusion_pdfviewer_platform_interface/example/android/app/src/main/res/drawable/launch_background.xml b/packages/syncfusion_pdfviewer_platform_interface/example/android/app/src/main/res/drawable/launch_background.xml deleted file mode 100644 index 304732f88..000000000 --- a/packages/syncfusion_pdfviewer_platform_interface/example/android/app/src/main/res/drawable/launch_background.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - diff --git a/packages/syncfusion_pdfviewer_platform_interface/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png b/packages/syncfusion_pdfviewer_platform_interface/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png deleted file mode 100644 index db77bb4b7b0906d62b1847e87f15cdcacf6a4f29..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 544 zcmeAS@N?(olHy`uVBq!ia0vp^9w5xY3?!3`olAj~WQl7;NpOBzNqJ&XDuZK6ep0G} zXKrG8YEWuoN@d~6R2!h8bpbvhu0Wd6uZuB!w&u2PAxD2eNXD>P5D~Wn-+_Wa#27Xc zC?Zj|6r#X(-D3u$NCt}(Ms06KgJ4FxJVv{GM)!I~&n8Bnc94O7-Hd)cjDZswgC;Qs zO=b+9!WcT8F?0rF7!Uys2bs@gozCP?z~o%U|N3vA*22NaGQG zlg@K`O_XuxvZ&Ks^m&R!`&1=spLvfx7oGDKDwpwW`#iqdw@AL`7MR}m`rwr|mZgU`8P7SBkL78fFf!WnuYWm$5Z0 zNXhDbCv&49sM544K|?c)WrFfiZvCi9h0O)B3Pgg&ebxsLQ05GG~ AQ2+n{ diff --git a/packages/syncfusion_pdfviewer_platform_interface/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png b/packages/syncfusion_pdfviewer_platform_interface/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png deleted file mode 100644 index 17987b79bb8a35cc66c3c1fd44f5a5526c1b78be..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 442 zcmeAS@N?(olHy`uVBq!ia0vp^1|ZDA3?vioaBc-sk|nMYCBgY=CFO}lsSJ)O`AMk? zp1FzXsX?iUDV2pMQ*D5Xx&nMcT!A!W`0S9QKQy;}1Cl^CgaH=;G9cpY;r$Q>i*pfB zP2drbID<_#qf;rPZx^FqH)F_D#*k@@q03KywUtLX8Ua?`H+NMzkczFPK3lFz@i_kW%1NOn0|D2I9n9wzH8m|-tHjsw|9>@K=iMBhxvkv6m8Y-l zytQ?X=U+MF$@3 zt`~i=@j|6y)RWMK--}M|=T`o&^Ni>IoWKHEbBXz7?A@mgWoL>!*SXo`SZH-*HSdS+ yn*9;$7;m`l>wYBC5bq;=U}IMqLzqbYCidGC!)_gkIk_C@Uy!y&wkt5C($~2D>~)O*cj@FGjOCM)M>_ixfudOh)?xMu#Fs z#}Y=@YDTwOM)x{K_j*Q;dPdJ?Mz0n|pLRx{4n|)f>SXlmV)XB04CrSJn#dS5nK2lM zrZ9#~WelCp7&e13Y$jvaEXHskn$2V!!DN-nWS__6T*l;H&Fopn?A6HZ-6WRLFP=R` zqG+CE#d4|IbyAI+rJJ`&x9*T`+a=p|0O(+s{UBcyZdkhj=yS1>AirP+0R;mf2uMgM zC}@~JfByORAh4SyRgi&!(cja>F(l*O+nd+@4m$|6K6KDn_&uvCpV23&>G9HJp{xgg zoq1^2_p9@|WEo z*X_Uko@K)qYYv~>43eQGMdbiGbo>E~Q& zrYBH{QP^@Sti!`2)uG{irBBq@y*$B zi#&(U-*=fp74j)RyIw49+0MRPMRU)+a2r*PJ$L5roHt2$UjExCTZSbq%V!HeS7J$N zdG@vOZB4v_lF7Plrx+hxo7(fCV&}fHq)$ diff --git a/packages/syncfusion_pdfviewer_platform_interface/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/packages/syncfusion_pdfviewer_platform_interface/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png deleted file mode 100644 index d5f1c8d34e7a88e3f88bea192c3a370d44689c3c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1031 zcmeAS@N?(olHy`uVBq!ia0vp^6F``Q8Ax83A=Cw=BuiW)N`mv#O3D+9QW+dm@{>{( zJaZG%Q-e|yQz{EjrrIztFa`(sgt!6~Yi|1%a`XoT0ojZ}lNrNjb9xjc(B0U1_% zz5^97Xt*%oq$rQy4?0GKNfJ44uvxI)gC`h-NZ|&0-7(qS@?b!5r36oQ}zyZrNO3 zMO=Or+<~>+A&uN&E!^Sl+>xE!QC-|oJv`ApDhqC^EWD|@=#J`=d#Xzxs4ah}w&Jnc z$|q_opQ^2TrnVZ0o~wh<3t%W&flvYGe#$xqda2bR_R zvPYgMcHgjZ5nSA^lJr%;<&0do;O^tDDh~=pIxA#coaCY>&N%M2^tq^U%3DB@ynvKo}b?yu-bFc-u0JHzced$sg7S3zqI(2 z#Km{dPr7I=pQ5>FuK#)QwK?Y`E`B?nP+}U)I#c1+FM*1kNvWG|a(TpksZQ3B@sD~b zpQ2)*V*TdwjFOtHvV|;OsiDqHi=6%)o4b!)x$)%9pGTsE z-JL={-Ffv+T87W(Xpooq<`r*VzWQcgBN$$`u}f>-ZQI1BB8ykN*=e4rIsJx9>z}*o zo~|9I;xof diff --git a/packages/syncfusion_pdfviewer_platform_interface/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/packages/syncfusion_pdfviewer_platform_interface/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png deleted file mode 100644 index 4d6372eebdb28e45604e46eeda8dd24651419bc0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1443 zcmb`G{WsKk6vsdJTdFg%tJav9_E4vzrOaqkWF|A724Nly!y+?N9`YV6wZ}5(X(D_N(?!*n3`|_r0Hc?=PQw&*vnU?QTFY zB_MsH|!j$PP;I}?dppoE_gA(4uc!jV&0!l7_;&p2^pxNo>PEcNJv za5_RT$o2Mf!<+r?&EbHH6nMoTsDOa;mN(wv8RNsHpG)`^ymG-S5By8=l9iVXzN_eG%Xg2@Xeq76tTZ*dGh~Lo9vl;Zfs+W#BydUw zCkZ$o1LqWQO$FC9aKlLl*7x9^0q%0}$OMlp@Kk_jHXOjofdePND+j!A{q!8~Jn+s3 z?~~w@4?egS02}8NuulUA=L~QQfm;MzCGd)XhiftT;+zFO&JVyp2mBww?;QByS_1w! zrQlx%{^cMj0|Bo1FjwY@Q8?Hx0cIPF*@-ZRFpPc#bBw{5@tD(5%sClzIfl8WU~V#u zm5Q;_F!wa$BSpqhN>W@2De?TKWR*!ujY;Yylk_X5#~V!L*Gw~;$%4Q8~Mad z@`-kG?yb$a9cHIApZDVZ^U6Xkp<*4rU82O7%}0jjHlK{id@?-wpN*fCHXyXh(bLt* zPc}H-x0e4E&nQ>y%B-(EL=9}RyC%MyX=upHuFhAk&MLbsF0LP-q`XnH78@fT+pKPW zu72MW`|?8ht^tz$iC}ZwLp4tB;Q49K!QCF3@!iB1qOI=?w z7In!}F~ij(18UYUjnbmC!qKhPo%24?8U1x{7o(+?^Zu0Hx81|FuS?bJ0jgBhEMzf< zCgUq7r2OCB(`XkKcN-TL>u5y#dD6D!)5W?`O5)V^>jb)P)GBdy%t$uUMpf$SNV31$ zb||OojAbvMP?T@$h_ZiFLFVHDmbyMhJF|-_)HX3%m=CDI+ID$0^C>kzxprBW)hw(v zr!Gmda);ICoQyhV_oP5+C%?jcG8v+D@9f?Dk*!BxY}dazmrT@64UrP3hlslANK)bq z$67n83eh}OeW&SV@HG95P|bjfqJ7gw$e+`Hxo!4cx`jdK1bJ>YDSpGKLPZ^1cv$ek zIB?0S<#tX?SJCLWdMd{-ME?$hc7A$zBOdIJ)4!KcAwb=VMov)nK;9z>x~rfT1>dS+ zZ6#`2v@`jgbqq)P22H)Tx2CpmM^o1$B+xT6`(v%5xJ(?j#>Q$+rx_R|7TzDZe{J6q zG1*EcU%tE?!kO%^M;3aM6JN*LAKUVb^xz8-Pxo#jR5(-KBeLJvA@-gxNHx0M-ZJLl z;#JwQoh~9V?`UVo#}{6ka@II>++D@%KqGpMdlQ}?9E*wFcf5(#XQnP$Dk5~%iX^>f z%$y;?M0BLp{O3a(-4A?ewryHrrD%cx#Q^%KY1H zNre$ve+vceSLZcNY4U(RBX&)oZn*Py()h)XkE?PL$!bNb{N5FVI2Y%LKEm%yvpyTP z(1P?z~7YxD~Rf<(a@_y` diff --git a/packages/syncfusion_pdfviewer_platform_interface/example/android/app/src/main/res/values-night/styles.xml b/packages/syncfusion_pdfviewer_platform_interface/example/android/app/src/main/res/values-night/styles.xml deleted file mode 100644 index 3db14bb53..000000000 --- a/packages/syncfusion_pdfviewer_platform_interface/example/android/app/src/main/res/values-night/styles.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - diff --git a/packages/syncfusion_pdfviewer_platform_interface/example/android/app/src/main/res/values/styles.xml b/packages/syncfusion_pdfviewer_platform_interface/example/android/app/src/main/res/values/styles.xml deleted file mode 100644 index d460d1e92..000000000 --- a/packages/syncfusion_pdfviewer_platform_interface/example/android/app/src/main/res/values/styles.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - diff --git a/packages/syncfusion_pdfviewer_platform_interface/example/android/app/src/profile/AndroidManifest.xml b/packages/syncfusion_pdfviewer_platform_interface/example/android/app/src/profile/AndroidManifest.xml deleted file mode 100644 index c208884f3..000000000 --- a/packages/syncfusion_pdfviewer_platform_interface/example/android/app/src/profile/AndroidManifest.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - diff --git a/packages/syncfusion_pdfviewer_platform_interface/example/android/build.gradle b/packages/syncfusion_pdfviewer_platform_interface/example/android/build.gradle deleted file mode 100644 index 4256f9173..000000000 --- a/packages/syncfusion_pdfviewer_platform_interface/example/android/build.gradle +++ /dev/null @@ -1,31 +0,0 @@ -buildscript { - ext.kotlin_version = '1.6.10' - repositories { - google() - mavenCentral() - } - - dependencies { - classpath 'com.android.tools.build:gradle:4.1.0' - classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" - } -} - -allprojects { - repositories { - google() - mavenCentral() - } -} - -rootProject.buildDir = '../build' -subprojects { - project.buildDir = "${rootProject.buildDir}/${project.name}" -} -subprojects { - project.evaluationDependsOn(':app') -} - -task clean(type: Delete) { - delete rootProject.buildDir -} diff --git a/packages/syncfusion_pdfviewer_platform_interface/example/android/gradle.properties b/packages/syncfusion_pdfviewer_platform_interface/example/android/gradle.properties deleted file mode 100644 index 94adc3a3f..000000000 --- a/packages/syncfusion_pdfviewer_platform_interface/example/android/gradle.properties +++ /dev/null @@ -1,3 +0,0 @@ -org.gradle.jvmargs=-Xmx1536M -android.useAndroidX=true -android.enableJetifier=true diff --git a/packages/syncfusion_pdfviewer_platform_interface/example/android/gradle/wrapper/gradle-wrapper.properties b/packages/syncfusion_pdfviewer_platform_interface/example/android/gradle/wrapper/gradle-wrapper.properties deleted file mode 100644 index bc6a58afd..000000000 --- a/packages/syncfusion_pdfviewer_platform_interface/example/android/gradle/wrapper/gradle-wrapper.properties +++ /dev/null @@ -1,6 +0,0 @@ -#Fri Jun 23 08:50:38 CEST 2017 -distributionBase=GRADLE_USER_HOME -distributionPath=wrapper/dists -zipStoreBase=GRADLE_USER_HOME -zipStorePath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-6.7-all.zip diff --git a/packages/syncfusion_pdfviewer_platform_interface/example/android/settings.gradle b/packages/syncfusion_pdfviewer_platform_interface/example/android/settings.gradle deleted file mode 100644 index 44e62bcf0..000000000 --- a/packages/syncfusion_pdfviewer_platform_interface/example/android/settings.gradle +++ /dev/null @@ -1,11 +0,0 @@ -include ':app' - -def localPropertiesFile = new File(rootProject.projectDir, "local.properties") -def properties = new Properties() - -assert localPropertiesFile.exists() -localPropertiesFile.withReader("UTF-8") { reader -> properties.load(reader) } - -def flutterSdkPath = properties.getProperty("flutter.sdk") -assert flutterSdkPath != null, "flutter.sdk not set in local.properties" -apply from: "$flutterSdkPath/packages/flutter_tools/gradle/app_plugin_loader.gradle" diff --git a/packages/syncfusion_pdfviewer_platform_interface/example/ios/.gitignore b/packages/syncfusion_pdfviewer_platform_interface/example/ios/.gitignore deleted file mode 100644 index 7a7f9873a..000000000 --- a/packages/syncfusion_pdfviewer_platform_interface/example/ios/.gitignore +++ /dev/null @@ -1,34 +0,0 @@ -**/dgph -*.mode1v3 -*.mode2v3 -*.moved-aside -*.pbxuser -*.perspectivev3 -**/*sync/ -.sconsign.dblite -.tags* -**/.vagrant/ -**/DerivedData/ -Icon? -**/Pods/ -**/.symlinks/ -profile -xcuserdata -**/.generated/ -Flutter/App.framework -Flutter/Flutter.framework -Flutter/Flutter.podspec -Flutter/Generated.xcconfig -Flutter/ephemeral/ -Flutter/app.flx -Flutter/app.zip -Flutter/flutter_assets/ -Flutter/flutter_export_environment.sh -ServiceDefinitions.json -Runner/GeneratedPluginRegistrant.* - -# Exceptions to above rules. -!default.mode1v3 -!default.mode2v3 -!default.pbxuser -!default.perspectivev3 diff --git a/packages/syncfusion_pdfviewer_platform_interface/example/ios/Flutter/AppFrameworkInfo.plist b/packages/syncfusion_pdfviewer_platform_interface/example/ios/Flutter/AppFrameworkInfo.plist deleted file mode 100644 index 8d4492f97..000000000 --- a/packages/syncfusion_pdfviewer_platform_interface/example/ios/Flutter/AppFrameworkInfo.plist +++ /dev/null @@ -1,26 +0,0 @@ - - - - - CFBundleDevelopmentRegion - en - CFBundleExecutable - App - CFBundleIdentifier - io.flutter.flutter.app - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - App - CFBundlePackageType - FMWK - CFBundleShortVersionString - 1.0 - CFBundleSignature - ???? - CFBundleVersion - 1.0 - MinimumOSVersion - 9.0 - - diff --git a/packages/syncfusion_pdfviewer_platform_interface/example/ios/Flutter/Debug.xcconfig b/packages/syncfusion_pdfviewer_platform_interface/example/ios/Flutter/Debug.xcconfig deleted file mode 100644 index 592ceee85..000000000 --- a/packages/syncfusion_pdfviewer_platform_interface/example/ios/Flutter/Debug.xcconfig +++ /dev/null @@ -1 +0,0 @@ -#include "Generated.xcconfig" diff --git a/packages/syncfusion_pdfviewer_platform_interface/example/ios/Flutter/Release.xcconfig b/packages/syncfusion_pdfviewer_platform_interface/example/ios/Flutter/Release.xcconfig deleted file mode 100644 index 592ceee85..000000000 --- a/packages/syncfusion_pdfviewer_platform_interface/example/ios/Flutter/Release.xcconfig +++ /dev/null @@ -1 +0,0 @@ -#include "Generated.xcconfig" diff --git a/packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner.xcodeproj/project.pbxproj b/packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner.xcodeproj/project.pbxproj deleted file mode 100644 index 6edd238e7..000000000 --- a/packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner.xcodeproj/project.pbxproj +++ /dev/null @@ -1,481 +0,0 @@ -// !$*UTF8*$! -{ - archiveVersion = 1; - classes = { - }; - objectVersion = 50; - objects = { - -/* Begin PBXBuildFile section */ - 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; }; - 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; }; - 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; }; - 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; }; - 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; }; - 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; }; -/* End PBXBuildFile section */ - -/* Begin PBXCopyFilesBuildPhase section */ - 9705A1C41CF9048500538489 /* Embed Frameworks */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = ""; - dstSubfolderSpec = 10; - files = ( - ); - name = "Embed Frameworks"; - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXCopyFilesBuildPhase section */ - -/* Begin PBXFileReference section */ - 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = ""; }; - 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = ""; }; - 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = ""; }; - 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = ""; }; - 74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; - 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = ""; }; - 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = ""; }; - 9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = ""; }; - 97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; }; - 97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; - 97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; - 97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; - 97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; -/* End PBXFileReference section */ - -/* Begin PBXFrameworksBuildPhase section */ - 97C146EB1CF9000F007C117D /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXFrameworksBuildPhase section */ - -/* Begin PBXGroup section */ - 9740EEB11CF90186004384FC /* Flutter */ = { - isa = PBXGroup; - children = ( - 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */, - 9740EEB21CF90195004384FC /* Debug.xcconfig */, - 7AFA3C8E1D35360C0083082E /* Release.xcconfig */, - 9740EEB31CF90195004384FC /* Generated.xcconfig */, - ); - name = Flutter; - sourceTree = ""; - }; - 97C146E51CF9000F007C117D = { - isa = PBXGroup; - children = ( - 9740EEB11CF90186004384FC /* Flutter */, - 97C146F01CF9000F007C117D /* Runner */, - 97C146EF1CF9000F007C117D /* Products */, - ); - sourceTree = ""; - }; - 97C146EF1CF9000F007C117D /* Products */ = { - isa = PBXGroup; - children = ( - 97C146EE1CF9000F007C117D /* Runner.app */, - ); - name = Products; - sourceTree = ""; - }; - 97C146F01CF9000F007C117D /* Runner */ = { - isa = PBXGroup; - children = ( - 97C146FA1CF9000F007C117D /* Main.storyboard */, - 97C146FD1CF9000F007C117D /* Assets.xcassets */, - 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */, - 97C147021CF9000F007C117D /* Info.plist */, - 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */, - 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */, - 74858FAE1ED2DC5600515810 /* AppDelegate.swift */, - 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */, - ); - path = Runner; - sourceTree = ""; - }; -/* End PBXGroup section */ - -/* Begin PBXNativeTarget section */ - 97C146ED1CF9000F007C117D /* Runner */ = { - isa = PBXNativeTarget; - buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */; - buildPhases = ( - 9740EEB61CF901F6004384FC /* Run Script */, - 97C146EA1CF9000F007C117D /* Sources */, - 97C146EB1CF9000F007C117D /* Frameworks */, - 97C146EC1CF9000F007C117D /* Resources */, - 9705A1C41CF9048500538489 /* Embed Frameworks */, - 3B06AD1E1E4923F5004D2608 /* Thin Binary */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = Runner; - productName = Runner; - productReference = 97C146EE1CF9000F007C117D /* Runner.app */; - productType = "com.apple.product-type.application"; - }; -/* End PBXNativeTarget section */ - -/* Begin PBXProject section */ - 97C146E61CF9000F007C117D /* Project object */ = { - isa = PBXProject; - attributes = { - LastUpgradeCheck = 1300; - ORGANIZATIONNAME = ""; - TargetAttributes = { - 97C146ED1CF9000F007C117D = { - CreatedOnToolsVersion = 7.3.1; - LastSwiftMigration = 1100; - }; - }; - }; - buildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */; - compatibilityVersion = "Xcode 9.3"; - developmentRegion = en; - hasScannedForEncodings = 0; - knownRegions = ( - en, - Base, - ); - mainGroup = 97C146E51CF9000F007C117D; - productRefGroup = 97C146EF1CF9000F007C117D /* Products */; - projectDirPath = ""; - projectRoot = ""; - targets = ( - 97C146ED1CF9000F007C117D /* Runner */, - ); - }; -/* End PBXProject section */ - -/* Begin PBXResourcesBuildPhase section */ - 97C146EC1CF9000F007C117D /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */, - 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */, - 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */, - 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXResourcesBuildPhase section */ - -/* Begin PBXShellScriptBuildPhase section */ - 3B06AD1E1E4923F5004D2608 /* Thin Binary */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - ); - name = "Thin Binary"; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin"; - }; - 9740EEB61CF901F6004384FC /* Run Script */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - ); - name = "Run Script"; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build"; - }; -/* End PBXShellScriptBuildPhase section */ - -/* Begin PBXSourcesBuildPhase section */ - 97C146EA1CF9000F007C117D /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */, - 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXSourcesBuildPhase section */ - -/* Begin PBXVariantGroup section */ - 97C146FA1CF9000F007C117D /* Main.storyboard */ = { - isa = PBXVariantGroup; - children = ( - 97C146FB1CF9000F007C117D /* Base */, - ); - name = Main.storyboard; - sourceTree = ""; - }; - 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = { - isa = PBXVariantGroup; - children = ( - 97C147001CF9000F007C117D /* Base */, - ); - name = LaunchScreen.storyboard; - sourceTree = ""; - }; -/* End PBXVariantGroup section */ - -/* Begin XCBuildConfiguration section */ - 249021D3217E4FDB00AE95B9 /* Profile */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_ANALYZER_NONNULL = YES; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_COMMA = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_STRICT_PROTOTYPES = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - ENABLE_NS_ASSERTIONS = NO; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_NO_COMMON_BLOCKS = YES; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - MTL_ENABLE_DEBUG_INFO = NO; - SDKROOT = iphoneos; - SUPPORTED_PLATFORMS = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Profile; - }; - 249021D4217E4FDB00AE95B9 /* Profile */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CLANG_ENABLE_MODULES = YES; - CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; - ENABLE_BITCODE = NO; - INFOPLIST_FILE = Runner/Info.plist; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - PRODUCT_BUNDLE_IDENTIFIER = com.example.example; - PRODUCT_NAME = "$(TARGET_NAME)"; - SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; - SWIFT_VERSION = 5.0; - VERSIONING_SYSTEM = "apple-generic"; - }; - name = Profile; - }; - 97C147031CF9000F007C117D /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_ANALYZER_NONNULL = YES; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_COMMA = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_STRICT_PROTOTYPES = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = dwarf; - ENABLE_STRICT_OBJC_MSGSEND = YES; - ENABLE_TESTABILITY = YES; - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_DYNAMIC_NO_PIC = NO; - GCC_NO_COMMON_BLOCKS = YES; - GCC_OPTIMIZATION_LEVEL = 0; - GCC_PREPROCESSOR_DEFINITIONS = ( - "DEBUG=1", - "$(inherited)", - ); - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - MTL_ENABLE_DEBUG_INFO = YES; - ONLY_ACTIVE_ARCH = YES; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 97C147041CF9000F007C117D /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_ANALYZER_NONNULL = YES; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_COMMA = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_STRICT_PROTOTYPES = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - ENABLE_NS_ASSERTIONS = NO; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_NO_COMMON_BLOCKS = YES; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - MTL_ENABLE_DEBUG_INFO = NO; - SDKROOT = iphoneos; - SUPPORTED_PLATFORMS = iphoneos; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 97C147061CF9000F007C117D /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CLANG_ENABLE_MODULES = YES; - CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; - ENABLE_BITCODE = NO; - INFOPLIST_FILE = Runner/Info.plist; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - PRODUCT_BUNDLE_IDENTIFIER = com.example.example; - PRODUCT_NAME = "$(TARGET_NAME)"; - SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; - SWIFT_OPTIMIZATION_LEVEL = "-Onone"; - SWIFT_VERSION = 5.0; - VERSIONING_SYSTEM = "apple-generic"; - }; - name = Debug; - }; - 97C147071CF9000F007C117D /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CLANG_ENABLE_MODULES = YES; - CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; - ENABLE_BITCODE = NO; - INFOPLIST_FILE = Runner/Info.plist; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - PRODUCT_BUNDLE_IDENTIFIER = com.example.example; - PRODUCT_NAME = "$(TARGET_NAME)"; - SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; - SWIFT_VERSION = 5.0; - VERSIONING_SYSTEM = "apple-generic"; - }; - name = Release; - }; -/* End XCBuildConfiguration section */ - -/* Begin XCConfigurationList section */ - 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 97C147031CF9000F007C117D /* Debug */, - 97C147041CF9000F007C117D /* Release */, - 249021D3217E4FDB00AE95B9 /* Profile */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 97C147061CF9000F007C117D /* Debug */, - 97C147071CF9000F007C117D /* Release */, - 249021D4217E4FDB00AE95B9 /* Profile */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; -/* End XCConfigurationList section */ - }; - rootObject = 97C146E61CF9000F007C117D /* Project object */; -} diff --git a/packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata deleted file mode 100644 index 919434a62..000000000 --- a/packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata +++ /dev/null @@ -1,7 +0,0 @@ - - - - - diff --git a/packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist deleted file mode 100644 index 18d981003..000000000 --- a/packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +++ /dev/null @@ -1,8 +0,0 @@ - - - - - IDEDidComputeMac32BitWarning - - - diff --git a/packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings deleted file mode 100644 index f9b0d7c5e..000000000 --- a/packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings +++ /dev/null @@ -1,8 +0,0 @@ - - - - - PreviewsEnabled - - - diff --git a/packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme b/packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme deleted file mode 100644 index c87d15a33..000000000 --- a/packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner.xcworkspace/contents.xcworkspacedata b/packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner.xcworkspace/contents.xcworkspacedata deleted file mode 100644 index 1d526a16e..000000000 --- a/packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner.xcworkspace/contents.xcworkspacedata +++ /dev/null @@ -1,7 +0,0 @@ - - - - - diff --git a/packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist deleted file mode 100644 index 18d981003..000000000 --- a/packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +++ /dev/null @@ -1,8 +0,0 @@ - - - - - IDEDidComputeMac32BitWarning - - - diff --git a/packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings deleted file mode 100644 index f9b0d7c5e..000000000 --- a/packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings +++ /dev/null @@ -1,8 +0,0 @@ - - - - - PreviewsEnabled - - - diff --git a/packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner/AppDelegate.swift b/packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner/AppDelegate.swift deleted file mode 100644 index 70693e4a8..000000000 --- a/packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner/AppDelegate.swift +++ /dev/null @@ -1,13 +0,0 @@ -import UIKit -import Flutter - -@UIApplicationMain -@objc class AppDelegate: FlutterAppDelegate { - override func application( - _ application: UIApplication, - didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? - ) -> Bool { - GeneratedPluginRegistrant.register(with: self) - return super.application(application, didFinishLaunchingWithOptions: launchOptions) - } -} diff --git a/packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json b/packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json deleted file mode 100644 index d36b1fab2..000000000 --- a/packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json +++ /dev/null @@ -1,122 +0,0 @@ -{ - "images" : [ - { - "size" : "20x20", - "idiom" : "iphone", - "filename" : "Icon-App-20x20@2x.png", - "scale" : "2x" - }, - { - "size" : "20x20", - "idiom" : "iphone", - "filename" : "Icon-App-20x20@3x.png", - "scale" : "3x" - }, - { - "size" : "29x29", - "idiom" : "iphone", - "filename" : "Icon-App-29x29@1x.png", - "scale" : "1x" - }, - { - "size" : "29x29", - "idiom" : "iphone", - "filename" : "Icon-App-29x29@2x.png", - "scale" : "2x" - }, - { - "size" : "29x29", - "idiom" : "iphone", - "filename" : "Icon-App-29x29@3x.png", - "scale" : "3x" - }, - { - "size" : "40x40", - "idiom" : "iphone", - "filename" : "Icon-App-40x40@2x.png", - "scale" : "2x" - }, - { - "size" : "40x40", - "idiom" : "iphone", - "filename" : "Icon-App-40x40@3x.png", - "scale" : "3x" - }, - { - "size" : "60x60", - "idiom" : "iphone", - "filename" : "Icon-App-60x60@2x.png", - "scale" : "2x" - }, - { - "size" : "60x60", - "idiom" : "iphone", - "filename" : "Icon-App-60x60@3x.png", - "scale" : "3x" - }, - { - "size" : "20x20", - "idiom" : "ipad", - "filename" : "Icon-App-20x20@1x.png", - "scale" : "1x" - }, - { - "size" : "20x20", - "idiom" : "ipad", - "filename" : "Icon-App-20x20@2x.png", - "scale" : "2x" - }, - { - "size" : "29x29", - "idiom" : "ipad", - "filename" : "Icon-App-29x29@1x.png", - "scale" : "1x" - }, - { - "size" : "29x29", - "idiom" : "ipad", - "filename" : "Icon-App-29x29@2x.png", - "scale" : "2x" - }, - { - "size" : "40x40", - "idiom" : "ipad", - "filename" : "Icon-App-40x40@1x.png", - "scale" : "1x" - }, - { - "size" : "40x40", - "idiom" : "ipad", - "filename" : "Icon-App-40x40@2x.png", - "scale" : "2x" - }, - { - "size" : "76x76", - "idiom" : "ipad", - "filename" : "Icon-App-76x76@1x.png", - "scale" : "1x" - }, - { - "size" : "76x76", - "idiom" : "ipad", - "filename" : "Icon-App-76x76@2x.png", - "scale" : "2x" - }, - { - "size" : "83.5x83.5", - "idiom" : "ipad", - "filename" : "Icon-App-83.5x83.5@2x.png", - "scale" : "2x" - }, - { - "size" : "1024x1024", - "idiom" : "ios-marketing", - "filename" : "Icon-App-1024x1024@1x.png", - "scale" : "1x" - } - ], - "info" : { - "version" : 1, - "author" : "xcode" - } -} diff --git a/packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png b/packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png deleted file mode 100644 index dc9ada4725e9b0ddb1deab583e5b5102493aa332..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 10932 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 diff --git a/packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png b/packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png deleted file mode 100644 index f091b6b0bca859a3f474b03065bef75ba58a9e4c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1588 zcmV-42Fv-0P)C1SqPt}wig>|5Crh^=oyX$BK<}M8eLU3e2hGT;=G|!_SP)7zNI6fqUMB=)y zRAZ>eDe#*r`yDAVgB_R*LB*MAc)8(b{g{9McCXW!lq7r(btRoB9!8B-#AI6JMb~YFBEvdsV)`mEQO^&#eRKx@b&x- z5lZm*!WfD8oCLzfHGz#u7sT0^VLMI1MqGxF^v+`4YYnVYgk*=kU?HsSz{v({E3lb9 z>+xILjBN)t6`=g~IBOelGQ(O990@BfXf(DRI5I$qN$0Gkz-FSc$3a+2fX$AedL4u{ z4V+5Ong(9LiGcIKW?_352sR;LtDPmPJXI{YtT=O8=76o9;*n%_m|xo!i>7$IrZ-{l z-x3`7M}qzHsPV@$v#>H-TpjDh2UE$9g6sysUREDy_R(a)>=eHw-WAyfIN z*qb!_hW>G)Tu8nSw9yn#3wFMiLcfc4pY0ek1}8(NqkBR@t4{~oC>ryc-h_ByH(Cg5 z>ao-}771+xE3um9lWAY1FeQFxowa1(!J(;Jg*wrg!=6FdRX+t_<%z&d&?|Bn){>zm zZQj(aA_HeBY&OC^jj*)N`8fa^ePOU72VpInJoI1?`ty#lvlNzs(&MZX+R%2xS~5Kh zX*|AU4QE#~SgPzOXe9>tRj>hjU@c1k5Y_mW*Jp3fI;)1&g3j|zDgC+}2Q_v%YfDax z!?umcN^n}KYQ|a$Lr+51Nf9dkkYFSjZZjkma$0KOj+;aQ&721~t7QUKx61J3(P4P1 zstI~7-wOACnWP4=8oGOwz%vNDqD8w&Q`qcNGGrbbf&0s9L0De{4{mRS?o0MU+nR_! zrvshUau0G^DeMhM_v{5BuLjb#Hh@r23lDAk8oF(C+P0rsBpv85EP>4CVMx#04MOfG z;P%vktHcXwTj~+IE(~px)3*MY77e}p#|c>TD?sMatC0Tu4iKKJ0(X8jxQY*gYtxsC z(zYC$g|@+I+kY;dg_dE>scBf&bP1Nc@Hz<3R)V`=AGkc;8CXqdi=B4l2k|g;2%#m& z*jfX^%b!A8#bI!j9-0Fi0bOXl(-c^AB9|nQaE`*)Hw+o&jS9@7&Gov#HbD~#d{twV zXd^Tr^mWLfFh$@Dr$e;PBEz4(-2q1FF0}c;~B5sA}+Q>TOoP+t>wf)V9Iy=5ruQa;z)y zI9C9*oUga6=hxw6QasLPnee@3^Rr*M{CdaL5=R41nLs(AHk_=Y+A9$2&H(B7!_pURs&8aNw7?`&Z&xY_Ye z)~D5Bog^td-^QbUtkTirdyK^mTHAOuptDflut!#^lnKqU md>ggs(5nOWAqO?umG&QVYK#ibz}*4>0000U6E9hRK9^#O7(mu>ETqrXGsduA8$)?`v2seloOCza43C{NQ$$gAOH**MCn0Q?+L7dl7qnbRdqZ8LSVp1ItDxhxD?t@5_yHg6A8yI zC*%Wgg22K|8E#!~cTNYR~@Y9KepMPrrB8cABapAFa=`H+UGhkXUZV1GnwR1*lPyZ;*K(i~2gp|@bzp8}og7e*#% zEnr|^CWdVV!-4*Y_7rFvlww2Ze+>j*!Z!pQ?2l->4q#nqRu9`ELo6RMS5=br47g_X zRw}P9a7RRYQ%2Vsd0Me{_(EggTnuN6j=-?uFS6j^u69elMypu?t>op*wBx<=Wx8?( ztpe^(fwM6jJX7M-l*k3kEpWOl_Vk3@(_w4oc}4YF4|Rt=2V^XU?#Yz`8(e?aZ@#li0n*=g^qOcVpd-Wbok=@b#Yw zqn8u9a)z>l(1kEaPYZ6hwubN6i<8QHgsu0oE) ziJ(p;Wxm>sf!K+cw>R-(^Y2_bahB+&KI9y^);#0qt}t-$C|Bo71lHi{_+lg#f%RFy z0um=e3$K3i6K{U_4K!EX?F&rExl^W|G8Z8;`5z-k}OGNZ0#WVb$WCpQu-_YsiqKP?BB# vzVHS-CTUF4Ozn5G+mq_~Qqto~ahA+K`|lyv3(-e}00000NkvXXu0mjfd`9t{ diff --git a/packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png b/packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png deleted file mode 100644 index d0ef06e7edb86cdfe0d15b4b0d98334a86163658..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1716 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 diff --git a/packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png b/packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png deleted file mode 100644 index c8f9ed8f5cee1c98386d13b17e89f719e83555b2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1895 zcmV-t2blPYP)FQtfgmafE#=YDCq`qUBt#QpG%*H6QHY765~R=q zZ6iudfM}q!Pz#~9JgOi8QJ|DSu?1-*(kSi1K4#~5?#|rh?sS)(-JQqX*}ciXJ56_H zdw=^s_srbAdqxlvGyrgGet#6T7_|j;95sL%MtM;q86vOxKM$f#puR)Bjv9Zvz9-di zXOTSsZkM83)E9PYBXC<$6(|>lNLVBb&&6y{NByFCp%6+^ALR@NCTse_wqvNmSWI-m z!$%KlHFH2omF!>#%1l3LTZg(s7eof$7*xB)ZQ0h?ejh?Ta9fDv59+u#MokW+1t8Zb zgHv%K(u9G^Lv`lh#f3<6!JVTL3(dCpxHbnbA;kKqQyd1~^Xe0VIaYBSWm6nsr;dFj z4;G-RyL?cYgsN1{L4ZFFNa;8)Rv0fM0C(~Tkit94 zz#~A)59?QjD&pAPSEQ)p8gP|DS{ng)j=2ux)_EzzJ773GmQ_Cic%3JJhC0t2cx>|v zJcVusIB!%F90{+}8hG3QU4KNeKmK%T>mN57NnCZ^56=0?&3@!j>a>B43pi{!u z7JyDj7`6d)qVp^R=%j>UIY6f+3`+qzIc!Y_=+uN^3BYV|o+$vGo-j-Wm<10%A=(Yk^beI{t%ld@yhKjq0iNjqN4XMGgQtbKubPM$JWBz}YA65k%dm*awtC^+f;a-x4+ddbH^7iDWGg&N0n#MW{kA|=8iMUiFYvMoDY@sPC#t$55gn6ykUTPAr`a@!(;np824>2xJthS z*ZdmT`g5-`BuJs`0LVhz+D9NNa3<=6m;cQLaF?tCv8)zcRSh66*Z|vXhG@$I%U~2l z?`Q zykI#*+rQ=z6Jm=Bui-SfpDYLA=|vzGE(dYm=OC8XM&MDo7ux4UF1~0J1+i%aCUpRe zt3L_uNyQ*cE(38Uy03H%I*)*Bh=Lb^Xj3?I^Hnbeq72(EOK^Y93CNp*uAA{5Lc=ky zx=~RKa4{iTm{_>_vSCm?$Ej=i6@=m%@VvAITnigVg{&@!7CDgs908761meDK5azA} z4?=NOH|PdvabgJ&fW2{Mo$Q0CcD8Qc84%{JPYt5EiG{MdLIAeX%T=D7NIP4%Hw}p9 zg)==!2Lbp#j{u_}hMiao9=!VSyx0gHbeCS`;q&vzeq|fs`y&^X-lso(Ls@-706qmA z7u*T5PMo_w3{se1t2`zWeO^hOvTsohG_;>J0wVqVe+n)AbQCx)yh9;w+J6?NF5Lmo zecS@ieAKL8%bVd@+-KT{yI|S}O>pYckUFs;ry9Ow$CD@ztz5K-*D$^{i(_1llhSh^ zEkL$}tsQt5>QA^;QgjgIfBDmcOgi5YDyu?t6vSnbp=1+@6D& z5MJ}B8q;bRlVoxasyhcUF1+)o`&3r0colr}QJ3hcSdLu;9;td>kf@Tcn<@9sIx&=m z;AD;SCh95=&p;$r{Xz3iWCO^MX83AGJ(yH&eTXgv|0=34#-&WAmw{)U7OU9!Wz^!7 zZ%jZFi@JR;>Mhi7S>V7wQ176|FdW2m?&`qa(ScO^CFPR80HucLHOTy%5s*HR0^8)i h0WYBP*#0Ks^FNSabJA*5${_#%002ovPDHLkV1oKhTl@e3 diff --git a/packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png b/packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png deleted file mode 100644 index a6d6b8609df07bf62e5100a53a01510388bd2b22..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2665 zcmV-v3YPVWP)oFh3q0MFesq&64WThn3$;G69TfjsAv=f2G9}p zgSx99+!YV6qME!>9MD13x)k(+XE7W?_O4LoLb5ND8 zaV{9+P@>42xDfRiYBMSgD$0!vssptcb;&?u9u(LLBKmkZ>RMD=kvD3h`sk6!QYtBa ztlZI#nu$8lJ^q2Z79UTgZe>BU73(Aospiq+?SdMt8lDZ;*?@tyWVZVS_Q7S&*tJaiRlJ z+aSMOmbg3@h5}v;A*c8SbqM3icg-`Cnwl;7Ts%A1RkNIp+Txl-Ckkvg4oxrqGA5ewEgYqwtECD<_3Egu)xGllKt&J8g&+=ac@Jq4-?w6M3b*>w5 z69N3O%=I^6&UL5gZ!}trC7bUj*12xLdkNs~Bz4QdJJ*UDZox2UGR}SNg@lmOvhCc~ z*f_UeXv(=#I#*7>VZx2ObEN~UoGUTl=-@)E;YtCRZ>SVp$p9yG5hEFZ!`wI!spd)n zSk+vK0Vin7FL{7f&6OB%f;SH22dtbcF<|9fi2Fp%q4kxL!b1#l^)8dUwJ zwEf{(wJj@8iYDVnKB`eSU+;ml-t2`@%_)0jDM`+a46xhDbBj2+&Ih>1A>6aky#(-SYyE{R3f#y57wfLs z6w1p~$bp;6!9DX$M+J~S@D6vJAaElETnsX4h9a5tvPhC3L@qB~bOzkL@^z0k_hS{T4PF*TDrgdXp+dzsE? z>V|VR035Pl9n5&-RePFdS{7KAr2vPOqR9=M$vXA1Yy5>w;EsF`;OK{2pkn-kpp9Pw z)r;5JfJKKaT$4qCb{TaXHjb$QA{y0EYy*+b1XI;6Ah- zw13P)xT`>~eFoJC!>{2XL(a_#upp3gaR1#5+L(Jmzp4TBnx{~WHedpJ1ch8JFk~Sw z>F+gN+i+VD?gMXwcIhn8rz`>e>J^TI3E-MW>f}6R-pL}>WMOa0k#jN+`RyUVUC;#D zg|~oS^$6%wpF{^Qr+}X>0PKcr3Fc&>Z>uv@C);pwDs@2bZWhYP!rvGx?_|q{d`t<*XEb#=aOb=N+L@CVBGqImZf&+a zCQEa3$~@#kC);pasdG=f6tuIi0PO-y&tvX%>Mv=oY3U$nD zJ#gMegnQ46pq+3r=;zmgcG+zRc9D~c>z+jo9&D+`E6$LmyFqlmCYw;-Zooma{sR@~ z)_^|YL1&&@|GXo*pivH7k!msl+$Sew3%XJnxajt0K%3M6Bd&YFNy9}tWG^aovK2eX z1aL1%7;KRDrA@eG-Wr6w+;*H_VD~qLiVI`{_;>o)k`{8xa3EJT1O_>#iy_?va0eR? zDV=N%;Zjb%Z2s$@O>w@iqt!I}tLjGk!=p`D23I}N4Be@$(|iSA zf3Ih7b<{zqpDB4WF_5X1(peKe+rASze%u8eKLn#KKXt;UZ+Adf$_TO+vTqshLLJ5c z52HucO=lrNVae5XWOLm!V@n-ObU11!b+DN<$RuU+YsrBq*lYT;?AwJpmNKniF0Q1< zJCo>Q$=v$@&y=sj6{r!Y&y&`0$-I}S!H_~pI&2H8Z1C|BX4VgZ^-! zje3-;x0PBD!M`v*J_)rL^+$<1VJhH*2Fi~aA7s&@_rUHYJ9zD=M%4AFQ`}k8OC$9s XsPq=LnkwKG00000NkvXXu0mjfhAk5^ diff --git a/packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png b/packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png deleted file mode 100644 index a6d6b8609df07bf62e5100a53a01510388bd2b22..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2665 zcmV-v3YPVWP)oFh3q0MFesq&64WThn3$;G69TfjsAv=f2G9}p zgSx99+!YV6qME!>9MD13x)k(+XE7W?_O4LoLb5ND8 zaV{9+P@>42xDfRiYBMSgD$0!vssptcb;&?u9u(LLBKmkZ>RMD=kvD3h`sk6!QYtBa ztlZI#nu$8lJ^q2Z79UTgZe>BU73(Aospiq+?SdMt8lDZ;*?@tyWVZVS_Q7S&*tJaiRlJ z+aSMOmbg3@h5}v;A*c8SbqM3icg-`Cnwl;7Ts%A1RkNIp+Txl-Ckkvg4oxrqGA5ewEgYqwtECD<_3Egu)xGllKt&J8g&+=ac@Jq4-?w6M3b*>w5 z69N3O%=I^6&UL5gZ!}trC7bUj*12xLdkNs~Bz4QdJJ*UDZox2UGR}SNg@lmOvhCc~ z*f_UeXv(=#I#*7>VZx2ObEN~UoGUTl=-@)E;YtCRZ>SVp$p9yG5hEFZ!`wI!spd)n zSk+vK0Vin7FL{7f&6OB%f;SH22dtbcF<|9fi2Fp%q4kxL!b1#l^)8dUwJ zwEf{(wJj@8iYDVnKB`eSU+;ml-t2`@%_)0jDM`+a46xhDbBj2+&Ih>1A>6aky#(-SYyE{R3f#y57wfLs z6w1p~$bp;6!9DX$M+J~S@D6vJAaElETnsX4h9a5tvPhC3L@qB~bOzkL@^z0k_hS{T4PF*TDrgdXp+dzsE? z>V|VR035Pl9n5&-RePFdS{7KAr2vPOqR9=M$vXA1Yy5>w;EsF`;OK{2pkn-kpp9Pw z)r;5JfJKKaT$4qCb{TaXHjb$QA{y0EYy*+b1XI;6Ah- zw13P)xT`>~eFoJC!>{2XL(a_#upp3gaR1#5+L(Jmzp4TBnx{~WHedpJ1ch8JFk~Sw z>F+gN+i+VD?gMXwcIhn8rz`>e>J^TI3E-MW>f}6R-pL}>WMOa0k#jN+`RyUVUC;#D zg|~oS^$6%wpF{^Qr+}X>0PKcr3Fc&>Z>uv@C);pwDs@2bZWhYP!rvGx?_|q{d`t<*XEb#=aOb=N+L@CVBGqImZf&+a zCQEa3$~@#kC);pasdG=f6tuIi0PO-y&tvX%>Mv=oY3U$nD zJ#gMegnQ46pq+3r=;zmgcG+zRc9D~c>z+jo9&D+`E6$LmyFqlmCYw;-Zooma{sR@~ z)_^|YL1&&@|GXo*pivH7k!msl+$Sew3%XJnxajt0K%3M6Bd&YFNy9}tWG^aovK2eX z1aL1%7;KRDrA@eG-Wr6w+;*H_VD~qLiVI`{_;>o)k`{8xa3EJT1O_>#iy_?va0eR? zDV=N%;Zjb%Z2s$@O>w@iqt!I}tLjGk!=p`D23I}N4Be@$(|iSA zf3Ih7b<{zqpDB4WF_5X1(peKe+rASze%u8eKLn#KKXt;UZ+Adf$_TO+vTqshLLJ5c z52HucO=lrNVae5XWOLm!V@n-ObU11!b+DN<$RuU+YsrBq*lYT;?AwJpmNKniF0Q1< zJCo>Q$=v$@&y=sj6{r!Y&y&`0$-I}S!H_~pI&2H8Z1C|BX4VgZ^-! zje3-;x0PBD!M`v*J_)rL^+$<1VJhH*2Fi~aA7s&@_rUHYJ9zD=M%4AFQ`}k8OC$9s XsPq=LnkwKG00000NkvXXu0mjfhAk5^ diff --git a/packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png b/packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png deleted file mode 100644 index 75b2d164a5a98e212cca15ea7bf2ab5de5108680..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3831 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 diff --git a/packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png b/packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png deleted file mode 100644 index c4df70d39da7941ef3f6dcb7f06a192d8dcb308d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1888 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 iW8Zci7-kcv6Uzs@r-FtIZ-&5|)J Q1PU{Fy85}Sb4q9e0B4a5jsO4v diff --git a/packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png b/packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png deleted file mode 100644 index 9da19eacad3b03bb08bbddbbf4ac48dd78b3d838..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 68 zcmeAS@N?(olHy`uVBq!ia0vp^j3CUx0wlM}@Gt=>Zci7-kcv6Uzs@r-FtIZ-&5|)J Q1PU{Fy85}Sb4q9e0B4a5jsO4v diff --git a/packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png b/packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png deleted file mode 100644 index 9da19eacad3b03bb08bbddbbf4ac48dd78b3d838..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 68 zcmeAS@N?(olHy`uVBq!ia0vp^j3CUx0wlM}@Gt=>Zci7-kcv6Uzs@r-FtIZ-&5|)J Q1PU{Fy85}Sb4q9e0B4a5jsO4v diff --git a/packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md b/packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md deleted file mode 100644 index 89c2725b7..000000000 --- a/packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md +++ /dev/null @@ -1,5 +0,0 @@ -# Launch Screen Assets - -You can customize the launch screen with your own desired assets by replacing the image files in this directory. - -You can also do it by opening your Flutter project's Xcode project with `open ios/Runner.xcworkspace`, selecting `Runner/Assets.xcassets` in the Project Navigator and dropping in the desired images. \ No newline at end of file diff --git a/packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner/Base.lproj/LaunchScreen.storyboard b/packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner/Base.lproj/LaunchScreen.storyboard deleted file mode 100644 index f2e259c7c..000000000 --- a/packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner/Base.lproj/LaunchScreen.storyboard +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner/Base.lproj/Main.storyboard b/packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner/Base.lproj/Main.storyboard deleted file mode 100644 index f3c28516f..000000000 --- a/packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner/Base.lproj/Main.storyboard +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner/Info.plist b/packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner/Info.plist deleted file mode 100644 index 5baf7a1cc..000000000 --- a/packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner/Info.plist +++ /dev/null @@ -1,47 +0,0 @@ - - - - - CFBundleDevelopmentRegion - $(DEVELOPMENT_LANGUAGE) - CFBundleDisplayName - Example - CFBundleExecutable - $(EXECUTABLE_NAME) - CFBundleIdentifier - $(PRODUCT_BUNDLE_IDENTIFIER) - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - example - CFBundlePackageType - APPL - CFBundleShortVersionString - $(FLUTTER_BUILD_NAME) - CFBundleSignature - ???? - CFBundleVersion - $(FLUTTER_BUILD_NUMBER) - LSRequiresIPhoneOS - - UILaunchStoryboardName - LaunchScreen - UIMainStoryboardFile - Main - UISupportedInterfaceOrientations - - UIInterfaceOrientationPortrait - UIInterfaceOrientationLandscapeLeft - UIInterfaceOrientationLandscapeRight - - UISupportedInterfaceOrientations~ipad - - UIInterfaceOrientationPortrait - UIInterfaceOrientationPortraitUpsideDown - UIInterfaceOrientationLandscapeLeft - UIInterfaceOrientationLandscapeRight - - UIViewControllerBasedStatusBarAppearance - - - diff --git a/packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner/Runner-Bridging-Header.h b/packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner/Runner-Bridging-Header.h deleted file mode 100644 index 308a2a560..000000000 --- a/packages/syncfusion_pdfviewer_platform_interface/example/ios/Runner/Runner-Bridging-Header.h +++ /dev/null @@ -1 +0,0 @@ -#import "GeneratedPluginRegistrant.h" diff --git a/packages/syncfusion_pdfviewer_platform_interface/example/lib/main.dart b/packages/syncfusion_pdfviewer_platform_interface/example/lib/main.dart deleted file mode 100644 index c476c0306..000000000 --- a/packages/syncfusion_pdfviewer_platform_interface/example/lib/main.dart +++ /dev/null @@ -1,53 +0,0 @@ -import 'package:flutter/material.dart'; -import 'package:syncfusion_flutter_pdfviewer/pdfviewer.dart'; - -void main() { - runApp(MaterialApp( - title: 'Syncfusion PDF Viewer Demo for Web', - theme: ThemeData( - useMaterial3: false, - ), - home: const HomePage(), - )); -} - -/// Represents Homepage for Navigation -class HomePage extends StatefulWidget { - const HomePage({Key? key}) : super(key: key); - - @override - _HomePage createState() => _HomePage(); -} - -class _HomePage extends State { - final GlobalKey _pdfViewerKey = GlobalKey(); - - @override - void initState() { - super.initState(); - } - - @override - Widget build(BuildContext context) { - return Scaffold( - appBar: AppBar( - title: const Text('Syncfusion Flutter PDF Viewer'), - actions: [ - IconButton( - icon: const Icon( - Icons.bookmark, - color: Colors.white, - ), - onPressed: () { - _pdfViewerKey.currentState?.openBookmarkView(); - }, - ), - ], - ), - body: SfPdfViewer.network( - 'https://cdn.syncfusion.com/content/PDFViewer/flutter-succinctly.pdf', - key: _pdfViewerKey, - ), - ); - } -} diff --git a/packages/syncfusion_pdfviewer_platform_interface/example/pubspec.yaml b/packages/syncfusion_pdfviewer_platform_interface/example/pubspec.yaml deleted file mode 100644 index 47624291e..000000000 --- a/packages/syncfusion_pdfviewer_platform_interface/example/pubspec.yaml +++ /dev/null @@ -1,79 +0,0 @@ -name: syncfusion_pdfviewer_platform_interface_example -description: Demonstrates how to use the syncfusion_pdfviewer_platform_interface plugin. - -# The following line prevents the package from being accidentally published to -# pub.dev using `flutter pub publish`. This is preferred for private packages. -publish_to: 'none' # Remove this line if you wish to publish to pub.dev - -environment: - sdk: ">=2.17.0 <4.0.0" - -# Dependencies specify other packages that your package needs in order to work. -# To automatically upgrade your package dependencies to the latest versions -# consider running `flutter pub upgrade --major-versions`. Alternatively, -# dependencies can be manually updated by changing the version numbers below to -# the latest version available on pub.dev. To see which dependencies have newer -# versions available, run `flutter pub outdated`. -dependencies: - flutter: - sdk: flutter - - syncfusion_flutter_pdfviewer: - path: ../../syncfusion_flutter_pdfviewer - - # The following adds the Cupertino Icons font to your application. - # Use with the CupertinoIcons class for iOS style icons. - cupertino_icons: ^1.0.5 - -dev_dependencies: - flutter_test: - sdk: flutter - - # The "flutter_lints" package below contains a set of recommended lints to - # encourage good coding practices. The lint set provided by the package is - # activated in the `analysis_options.yaml` file located at the root of your - # package. See that file for information about deactivating specific lint - # rules and activating additional ones. - flutter_lints: ^1.0.0 - -# For information on the generic Dart part of this file, see the -# following page: https://dart.dev/tools/pub/pubspec - -# The following section is specific to Flutter. -flutter: - - # The following line ensures that the Material Icons font is - # included with your application, so that you can use the icons in - # the material Icons class. - uses-material-design: true - - # To add assets to your application, add an assets section, like this: - # assets: - # - images/a_dot_burr.jpeg - # - images/a_dot_ham.jpeg - - # An image asset can refer to one or more resolution-specific "variants", see - # https://flutter.dev/assets-and-images/#resolution-aware. - - # For details regarding adding assets from package dependencies, see - # https://flutter.dev/assets-and-images/#from-packages - - # To add custom fonts to your application, add a fonts section here, - # in this "flutter" section. Each entry in this list should have a - # "family" key with the font family name, and a "fonts" key with a - # list giving the asset and other descriptors for the font. For - # example: - # fonts: - # - family: Schyler - # fonts: - # - asset: fonts/Schyler-Regular.ttf - # - asset: fonts/Schyler-Italic.ttf - # style: italic - # - family: Trajan Pro - # fonts: - # - asset: fonts/TrajanPro.ttf - # - asset: fonts/TrajanPro_Bold.ttf - # weight: 700 - # - # For details regarding fonts from package dependencies, - # see https://flutter.dev/custom-fonts/#from-packages diff --git a/packages/syncfusion_pdfviewer_platform_interface/example/web/favicon.png b/packages/syncfusion_pdfviewer_platform_interface/example/web/favicon.png deleted file mode 100644 index 8aaa46ac1ae21512746f852a42ba87e4165dfdd1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 917 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|I14-?iy0X7 zltGxWVyS%@P(fs7NJL45ua8x7ey(0(N`6wRUPW#JP&EUCO@$SZnVVXYs8ErclUHn2 zVXFjIVFhG^g!Ppaz)DK8ZIvQ?0~DO|i&7O#^-S~(l1AfjnEK zjFOT9D}DX)@^Za$W4-*MbbUihOG|wNBYh(yU7!lx;>x^|#0uTKVr7USFmqf|i<65o z3raHc^AtelCMM;Vme?vOfh>Xph&xL%(-1c06+^uR^q@XSM&D4+Kp$>4P^%3{)XKjo zGZknv$b36P8?Z_gF{nK@`XI}Z90TzwSQO}0J1!f2c(B=V`5aP@1P1a|PZ!4!3&Gl8 zTYqUsf!gYFyJnXpu0!n&N*SYAX-%d(5gVjrHJWqXQshj@!Zm{!01WsQrH~9=kTxW#6SvuapgMqt>$=j#%eyGrQzr zP{L-3gsMA^$I1&gsBAEL+vxi1*Igl=8#8`5?A-T5=z-sk46WA1IUT)AIZHx1rdUrf zVJrJn<74DDw`j)Ki#gt}mIT-Q`XRa2-jQXQoI%w`nb|XblvzK${ZzlV)m-XcwC(od z71_OEC5Bt9GEXosOXaPTYOia#R4ID2TiU~`zVMl08TV_C%DnU4^+HE>9(CE4D6?Fz oujB08i7adh9xk7*FX66dWH6F5TM;?E2b5PlUHx3vIVCg!0Dx9vYXATM diff --git a/packages/syncfusion_pdfviewer_platform_interface/example/web/icons/Icon-192.png b/packages/syncfusion_pdfviewer_platform_interface/example/web/icons/Icon-192.png deleted file mode 100644 index b749bfef07473333cf1dd31e9eed89862a5d52aa..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 5292 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 diff --git a/packages/syncfusion_pdfviewer_platform_interface/example/web/icons/Icon-512.png b/packages/syncfusion_pdfviewer_platform_interface/example/web/icons/Icon-512.png deleted file mode 100644 index 88cfd48dff1169879ba46840804b412fe02fefd6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 8252 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 diff --git a/packages/syncfusion_pdfviewer_platform_interface/example/web/index.html b/packages/syncfusion_pdfviewer_platform_interface/example/web/index.html deleted file mode 100644 index bd74f3c23..000000000 --- a/packages/syncfusion_pdfviewer_platform_interface/example/web/index.html +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - example - - - - - - - - - - - \ No newline at end of file diff --git a/packages/syncfusion_pdfviewer_platform_interface/example/web/manifest.json b/packages/syncfusion_pdfviewer_platform_interface/example/web/manifest.json deleted file mode 100644 index 096edf8fe..000000000 --- a/packages/syncfusion_pdfviewer_platform_interface/example/web/manifest.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "name": "example", - "short_name": "example", - "start_url": ".", - "display": "standalone", - "background_color": "#0175C2", - "theme_color": "#0175C2", - "description": "A new Flutter project.", - "orientation": "portrait-primary", - "prefer_related_applications": false, - "icons": [ - { - "src": "icons/Icon-192.png", - "sizes": "192x192", - "type": "image/png" - }, - { - "src": "icons/Icon-512.png", - "sizes": "512x512", - "type": "image/png" - }, - { - "src": "icons/Icon-maskable-192.png", - "sizes": "192x192", - "type": "image/png", - "purpose": "maskable" - }, - { - "src": "icons/Icon-maskable-512.png", - "sizes": "512x512", - "type": "image/png", - "purpose": "maskable" - } - ] -} diff --git a/packages/syncfusion_pdfviewer_platform_interface/example/windows/.gitignore b/packages/syncfusion_pdfviewer_platform_interface/example/windows/.gitignore deleted file mode 100644 index d492d0d98..000000000 --- a/packages/syncfusion_pdfviewer_platform_interface/example/windows/.gitignore +++ /dev/null @@ -1,17 +0,0 @@ -flutter/ephemeral/ - -# Visual Studio user-specific files. -*.suo -*.user -*.userosscache -*.sln.docstates - -# Visual Studio build-related files. -x64/ -x86/ - -# Visual Studio cache files -# files ending in .cache can be ignored -*.[Cc]ache -# but keep track of directories ending in .cache -!*.[Cc]ache/ diff --git a/packages/syncfusion_pdfviewer_platform_interface/example/windows/CMakeLists.txt b/packages/syncfusion_pdfviewer_platform_interface/example/windows/CMakeLists.txt deleted file mode 100644 index 1633297a0..000000000 --- a/packages/syncfusion_pdfviewer_platform_interface/example/windows/CMakeLists.txt +++ /dev/null @@ -1,95 +0,0 @@ -cmake_minimum_required(VERSION 3.14) -project(example LANGUAGES CXX) - -set(BINARY_NAME "example") - -cmake_policy(SET CMP0063 NEW) - -set(CMAKE_INSTALL_RPATH "$ORIGIN/lib") - -# Configure build options. -get_property(IS_MULTICONFIG GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG) -if(IS_MULTICONFIG) - set(CMAKE_CONFIGURATION_TYPES "Debug;Profile;Release" - CACHE STRING "" FORCE) -else() - if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES) - set(CMAKE_BUILD_TYPE "Debug" CACHE - STRING "Flutter build mode" FORCE) - set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS - "Debug" "Profile" "Release") - endif() -endif() - -set(CMAKE_EXE_LINKER_FLAGS_PROFILE "${CMAKE_EXE_LINKER_FLAGS_RELEASE}") -set(CMAKE_SHARED_LINKER_FLAGS_PROFILE "${CMAKE_SHARED_LINKER_FLAGS_RELEASE}") -set(CMAKE_C_FLAGS_PROFILE "${CMAKE_C_FLAGS_RELEASE}") -set(CMAKE_CXX_FLAGS_PROFILE "${CMAKE_CXX_FLAGS_RELEASE}") - -# Use Unicode for all projects. -add_definitions(-DUNICODE -D_UNICODE) - -# Compilation settings that should be applied to most targets. -function(APPLY_STANDARD_SETTINGS TARGET) - target_compile_features(${TARGET} PUBLIC cxx_std_17) - target_compile_options(${TARGET} PRIVATE /W4 /WX /wd"4100") - target_compile_options(${TARGET} PRIVATE /EHsc) - target_compile_definitions(${TARGET} PRIVATE "_HAS_EXCEPTIONS=0") - target_compile_definitions(${TARGET} PRIVATE "$<$:_DEBUG>") -endfunction() - -set(FLUTTER_MANAGED_DIR "${CMAKE_CURRENT_SOURCE_DIR}/flutter") - -# Flutter library and tool build rules. -add_subdirectory(${FLUTTER_MANAGED_DIR}) - -# Application build -add_subdirectory("runner") - -# Generated plugin build rules, which manage building the plugins and adding -# them to the application. -include(flutter/generated_plugins.cmake) - - -# === Installation === -# Support files are copied into place next to the executable, so that it can -# run in place. This is done instead of making a separate bundle (as on Linux) -# so that building and running from within Visual Studio will work. -set(BUILD_BUNDLE_DIR "$") -# Make the "install" step default, as it's required to run. -set(CMAKE_VS_INCLUDE_INSTALL_TO_DEFAULT_BUILD 1) -if(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT) - set(CMAKE_INSTALL_PREFIX "${BUILD_BUNDLE_DIR}" CACHE PATH "..." FORCE) -endif() - -set(INSTALL_BUNDLE_DATA_DIR "${CMAKE_INSTALL_PREFIX}/data") -set(INSTALL_BUNDLE_LIB_DIR "${CMAKE_INSTALL_PREFIX}") - -install(TARGETS ${BINARY_NAME} RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}" - COMPONENT Runtime) - -install(FILES "${FLUTTER_ICU_DATA_FILE}" DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" - COMPONENT Runtime) - -install(FILES "${FLUTTER_LIBRARY}" DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" - COMPONENT Runtime) - -if(PLUGIN_BUNDLED_LIBRARIES) - install(FILES "${PLUGIN_BUNDLED_LIBRARIES}" - DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" - COMPONENT Runtime) -endif() - -# Fully re-copy the assets directory on each build to avoid having stale files -# from a previous install. -set(FLUTTER_ASSET_DIR_NAME "flutter_assets") -install(CODE " - file(REMOVE_RECURSE \"${INSTALL_BUNDLE_DATA_DIR}/${FLUTTER_ASSET_DIR_NAME}\") - " COMPONENT Runtime) -install(DIRECTORY "${PROJECT_BUILD_DIR}/${FLUTTER_ASSET_DIR_NAME}" - DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" COMPONENT Runtime) - -# Install the AOT library on non-Debug builds only. -install(FILES "${AOT_LIBRARY}" DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" - CONFIGURATIONS Profile;Release - COMPONENT Runtime) diff --git a/packages/syncfusion_pdfviewer_platform_interface/example/windows/flutter/CMakeLists.txt b/packages/syncfusion_pdfviewer_platform_interface/example/windows/flutter/CMakeLists.txt deleted file mode 100644 index b2e4bd8d6..000000000 --- a/packages/syncfusion_pdfviewer_platform_interface/example/windows/flutter/CMakeLists.txt +++ /dev/null @@ -1,103 +0,0 @@ -cmake_minimum_required(VERSION 3.14) - -set(EPHEMERAL_DIR "${CMAKE_CURRENT_SOURCE_DIR}/ephemeral") - -# Configuration provided via flutter tool. -include(${EPHEMERAL_DIR}/generated_config.cmake) - -# TODO: Move the rest of this into files in ephemeral. See -# https://github.com/flutter/flutter/issues/57146. -set(WRAPPER_ROOT "${EPHEMERAL_DIR}/cpp_client_wrapper") - -# === Flutter Library === -set(FLUTTER_LIBRARY "${EPHEMERAL_DIR}/flutter_windows.dll") - -# Published to parent scope for install step. -set(FLUTTER_LIBRARY ${FLUTTER_LIBRARY} PARENT_SCOPE) -set(FLUTTER_ICU_DATA_FILE "${EPHEMERAL_DIR}/icudtl.dat" PARENT_SCOPE) -set(PROJECT_BUILD_DIR "${PROJECT_DIR}/build/" PARENT_SCOPE) -set(AOT_LIBRARY "${PROJECT_DIR}/build/windows/app.so" PARENT_SCOPE) - -list(APPEND FLUTTER_LIBRARY_HEADERS - "flutter_export.h" - "flutter_windows.h" - "flutter_messenger.h" - "flutter_plugin_registrar.h" - "flutter_texture_registrar.h" -) -list(TRANSFORM FLUTTER_LIBRARY_HEADERS PREPEND "${EPHEMERAL_DIR}/") -add_library(flutter INTERFACE) -target_include_directories(flutter INTERFACE - "${EPHEMERAL_DIR}" -) -target_link_libraries(flutter INTERFACE "${FLUTTER_LIBRARY}.lib") -add_dependencies(flutter flutter_assemble) - -# === Wrapper === -list(APPEND CPP_WRAPPER_SOURCES_CORE - "core_implementations.cc" - "standard_codec.cc" -) -list(TRANSFORM CPP_WRAPPER_SOURCES_CORE PREPEND "${WRAPPER_ROOT}/") -list(APPEND CPP_WRAPPER_SOURCES_PLUGIN - "plugin_registrar.cc" -) -list(TRANSFORM CPP_WRAPPER_SOURCES_PLUGIN PREPEND "${WRAPPER_ROOT}/") -list(APPEND CPP_WRAPPER_SOURCES_APP - "flutter_engine.cc" - "flutter_view_controller.cc" -) -list(TRANSFORM CPP_WRAPPER_SOURCES_APP PREPEND "${WRAPPER_ROOT}/") - -# Wrapper sources needed for a plugin. -add_library(flutter_wrapper_plugin STATIC - ${CPP_WRAPPER_SOURCES_CORE} - ${CPP_WRAPPER_SOURCES_PLUGIN} -) -apply_standard_settings(flutter_wrapper_plugin) -set_target_properties(flutter_wrapper_plugin PROPERTIES - POSITION_INDEPENDENT_CODE ON) -set_target_properties(flutter_wrapper_plugin PROPERTIES - CXX_VISIBILITY_PRESET hidden) -target_link_libraries(flutter_wrapper_plugin PUBLIC flutter) -target_include_directories(flutter_wrapper_plugin PUBLIC - "${WRAPPER_ROOT}/include" -) -add_dependencies(flutter_wrapper_plugin flutter_assemble) - -# Wrapper sources needed for the runner. -add_library(flutter_wrapper_app STATIC - ${CPP_WRAPPER_SOURCES_CORE} - ${CPP_WRAPPER_SOURCES_APP} -) -apply_standard_settings(flutter_wrapper_app) -target_link_libraries(flutter_wrapper_app PUBLIC flutter) -target_include_directories(flutter_wrapper_app PUBLIC - "${WRAPPER_ROOT}/include" -) -add_dependencies(flutter_wrapper_app flutter_assemble) - -# === Flutter tool backend === -# _phony_ is a non-existent file to force this command to run every time, -# since currently there's no way to get a full input/output list from the -# flutter tool. -set(PHONY_OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/_phony_") -set_source_files_properties("${PHONY_OUTPUT}" PROPERTIES SYMBOLIC TRUE) -add_custom_command( - OUTPUT ${FLUTTER_LIBRARY} ${FLUTTER_LIBRARY_HEADERS} - ${CPP_WRAPPER_SOURCES_CORE} ${CPP_WRAPPER_SOURCES_PLUGIN} - ${CPP_WRAPPER_SOURCES_APP} - ${PHONY_OUTPUT} - COMMAND ${CMAKE_COMMAND} -E env - ${FLUTTER_TOOL_ENVIRONMENT} - "${FLUTTER_ROOT}/packages/flutter_tools/bin/tool_backend.bat" - windows-x64 $ - VERBATIM -) -add_custom_target(flutter_assemble DEPENDS - "${FLUTTER_LIBRARY}" - ${FLUTTER_LIBRARY_HEADERS} - ${CPP_WRAPPER_SOURCES_CORE} - ${CPP_WRAPPER_SOURCES_PLUGIN} - ${CPP_WRAPPER_SOURCES_APP} -) diff --git a/packages/syncfusion_pdfviewer_platform_interface/example/windows/flutter/generated_plugin_registrant.cc b/packages/syncfusion_pdfviewer_platform_interface/example/windows/flutter/generated_plugin_registrant.cc deleted file mode 100644 index 42c63bcfd..000000000 --- a/packages/syncfusion_pdfviewer_platform_interface/example/windows/flutter/generated_plugin_registrant.cc +++ /dev/null @@ -1,14 +0,0 @@ -// -// Generated file. Do not edit. -// - -// clang-format off - -#include "generated_plugin_registrant.h" - -#include - -void RegisterPlugins(flutter::PluginRegistry* registry) { - SyncfusionPdfviewerWindowsPluginRegisterWithRegistrar( - registry->GetRegistrarForPlugin("SyncfusionPdfviewerWindowsPlugin")); -} diff --git a/packages/syncfusion_pdfviewer_platform_interface/example/windows/flutter/generated_plugin_registrant.h b/packages/syncfusion_pdfviewer_platform_interface/example/windows/flutter/generated_plugin_registrant.h deleted file mode 100644 index dc139d85a..000000000 --- a/packages/syncfusion_pdfviewer_platform_interface/example/windows/flutter/generated_plugin_registrant.h +++ /dev/null @@ -1,15 +0,0 @@ -// -// Generated file. Do not edit. -// - -// clang-format off - -#ifndef GENERATED_PLUGIN_REGISTRANT_ -#define GENERATED_PLUGIN_REGISTRANT_ - -#include - -// Registers Flutter plugins. -void RegisterPlugins(flutter::PluginRegistry* registry); - -#endif // GENERATED_PLUGIN_REGISTRANT_ diff --git a/packages/syncfusion_pdfviewer_platform_interface/example/windows/flutter/generated_plugins.cmake b/packages/syncfusion_pdfviewer_platform_interface/example/windows/flutter/generated_plugins.cmake deleted file mode 100644 index 90342fb89..000000000 --- a/packages/syncfusion_pdfviewer_platform_interface/example/windows/flutter/generated_plugins.cmake +++ /dev/null @@ -1,16 +0,0 @@ -# -# Generated file, do not edit. -# - -list(APPEND FLUTTER_PLUGIN_LIST - syncfusion_pdfviewer_windows -) - -set(PLUGIN_BUNDLED_LIBRARIES) - -foreach(plugin ${FLUTTER_PLUGIN_LIST}) - add_subdirectory(flutter/ephemeral/.plugin_symlinks/${plugin}/windows plugins/${plugin}) - target_link_libraries(${BINARY_NAME} PRIVATE ${plugin}_plugin) - list(APPEND PLUGIN_BUNDLED_LIBRARIES $) - list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${plugin}_bundled_libraries}) -endforeach(plugin) diff --git a/packages/syncfusion_pdfviewer_platform_interface/example/windows/runner/CMakeLists.txt b/packages/syncfusion_pdfviewer_platform_interface/example/windows/runner/CMakeLists.txt deleted file mode 100644 index de2d8916b..000000000 --- a/packages/syncfusion_pdfviewer_platform_interface/example/windows/runner/CMakeLists.txt +++ /dev/null @@ -1,17 +0,0 @@ -cmake_minimum_required(VERSION 3.14) -project(runner LANGUAGES CXX) - -add_executable(${BINARY_NAME} WIN32 - "flutter_window.cpp" - "main.cpp" - "utils.cpp" - "win32_window.cpp" - "${FLUTTER_MANAGED_DIR}/generated_plugin_registrant.cc" - "Runner.rc" - "runner.exe.manifest" -) -apply_standard_settings(${BINARY_NAME}) -target_compile_definitions(${BINARY_NAME} PRIVATE "NOMINMAX") -target_link_libraries(${BINARY_NAME} PRIVATE flutter flutter_wrapper_app) -target_include_directories(${BINARY_NAME} PRIVATE "${CMAKE_SOURCE_DIR}") -add_dependencies(${BINARY_NAME} flutter_assemble) diff --git a/packages/syncfusion_pdfviewer_platform_interface/example/windows/runner/Runner.rc b/packages/syncfusion_pdfviewer_platform_interface/example/windows/runner/Runner.rc deleted file mode 100644 index 5fdea291c..000000000 --- a/packages/syncfusion_pdfviewer_platform_interface/example/windows/runner/Runner.rc +++ /dev/null @@ -1,121 +0,0 @@ -// Microsoft Visual C++ generated resource script. -// -#pragma code_page(65001) -#include "resource.h" - -#define APSTUDIO_READONLY_SYMBOLS -///////////////////////////////////////////////////////////////////////////// -// -// Generated from the TEXTINCLUDE 2 resource. -// -#include "winres.h" - -///////////////////////////////////////////////////////////////////////////// -#undef APSTUDIO_READONLY_SYMBOLS - -///////////////////////////////////////////////////////////////////////////// -// English (United States) resources - -#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU) -LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US - -#ifdef APSTUDIO_INVOKED -///////////////////////////////////////////////////////////////////////////// -// -// TEXTINCLUDE -// - -1 TEXTINCLUDE -BEGIN - "resource.h\0" -END - -2 TEXTINCLUDE -BEGIN - "#include ""winres.h""\r\n" - "\0" -END - -3 TEXTINCLUDE -BEGIN - "\r\n" - "\0" -END - -#endif // APSTUDIO_INVOKED - - -///////////////////////////////////////////////////////////////////////////// -// -// Icon -// - -// Icon with lowest ID value placed first to ensure application icon -// remains consistent on all systems. -IDI_APP_ICON ICON "resources\\app_icon.ico" - - -///////////////////////////////////////////////////////////////////////////// -// -// Version -// - -#ifdef FLUTTER_BUILD_NUMBER -#define VERSION_AS_NUMBER FLUTTER_BUILD_NUMBER -#else -#define VERSION_AS_NUMBER 1,0,0 -#endif - -#ifdef FLUTTER_BUILD_NAME -#define VERSION_AS_STRING #FLUTTER_BUILD_NAME -#else -#define VERSION_AS_STRING "1.0.0" -#endif - -VS_VERSION_INFO VERSIONINFO - FILEVERSION VERSION_AS_NUMBER - PRODUCTVERSION VERSION_AS_NUMBER - FILEFLAGSMASK VS_FFI_FILEFLAGSMASK -#ifdef _DEBUG - FILEFLAGS VS_FF_DEBUG -#else - FILEFLAGS 0x0L -#endif - FILEOS VOS__WINDOWS32 - FILETYPE VFT_APP - FILESUBTYPE 0x0L -BEGIN - BLOCK "StringFileInfo" - BEGIN - BLOCK "040904e4" - BEGIN - VALUE "CompanyName", "com.example" "\0" - VALUE "FileDescription", "example" "\0" - VALUE "FileVersion", VERSION_AS_STRING "\0" - VALUE "InternalName", "example" "\0" - VALUE "LegalCopyright", "Copyright (C) 2022 com.example. All rights reserved." "\0" - VALUE "OriginalFilename", "example.exe" "\0" - VALUE "ProductName", "example" "\0" - VALUE "ProductVersion", VERSION_AS_STRING "\0" - END - END - BLOCK "VarFileInfo" - BEGIN - VALUE "Translation", 0x409, 1252 - END -END - -#endif // English (United States) resources -///////////////////////////////////////////////////////////////////////////// - - - -#ifndef APSTUDIO_INVOKED -///////////////////////////////////////////////////////////////////////////// -// -// Generated from the TEXTINCLUDE 3 resource. -// - - -///////////////////////////////////////////////////////////////////////////// -#endif // not APSTUDIO_INVOKED diff --git a/packages/syncfusion_pdfviewer_platform_interface/example/windows/runner/flutter_window.cpp b/packages/syncfusion_pdfviewer_platform_interface/example/windows/runner/flutter_window.cpp deleted file mode 100644 index b43b9095e..000000000 --- a/packages/syncfusion_pdfviewer_platform_interface/example/windows/runner/flutter_window.cpp +++ /dev/null @@ -1,61 +0,0 @@ -#include "flutter_window.h" - -#include - -#include "flutter/generated_plugin_registrant.h" - -FlutterWindow::FlutterWindow(const flutter::DartProject& project) - : project_(project) {} - -FlutterWindow::~FlutterWindow() {} - -bool FlutterWindow::OnCreate() { - if (!Win32Window::OnCreate()) { - return false; - } - - RECT frame = GetClientArea(); - - // The size here must match the window dimensions to avoid unnecessary surface - // creation / destruction in the startup path. - flutter_controller_ = std::make_unique( - frame.right - frame.left, frame.bottom - frame.top, project_); - // Ensure that basic setup of the controller was successful. - if (!flutter_controller_->engine() || !flutter_controller_->view()) { - return false; - } - RegisterPlugins(flutter_controller_->engine()); - SetChildContent(flutter_controller_->view()->GetNativeWindow()); - return true; -} - -void FlutterWindow::OnDestroy() { - if (flutter_controller_) { - flutter_controller_ = nullptr; - } - - Win32Window::OnDestroy(); -} - -LRESULT -FlutterWindow::MessageHandler(HWND hwnd, UINT const message, - WPARAM const wparam, - LPARAM const lparam) noexcept { - // Give Flutter, including plugins, an opportunity to handle window messages. - if (flutter_controller_) { - std::optional result = - flutter_controller_->HandleTopLevelWindowProc(hwnd, message, wparam, - lparam); - if (result) { - return *result; - } - } - - switch (message) { - case WM_FONTCHANGE: - flutter_controller_->engine()->ReloadSystemFonts(); - break; - } - - return Win32Window::MessageHandler(hwnd, message, wparam, lparam); -} diff --git a/packages/syncfusion_pdfviewer_platform_interface/example/windows/runner/flutter_window.h b/packages/syncfusion_pdfviewer_platform_interface/example/windows/runner/flutter_window.h deleted file mode 100644 index 6da0652f0..000000000 --- a/packages/syncfusion_pdfviewer_platform_interface/example/windows/runner/flutter_window.h +++ /dev/null @@ -1,33 +0,0 @@ -#ifndef RUNNER_FLUTTER_WINDOW_H_ -#define RUNNER_FLUTTER_WINDOW_H_ - -#include -#include - -#include - -#include "win32_window.h" - -// A window that does nothing but host a Flutter view. -class FlutterWindow : public Win32Window { - public: - // Creates a new FlutterWindow hosting a Flutter view running |project|. - explicit FlutterWindow(const flutter::DartProject& project); - virtual ~FlutterWindow(); - - protected: - // Win32Window: - bool OnCreate() override; - void OnDestroy() override; - LRESULT MessageHandler(HWND window, UINT const message, WPARAM const wparam, - LPARAM const lparam) noexcept override; - - private: - // The project to run. - flutter::DartProject project_; - - // The Flutter instance hosted by this window. - std::unique_ptr flutter_controller_; -}; - -#endif // RUNNER_FLUTTER_WINDOW_H_ diff --git a/packages/syncfusion_pdfviewer_platform_interface/example/windows/runner/main.cpp b/packages/syncfusion_pdfviewer_platform_interface/example/windows/runner/main.cpp deleted file mode 100644 index bcb57b0e2..000000000 --- a/packages/syncfusion_pdfviewer_platform_interface/example/windows/runner/main.cpp +++ /dev/null @@ -1,43 +0,0 @@ -#include -#include -#include - -#include "flutter_window.h" -#include "utils.h" - -int APIENTRY wWinMain(_In_ HINSTANCE instance, _In_opt_ HINSTANCE prev, - _In_ wchar_t *command_line, _In_ int show_command) { - // Attach to console when present (e.g., 'flutter run') or create a - // new console when running with a debugger. - if (!::AttachConsole(ATTACH_PARENT_PROCESS) && ::IsDebuggerPresent()) { - CreateAndAttachConsole(); - } - - // Initialize COM, so that it is available for use in the library and/or - // plugins. - ::CoInitializeEx(nullptr, COINIT_APARTMENTTHREADED); - - flutter::DartProject project(L"data"); - - std::vector command_line_arguments = - GetCommandLineArguments(); - - project.set_dart_entrypoint_arguments(std::move(command_line_arguments)); - - FlutterWindow window(project); - Win32Window::Point origin(10, 10); - Win32Window::Size size(1280, 720); - if (!window.CreateAndShow(L"example", origin, size)) { - return EXIT_FAILURE; - } - window.SetQuitOnClose(true); - - ::MSG msg; - while (::GetMessage(&msg, nullptr, 0, 0)) { - ::TranslateMessage(&msg); - ::DispatchMessage(&msg); - } - - ::CoUninitialize(); - return EXIT_SUCCESS; -} diff --git a/packages/syncfusion_pdfviewer_platform_interface/example/windows/runner/resource.h b/packages/syncfusion_pdfviewer_platform_interface/example/windows/runner/resource.h deleted file mode 100644 index 66a65d1e4..000000000 --- a/packages/syncfusion_pdfviewer_platform_interface/example/windows/runner/resource.h +++ /dev/null @@ -1,16 +0,0 @@ -//{{NO_DEPENDENCIES}} -// Microsoft Visual C++ generated include file. -// Used by Runner.rc -// -#define IDI_APP_ICON 101 - -// Next default values for new objects -// -#ifdef APSTUDIO_INVOKED -#ifndef APSTUDIO_READONLY_SYMBOLS -#define _APS_NEXT_RESOURCE_VALUE 102 -#define _APS_NEXT_COMMAND_VALUE 40001 -#define _APS_NEXT_CONTROL_VALUE 1001 -#define _APS_NEXT_SYMED_VALUE 101 -#endif -#endif diff --git a/packages/syncfusion_pdfviewer_platform_interface/example/windows/runner/resources/app_icon.ico b/packages/syncfusion_pdfviewer_platform_interface/example/windows/runner/resources/app_icon.ico deleted file mode 100644 index c04e20caf6370ebb9253ad831cc31de4a9c965f6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 33772 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 diff --git a/packages/syncfusion_pdfviewer_platform_interface/example/windows/runner/runner.exe.manifest b/packages/syncfusion_pdfviewer_platform_interface/example/windows/runner/runner.exe.manifest deleted file mode 100644 index c977c4a42..000000000 --- a/packages/syncfusion_pdfviewer_platform_interface/example/windows/runner/runner.exe.manifest +++ /dev/null @@ -1,20 +0,0 @@ - - - - - PerMonitorV2 - - - - - - - - - - - - - - - diff --git a/packages/syncfusion_pdfviewer_platform_interface/example/windows/runner/utils.cpp b/packages/syncfusion_pdfviewer_platform_interface/example/windows/runner/utils.cpp deleted file mode 100644 index d19bdbbcc..000000000 --- a/packages/syncfusion_pdfviewer_platform_interface/example/windows/runner/utils.cpp +++ /dev/null @@ -1,64 +0,0 @@ -#include "utils.h" - -#include -#include -#include -#include - -#include - -void CreateAndAttachConsole() { - if (::AllocConsole()) { - FILE *unused; - if (freopen_s(&unused, "CONOUT$", "w", stdout)) { - _dup2(_fileno(stdout), 1); - } - if (freopen_s(&unused, "CONOUT$", "w", stderr)) { - _dup2(_fileno(stdout), 2); - } - std::ios::sync_with_stdio(); - FlutterDesktopResyncOutputStreams(); - } -} - -std::vector GetCommandLineArguments() { - // Convert the UTF-16 command line arguments to UTF-8 for the Engine to use. - int argc; - wchar_t** argv = ::CommandLineToArgvW(::GetCommandLineW(), &argc); - if (argv == nullptr) { - return std::vector(); - } - - std::vector command_line_arguments; - - // Skip the first argument as it's the binary name. - for (int i = 1; i < argc; i++) { - command_line_arguments.push_back(Utf8FromUtf16(argv[i])); - } - - ::LocalFree(argv); - - return command_line_arguments; -} - -std::string Utf8FromUtf16(const wchar_t* utf16_string) { - if (utf16_string == nullptr) { - return std::string(); - } - int target_length = ::WideCharToMultiByte( - CP_UTF8, WC_ERR_INVALID_CHARS, utf16_string, - -1, nullptr, 0, nullptr, nullptr); - if (target_length == 0) { - return std::string(); - } - std::string utf8_string; - utf8_string.resize(target_length); - int converted_length = ::WideCharToMultiByte( - CP_UTF8, WC_ERR_INVALID_CHARS, utf16_string, - -1, utf8_string.data(), - target_length, nullptr, nullptr); - if (converted_length == 0) { - return std::string(); - } - return utf8_string; -} diff --git a/packages/syncfusion_pdfviewer_platform_interface/example/windows/runner/utils.h b/packages/syncfusion_pdfviewer_platform_interface/example/windows/runner/utils.h deleted file mode 100644 index 3879d5475..000000000 --- a/packages/syncfusion_pdfviewer_platform_interface/example/windows/runner/utils.h +++ /dev/null @@ -1,19 +0,0 @@ -#ifndef RUNNER_UTILS_H_ -#define RUNNER_UTILS_H_ - -#include -#include - -// Creates a console for the process, and redirects stdout and stderr to -// it for both the runner and the Flutter library. -void CreateAndAttachConsole(); - -// Takes a null-terminated wchar_t* encoded in UTF-16 and returns a std::string -// encoded in UTF-8. Returns an empty std::string on failure. -std::string Utf8FromUtf16(const wchar_t* utf16_string); - -// Gets the command line arguments passed in as a std::vector, -// encoded in UTF-8. Returns an empty std::vector on failure. -std::vector GetCommandLineArguments(); - -#endif // RUNNER_UTILS_H_ diff --git a/packages/syncfusion_pdfviewer_platform_interface/example/windows/runner/win32_window.cpp b/packages/syncfusion_pdfviewer_platform_interface/example/windows/runner/win32_window.cpp deleted file mode 100644 index c10f08dc7..000000000 --- a/packages/syncfusion_pdfviewer_platform_interface/example/windows/runner/win32_window.cpp +++ /dev/null @@ -1,245 +0,0 @@ -#include "win32_window.h" - -#include - -#include "resource.h" - -namespace { - -constexpr const wchar_t kWindowClassName[] = L"FLUTTER_RUNNER_WIN32_WINDOW"; - -// The number of Win32Window objects that currently exist. -static int g_active_window_count = 0; - -using EnableNonClientDpiScaling = BOOL __stdcall(HWND hwnd); - -// Scale helper to convert logical scaler values to physical using passed in -// scale factor -int Scale(int source, double scale_factor) { - return static_cast(source * scale_factor); -} - -// Dynamically loads the |EnableNonClientDpiScaling| from the User32 module. -// This API is only needed for PerMonitor V1 awareness mode. -void EnableFullDpiSupportIfAvailable(HWND hwnd) { - HMODULE user32_module = LoadLibraryA("User32.dll"); - if (!user32_module) { - return; - } - auto enable_non_client_dpi_scaling = - reinterpret_cast( - GetProcAddress(user32_module, "EnableNonClientDpiScaling")); - if (enable_non_client_dpi_scaling != nullptr) { - enable_non_client_dpi_scaling(hwnd); - FreeLibrary(user32_module); - } -} - -} // namespace - -// Manages the Win32Window's window class registration. -class WindowClassRegistrar { - public: - ~WindowClassRegistrar() = default; - - // Returns the singleton registar instance. - static WindowClassRegistrar* GetInstance() { - if (!instance_) { - instance_ = new WindowClassRegistrar(); - } - return instance_; - } - - // Returns the name of the window class, registering the class if it hasn't - // previously been registered. - const wchar_t* GetWindowClass(); - - // Unregisters the window class. Should only be called if there are no - // instances of the window. - void UnregisterWindowClass(); - - private: - WindowClassRegistrar() = default; - - static WindowClassRegistrar* instance_; - - bool class_registered_ = false; -}; - -WindowClassRegistrar* WindowClassRegistrar::instance_ = nullptr; - -const wchar_t* WindowClassRegistrar::GetWindowClass() { - if (!class_registered_) { - WNDCLASS window_class{}; - window_class.hCursor = LoadCursor(nullptr, IDC_ARROW); - window_class.lpszClassName = kWindowClassName; - window_class.style = CS_HREDRAW | CS_VREDRAW; - window_class.cbClsExtra = 0; - window_class.cbWndExtra = 0; - window_class.hInstance = GetModuleHandle(nullptr); - window_class.hIcon = - LoadIcon(window_class.hInstance, MAKEINTRESOURCE(IDI_APP_ICON)); - window_class.hbrBackground = 0; - window_class.lpszMenuName = nullptr; - window_class.lpfnWndProc = Win32Window::WndProc; - RegisterClass(&window_class); - class_registered_ = true; - } - return kWindowClassName; -} - -void WindowClassRegistrar::UnregisterWindowClass() { - UnregisterClass(kWindowClassName, nullptr); - class_registered_ = false; -} - -Win32Window::Win32Window() { - ++g_active_window_count; -} - -Win32Window::~Win32Window() { - --g_active_window_count; - Destroy(); -} - -bool Win32Window::CreateAndShow(const std::wstring& title, - const Point& origin, - const Size& size) { - Destroy(); - - const wchar_t* window_class = - WindowClassRegistrar::GetInstance()->GetWindowClass(); - - const POINT target_point = {static_cast(origin.x), - static_cast(origin.y)}; - HMONITOR monitor = MonitorFromPoint(target_point, MONITOR_DEFAULTTONEAREST); - UINT dpi = FlutterDesktopGetDpiForMonitor(monitor); - double scale_factor = dpi / 96.0; - - HWND window = CreateWindow( - window_class, title.c_str(), WS_OVERLAPPEDWINDOW | WS_VISIBLE, - Scale(origin.x, scale_factor), Scale(origin.y, scale_factor), - Scale(size.width, scale_factor), Scale(size.height, scale_factor), - nullptr, nullptr, GetModuleHandle(nullptr), this); - - if (!window) { - return false; - } - - return OnCreate(); -} - -// static -LRESULT CALLBACK Win32Window::WndProc(HWND const window, - UINT const message, - WPARAM const wparam, - LPARAM const lparam) noexcept { - if (message == WM_NCCREATE) { - auto window_struct = reinterpret_cast(lparam); - SetWindowLongPtr(window, GWLP_USERDATA, - reinterpret_cast(window_struct->lpCreateParams)); - - auto that = static_cast(window_struct->lpCreateParams); - EnableFullDpiSupportIfAvailable(window); - that->window_handle_ = window; - } else if (Win32Window* that = GetThisFromHandle(window)) { - return that->MessageHandler(window, message, wparam, lparam); - } - - return DefWindowProc(window, message, wparam, lparam); -} - -LRESULT -Win32Window::MessageHandler(HWND hwnd, - UINT const message, - WPARAM const wparam, - LPARAM const lparam) noexcept { - switch (message) { - case WM_DESTROY: - window_handle_ = nullptr; - Destroy(); - if (quit_on_close_) { - PostQuitMessage(0); - } - return 0; - - case WM_DPICHANGED: { - auto newRectSize = reinterpret_cast(lparam); - LONG newWidth = newRectSize->right - newRectSize->left; - LONG newHeight = newRectSize->bottom - newRectSize->top; - - SetWindowPos(hwnd, nullptr, newRectSize->left, newRectSize->top, newWidth, - newHeight, SWP_NOZORDER | SWP_NOACTIVATE); - - return 0; - } - case WM_SIZE: { - RECT rect = GetClientArea(); - if (child_content_ != nullptr) { - // Size and position the child window. - MoveWindow(child_content_, rect.left, rect.top, rect.right - rect.left, - rect.bottom - rect.top, TRUE); - } - return 0; - } - - case WM_ACTIVATE: - if (child_content_ != nullptr) { - SetFocus(child_content_); - } - return 0; - } - - return DefWindowProc(window_handle_, message, wparam, lparam); -} - -void Win32Window::Destroy() { - OnDestroy(); - - if (window_handle_) { - DestroyWindow(window_handle_); - window_handle_ = nullptr; - } - if (g_active_window_count == 0) { - WindowClassRegistrar::GetInstance()->UnregisterWindowClass(); - } -} - -Win32Window* Win32Window::GetThisFromHandle(HWND const window) noexcept { - return reinterpret_cast( - GetWindowLongPtr(window, GWLP_USERDATA)); -} - -void Win32Window::SetChildContent(HWND content) { - child_content_ = content; - SetParent(content, window_handle_); - RECT frame = GetClientArea(); - - MoveWindow(content, frame.left, frame.top, frame.right - frame.left, - frame.bottom - frame.top, true); - - SetFocus(child_content_); -} - -RECT Win32Window::GetClientArea() { - RECT frame; - GetClientRect(window_handle_, &frame); - return frame; -} - -HWND Win32Window::GetHandle() { - return window_handle_; -} - -void Win32Window::SetQuitOnClose(bool quit_on_close) { - quit_on_close_ = quit_on_close; -} - -bool Win32Window::OnCreate() { - // No-op; provided for subclasses. - return true; -} - -void Win32Window::OnDestroy() { - // No-op; provided for subclasses. -} diff --git a/packages/syncfusion_pdfviewer_platform_interface/example/windows/runner/win32_window.h b/packages/syncfusion_pdfviewer_platform_interface/example/windows/runner/win32_window.h deleted file mode 100644 index 17ba43112..000000000 --- a/packages/syncfusion_pdfviewer_platform_interface/example/windows/runner/win32_window.h +++ /dev/null @@ -1,98 +0,0 @@ -#ifndef RUNNER_WIN32_WINDOW_H_ -#define RUNNER_WIN32_WINDOW_H_ - -#include - -#include -#include -#include - -// A class abstraction for a high DPI-aware Win32 Window. Intended to be -// inherited from by classes that wish to specialize with custom -// rendering and input handling -class Win32Window { - public: - struct Point { - unsigned int x; - unsigned int y; - Point(unsigned int x, unsigned int y) : x(x), y(y) {} - }; - - struct Size { - unsigned int width; - unsigned int height; - Size(unsigned int width, unsigned int height) - : width(width), height(height) {} - }; - - Win32Window(); - virtual ~Win32Window(); - - // Creates and shows a win32 window with |title| and position and size using - // |origin| and |size|. New windows are created on the default monitor. Window - // sizes are specified to the OS in physical pixels, hence to ensure a - // consistent size to will treat the width height passed in to this function - // as logical pixels and scale to appropriate for the default monitor. Returns - // true if the window was created successfully. - bool CreateAndShow(const std::wstring& title, - const Point& origin, - const Size& size); - - // Release OS resources associated with window. - void Destroy(); - - // Inserts |content| into the window tree. - void SetChildContent(HWND content); - - // Returns the backing Window handle to enable clients to set icon and other - // window properties. Returns nullptr if the window has been destroyed. - HWND GetHandle(); - - // If true, closing this window will quit the application. - void SetQuitOnClose(bool quit_on_close); - - // Return a RECT representing the bounds of the current client area. - RECT GetClientArea(); - - protected: - // Processes and route salient window messages for mouse handling, - // size change and DPI. Delegates handling of these to member overloads that - // inheriting classes can handle. - virtual LRESULT MessageHandler(HWND window, - UINT const message, - WPARAM const wparam, - LPARAM const lparam) noexcept; - - // Called when CreateAndShow is called, allowing subclass window-related - // setup. Subclasses should return false if setup fails. - virtual bool OnCreate(); - - // Called when Destroy is called. - virtual void OnDestroy(); - - private: - friend class WindowClassRegistrar; - - // OS callback called by message pump. Handles the WM_NCCREATE message which - // is passed when the non-client area is being created and enables automatic - // non-client DPI scaling so that the non-client area automatically - // responsponds to changes in DPI. All other messages are handled by - // MessageHandler. - static LRESULT CALLBACK WndProc(HWND const window, - UINT const message, - WPARAM const wparam, - LPARAM const lparam) noexcept; - - // Retrieves a class instance pointer for |window| - static Win32Window* GetThisFromHandle(HWND const window) noexcept; - - bool quit_on_close_ = false; - - // window handle for top level window. - HWND window_handle_ = nullptr; - - // window handle for hosted content. - HWND child_content_ = nullptr; -}; - -#endif // RUNNER_WIN32_WINDOW_H_ diff --git a/packages/syncfusion_pdfviewer_platform_interface/lib/pdfviewer_platform_interface.dart b/packages/syncfusion_pdfviewer_platform_interface/lib/pdfviewer_platform_interface.dart deleted file mode 100644 index 81a29938d..000000000 --- a/packages/syncfusion_pdfviewer_platform_interface/lib/pdfviewer_platform_interface.dart +++ /dev/null @@ -1 +0,0 @@ -export 'src/pdfviewer_platform_interface.dart'; diff --git a/packages/syncfusion_pdfviewer_platform_interface/lib/src/method_channel_pdfviewer.dart b/packages/syncfusion_pdfviewer_platform_interface/lib/src/method_channel_pdfviewer.dart deleted file mode 100644 index bd71c47ee..000000000 --- a/packages/syncfusion_pdfviewer_platform_interface/lib/src/method_channel_pdfviewer.dart +++ /dev/null @@ -1,62 +0,0 @@ -import 'dart:async'; -import 'package:flutter/services.dart'; -import 'package:syncfusion_pdfviewer_platform_interface/pdfviewer_platform_interface.dart'; - -class MethodChannelPdfViewer extends PdfViewerPlatform { - final MethodChannel _channel = MethodChannel('syncfusion_flutter_pdfviewer'); - - /// Initializes the PDF renderer instance in respective platform by loading the PDF from the provided byte information. - /// If success, returns page count else returns error message from respective platform - @override - Future initializePdfRenderer( - Uint8List documentBytes, String documentID) async { - return _channel.invokeMethod('initializePdfRenderer', { - 'documentBytes': documentBytes, - 'documentID': documentID - }); - } - - /// Gets the height of all pages in the document. - @override - Future getPagesHeight(String documentID) async { - return _channel.invokeMethod('getPagesHeight', documentID); - } - - /// Gets the width of all pages in the document. - @override - Future getPagesWidth(String documentID) async { - return _channel.invokeMethod('getPagesWidth', documentID); - } - - /// Gets the image's bytes information of the specified page. - @override - Future getImage( - int pageNumber, double currentScale, String documentID) async { - return _channel.invokeMethod('getImage', { - 'index': pageNumber, - 'scale': currentScale, - 'documentID': documentID - }); - } - - /// Gets the image's bytes information of the specified portion of the page - @override - Future getTileImage(int pageNumber, double currentScale, double x, - double y, double width, double height, String documentID) async { - return _channel.invokeMethod('getTileImage', { - 'pageNumber': pageNumber, - 'scale': currentScale, - 'x': x, - 'y': y, - 'width': width, - 'height': height, - 'documentID': documentID - }); - } - - /// Closes the PDF document. - @override - Future closeDocument(String documentID) async { - return _channel.invokeMethod('closeDocument', documentID); - } -} diff --git a/packages/syncfusion_pdfviewer_platform_interface/lib/src/pdfviewer_platform_interface.dart b/packages/syncfusion_pdfviewer_platform_interface/lib/src/pdfviewer_platform_interface.dart deleted file mode 100644 index 04a285611..000000000 --- a/packages/syncfusion_pdfviewer_platform_interface/lib/src/pdfviewer_platform_interface.dart +++ /dev/null @@ -1,69 +0,0 @@ -library syncfusion_pdfviewer_platform_interface; - -import 'dart:async'; -import 'dart:typed_data'; -import 'package:plugin_platform_interface/plugin_platform_interface.dart'; -import 'package:syncfusion_pdfviewer_platform_interface/src/method_channel_pdfviewer.dart'; - -/// The interface that implementations of syncfusion_flutter_pdfviewer must implement. -/// -/// Platform implementations should extend this class rather than implement it as `syncfusion_flutter_pdfviewer` -/// does not consider newly added methods to be breaking changes. Extending this class -/// (using `extends`) ensures that the subclass will get the default implementation, while -/// platform implementations that `implements` this interface will be broken by newly added -/// [PdfViewerPlatform] methods -abstract class PdfViewerPlatform extends PlatformInterface { - /// Constructs a PdfViewerPlatform. - PdfViewerPlatform() : super(token: _token); - static PdfViewerPlatform _instance = MethodChannelPdfViewer(); - - static final Object _token = Object(); - - /// The default instance of [PdfViewerPlatform] to use. - /// - /// Defaults to [MethodChannelPdfViewer] - static PdfViewerPlatform get instance => _instance; - - /// Platform-specific plugins should set this with their own platform-specific - /// class that extends [PdfViewerPlatform] when they register themselves. - static set instance(PdfViewerPlatform instance) { - PlatformInterface.verifyToken(instance, _token); - _instance = instance; - } - - /// Initializes the PDF renderer instance in respective platform by loading the PDF from the specified path. - /// - /// If success, returns page count else returns error message from respective platform - Future initializePdfRenderer( - Uint8List documentBytes, String documentID) async { - throw UnimplementedError( - 'initializePdfRenderer() has not been implemented.'); - } - - /// Gets the height of all pages in the document. - Future getPagesHeight(String documentID) async { - throw UnimplementedError('getPagesHeight() has not been implemented.'); - } - - /// Gets the width of all pages in the document. - Future getPagesWidth(String documentID) async { - throw UnimplementedError('getPagesWidth() has not been implemented.'); - } - - /// Gets the image's bytes information of the specified page. - Future getImage( - int pageNumber, double scale, String documentID) async { - throw UnimplementedError('getImage() has not been implemented.'); - } - - /// Gets the image's bytes information of the specified portion of the page. - Future getTileImage(int pageNumber, double scale, double x, - double y, double width, double height, String documentID) async { - throw UnimplementedError('getTileImage() has not been implemented.'); - } - - /// Closes the PDF document. - Future closeDocument(String documentID) async { - throw UnimplementedError('closeDocument() has not been implemented.'); - } -} diff --git a/packages/syncfusion_pdfviewer_platform_interface/pubspec.yaml b/packages/syncfusion_pdfviewer_platform_interface/pubspec.yaml deleted file mode 100644 index 9af6d9c6f..000000000 --- a/packages/syncfusion_pdfviewer_platform_interface/pubspec.yaml +++ /dev/null @@ -1,17 +0,0 @@ -name: syncfusion_pdfviewer_platform_interface -description: A common platform interface for the Flutter PDF Viewer library that lets you view the PDF documents seamlessly and efficiently. -version: 24.2.9 -homepage: https://github.com/syncfusion/flutter-widgets/tree/master/packages/syncfusion_pdfviewer_platform_interface - -environment: - sdk: '>=2.17.0 <4.0.0' - flutter: ">=1.20.0" - -dependencies: - flutter: - sdk: flutter - plugin_platform_interface: ^2.0.0 - -dev_dependencies: - flutter_test: - sdk: flutter \ No newline at end of file From badcad958a150fa2dbe6d3c9fa20ae093e7e80b5 Mon Sep 17 00:00:00 2001 From: LokeshPalani Date: Tue, 26 Mar 2024 08:49:30 +0530 Subject: [PATCH 6/6] Updated pubspec file --- .../example/pubspec.yaml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/packages/syncfusion_flutter_pdfviewer_platform_interface/example/pubspec.yaml b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/pubspec.yaml index 53d29af35..267f4b839 100644 --- a/packages/syncfusion_flutter_pdfviewer_platform_interface/example/pubspec.yaml +++ b/packages/syncfusion_flutter_pdfviewer_platform_interface/example/pubspec.yaml @@ -18,12 +18,8 @@ dependencies: flutter: sdk: flutter - syncfusion_flutter_pdfviewer: - git: - url: https://SyncfusionBuild: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@github.com/essential-studio/flutter-pdfviewer - path: flutter_pdfviewer/syncfusion_flutter_pdfviewer - branch: development - ref: development + syncfusion_flutter_pdfviewer: ^25.1.35 + # The following adds the Cupertino Icons font to your application. # Use with the CupertinoIcons class for iOS style icons.