2022-10-28 15:09:14 +00:00
|
|
|
import 'dart:math';
|
2022-10-24 00:02:35 +00:00
|
|
|
import 'dart:ui';
|
2022-10-30 20:57:13 +00:00
|
|
|
|
2022-10-29 10:33:47 +00:00
|
|
|
import 'package:fluentui_system_icons/fluentui_system_icons.dart';
|
2022-10-29 19:39:08 +00:00
|
|
|
import 'package:flutter/gestures.dart';
|
2022-10-24 00:02:35 +00:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
2022-10-31 18:29:58 +00:00
|
|
|
import '../export/export_pdf.dart';
|
2022-10-30 20:57:13 +00:00
|
|
|
import '../savesystem/note_file.dart';
|
2022-10-29 20:55:38 +00:00
|
|
|
import '../widgets/icon_material_button.dart';
|
|
|
|
import '../widgets/tool_bar.dart';
|
2022-10-30 20:57:13 +00:00
|
|
|
import 'my_painter.dart';
|
|
|
|
import 'paint_controller.dart';
|
|
|
|
import 'screen_document_mapping.dart';
|
2022-10-24 00:02:35 +00:00
|
|
|
|
2022-10-29 15:39:25 +00:00
|
|
|
/// Handles input events and draws canvas element
|
2022-10-24 10:27:38 +00:00
|
|
|
class DrawingPage extends StatefulWidget {
|
2022-10-29 18:06:20 +00:00
|
|
|
// path to the .dbnote file
|
|
|
|
final String filePath;
|
2022-10-30 20:57:13 +00:00
|
|
|
final String name;
|
2022-10-29 18:06:20 +00:00
|
|
|
|
2022-10-30 20:57:13 +00:00
|
|
|
const DrawingPage({Key? key, required this.filePath, required this.name})
|
|
|
|
: super(key: key);
|
2022-10-24 00:02:35 +00:00
|
|
|
|
|
|
|
@override
|
2022-10-24 10:27:38 +00:00
|
|
|
State<DrawingPage> createState() => _DrawingPageState();
|
2022-10-24 00:02:35 +00:00
|
|
|
}
|
|
|
|
|
2022-10-24 10:27:38 +00:00
|
|
|
class _DrawingPageState extends State<DrawingPage> {
|
2022-10-26 22:15:13 +00:00
|
|
|
double zoom = .75;
|
|
|
|
double basezoom = 1.0;
|
|
|
|
Offset offset = const Offset(.0, .0);
|
2022-10-24 10:27:38 +00:00
|
|
|
|
2022-10-29 18:06:20 +00:00
|
|
|
late PaintController controller;
|
|
|
|
late NoteFile noteFile = NoteFile(widget.filePath);
|
2022-10-27 22:55:37 +00:00
|
|
|
|
|
|
|
@override
|
|
|
|
void initState() {
|
|
|
|
super.initState();
|
|
|
|
|
2022-10-29 18:06:20 +00:00
|
|
|
controller = PaintController(noteFile);
|
|
|
|
noteFile.init().then((value) => controller.loadStrokesFromFile());
|
|
|
|
|
2022-10-27 22:55:37 +00:00
|
|
|
// todo might be weird behaviour if used with short side
|
|
|
|
final screenWidth =
|
|
|
|
(window.physicalSize.longestSide / window.devicePixelRatio);
|
2022-10-29 15:39:25 +00:00
|
|
|
_calcNewPageOffset(const Offset(.0, .0), screenWidth - 45);
|
2022-10-27 22:55:37 +00:00
|
|
|
}
|
|
|
|
|
2022-10-29 18:06:20 +00:00
|
|
|
@override
|
|
|
|
void dispose() {
|
|
|
|
super.dispose();
|
|
|
|
|
|
|
|
noteFile.close();
|
|
|
|
}
|
|
|
|
|
2022-10-24 00:02:35 +00:00
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return Scaffold(
|
2022-10-30 20:57:13 +00:00
|
|
|
appBar: AppBar(
|
|
|
|
backgroundColor: Colors.blueGrey,
|
|
|
|
title: Text(widget.name),
|
|
|
|
actions: [
|
|
|
|
IconMaterialButton(
|
|
|
|
icon: const Icon(FluentIcons.book_open_48_filled),
|
|
|
|
color: const Color.fromRGBO(255, 255, 255, .85),
|
|
|
|
onPressed: () {
|
|
|
|
// todo implement
|
|
|
|
},
|
|
|
|
),
|
|
|
|
IconMaterialButton(
|
|
|
|
icon: const Icon(FluentIcons.document_one_page_24_regular),
|
|
|
|
color: const Color.fromRGBO(255, 255, 255, .85),
|
|
|
|
onPressed: () {
|
|
|
|
// todo implement
|
2022-10-31 18:29:58 +00:00
|
|
|
exportPDF(controller.strokes, '${widget.name}.pdf');
|
2022-10-30 20:57:13 +00:00
|
|
|
},
|
|
|
|
),
|
|
|
|
IconMaterialButton(
|
|
|
|
icon: const Icon(Icons.attachment_outlined),
|
|
|
|
color: const Color.fromRGBO(255, 255, 255, .85),
|
|
|
|
onPressed: () {
|
|
|
|
// todo implement
|
|
|
|
},
|
|
|
|
rotation: -pi / 4,
|
|
|
|
),
|
|
|
|
IconMaterialButton(
|
|
|
|
icon: const Icon(Icons.more_vert),
|
|
|
|
color: const Color.fromRGBO(255, 255, 255, .85),
|
|
|
|
onPressed: () {
|
|
|
|
// todo implement
|
|
|
|
},
|
|
|
|
),
|
|
|
|
]),
|
2022-10-29 10:33:47 +00:00
|
|
|
body: Row(
|
|
|
|
children: [
|
2022-10-29 15:39:25 +00:00
|
|
|
ToolBar(
|
|
|
|
onPenChange: (pen) {
|
|
|
|
controller.changePen(pen);
|
|
|
|
},
|
2022-10-29 10:33:47 +00:00
|
|
|
),
|
|
|
|
Expanded(child: RepaintBoundary(child: _buildCanvas())),
|
|
|
|
],
|
|
|
|
),
|
2022-10-24 00:02:35 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2022-10-27 22:55:37 +00:00
|
|
|
// calculate new page offset from mousepointer delta
|
|
|
|
void _calcNewPageOffset(Offset delta, double canvasWidth) {
|
|
|
|
if (zoom > 1.0) {
|
|
|
|
Offset newOffset = offset + delta;
|
|
|
|
// don't allow navigating out of page if zoomed in
|
|
|
|
if (newOffset.dx > .0) {
|
|
|
|
setState(() {
|
|
|
|
offset = Offset(.0, newOffset.dy);
|
|
|
|
});
|
|
|
|
} else if (newOffset.dx < (-canvasWidth * zoom) + canvasWidth) {
|
|
|
|
setState(() {
|
|
|
|
offset = Offset((-canvasWidth * zoom) + canvasWidth, newOffset.dy);
|
|
|
|
});
|
2022-10-30 20:57:13 +00:00
|
|
|
debugPrint(offset.toString());
|
2022-10-27 22:55:37 +00:00
|
|
|
} else {
|
|
|
|
setState(() {
|
|
|
|
offset = offset + delta;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
setState(() {
|
|
|
|
// keep page x centered if zoomed out
|
|
|
|
offset = Offset(
|
|
|
|
(canvasWidth - (canvasWidth * zoom)) / 2, offset.dy + delta.dy);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void _onPointerMove(PointerMoveEvent event, Size size) {
|
|
|
|
Offset pos = event.localPosition;
|
|
|
|
final scale = calcPageDependentScale(zoom, a4Page, size);
|
|
|
|
pos = translateScreenToDocumentPoint(pos, scale, offset);
|
|
|
|
|
|
|
|
if (!a4Page.contains(pos)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-10-29 19:39:08 +00:00
|
|
|
controller.pointMoveEvent(pos, event);
|
2022-10-28 15:09:14 +00:00
|
|
|
|
2022-10-29 19:39:08 +00:00
|
|
|
if (event.kind == PointerDeviceKind.touch ||
|
|
|
|
(event.kind == PointerDeviceKind.mouse &&
|
|
|
|
event.buttons == kSecondaryMouseButton)) {
|
2022-10-27 22:55:37 +00:00
|
|
|
_calcNewPageOffset(event.delta, size.width);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-24 00:02:35 +00:00
|
|
|
Widget _buildCanvas() {
|
2022-10-27 22:55:37 +00:00
|
|
|
final size = MediaQuery.of(context).size;
|
2022-10-29 10:33:47 +00:00
|
|
|
final canvasSize = Size(size.width - 45, size.height);
|
|
|
|
|
2022-10-28 21:59:12 +00:00
|
|
|
return Listener(
|
|
|
|
behavior: HitTestBehavior.opaque,
|
2022-10-29 15:39:25 +00:00
|
|
|
onPointerMove: (e) => _onPointerMove(e, canvasSize),
|
2022-10-29 19:39:08 +00:00
|
|
|
onPointerDown: (d) {
|
|
|
|
Offset pos = d.localPosition;
|
2022-10-29 15:39:25 +00:00
|
|
|
final scale = calcPageDependentScale(zoom, a4Page, canvasSize);
|
|
|
|
pos = translateScreenToDocumentPoint(pos, scale, offset);
|
2022-10-29 19:39:08 +00:00
|
|
|
controller.pointDownEvent(pos, d);
|
2022-10-28 21:59:12 +00:00
|
|
|
},
|
2022-10-29 19:39:08 +00:00
|
|
|
onPointerUp: (e) {
|
|
|
|
controller.pointUpEvent(e);
|
2022-10-28 21:59:12 +00:00
|
|
|
},
|
|
|
|
child: GestureDetector(
|
|
|
|
onScaleUpdate: (details) {
|
|
|
|
if (details.scale == 1.0) return;
|
|
|
|
|
|
|
|
setState(() {
|
|
|
|
zoom = (basezoom * details.scale).clamp(0.25, 5.0);
|
|
|
|
});
|
2022-10-24 00:02:35 +00:00
|
|
|
},
|
2022-10-28 21:59:12 +00:00
|
|
|
onScaleEnd: (details) {
|
|
|
|
basezoom = zoom;
|
|
|
|
},
|
|
|
|
child: CustomPaint(
|
2022-10-29 10:33:47 +00:00
|
|
|
painter: MyPainter(
|
|
|
|
offset: offset,
|
|
|
|
zoom: zoom,
|
2022-10-29 15:39:25 +00:00
|
|
|
canvasSize: canvasSize,
|
|
|
|
controller: controller),
|
2022-10-29 10:33:47 +00:00
|
|
|
size: canvasSize,
|
2022-10-24 00:02:35 +00:00
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|