You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
561 B
21 lines
561 B
/**
|
|
* Canvas Navigation Types
|
|
*
|
|
* Defines types for canvas navigation and interaction preferences.
|
|
*/
|
|
|
|
export type PanMode = "space" | "middleMouse" | "always";
|
|
export type ZoomMode = "scroll" | "altScroll" | "ctrlScroll";
|
|
export type SelectionMode = "click" | "altDrag" | "shiftDrag";
|
|
|
|
export interface CanvasNavigationSettings {
|
|
panMode: PanMode;
|
|
zoomMode: ZoomMode;
|
|
selectionMode: SelectionMode;
|
|
}
|
|
|
|
export const defaultCanvasNavigationSettings: CanvasNavigationSettings = {
|
|
panMode: "space",
|
|
zoomMode: "altScroll",
|
|
selectionMode: "click",
|
|
};
|
|
|