-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathenums.dart
More file actions
68 lines (58 loc) · 1.55 KB
/
enums.dart
File metadata and controls
68 lines (58 loc) · 1.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
import 'package:flutter/material.dart';
import 'package:phosphor_flutter/phosphor_flutter.dart';
enum ProviderState { inital, empty, loading, loaded, success, error }
enum DeviceType { mobile, tab, desktop }
enum NodeType {
note,
rectangle,
square,
diamond,
roundedSquare,
parallelogram,
cylinder,
circle,
triangle,
invertedTriangle,
}
enum ConnectionPoint { up, down, left, right }
// NEW: Enum for connector line types
enum ConnectionType { solid, dotted, dashed }
// Enum to define the different shapes
enum ShapeType {
square,
diamond,
roundedSquare,
parallelogram,
cylinder,
circle,
triangle,
invertedTriangle,
}
enum DrawMode {
pointer(iconData: Icons.pan_tool_alt),
hand(iconData: PhosphorIconsRegular.hand),
circle(iconData: Icons.circle_outlined),
rectangle(iconData: Icons.rectangle_outlined),
square(iconData: Icons.square_outlined),
diamond(iconData: Icons.diamond_outlined),
roundedSquare(iconData: Icons.rounded_corner),
parallelogram(iconData: Icons.square_foot_outlined),
cylinder(iconData: Icons.view_in_ar_outlined),
triangle(iconData: Icons.change_history),
invertedTriangle(iconData: Icons.warning_amber_rounded),
textBox(iconData: PhosphorIconsRegular.textT),
stickyNote(iconData: PhosphorIconsRegular.notePencil);
const DrawMode({required this.iconData});
final IconData iconData;
}
enum InteractionMode {
none,
moving,
resizingTopLeft,
resizingTopRight,
resizingBottomLeft,
resizingBottomRight,
editingText,
drawingConnector,
}
enum ConnectorAnchor { top, bottom, left, right }