1pub mod app;
2mod emoji;
3pub mod input;
4pub mod theme;
5pub mod ui;
6
7pub use app::App;
8pub use dartboard_editor::{
9 backspace, begin_paint_stroke, capture_bounds, capture_selection, copy_selection_or_cell,
10 cut_selection_or_cell, delete_at_cursor, diff_canvas_op, dismiss_floating, draw_border,
11 draw_selection_border, end_paint_stroke, export_bounds_as_text, export_selection_as_text,
12 export_system_clipboard_text, fill_bounds, fill_selection, fill_selection_or_cell,
13 handle_editor_action, handle_editor_key_press, insert_char, paint_floating_drag,
14 paste_primary_swatch, paste_text_block, smart_fill, smart_fill_glyph, stamp_clipboard,
15 stamp_floating, transpose_selection_corner, ActionSpec, AppIntent, AppKey, AppKeyCode,
16 AppModifiers, AppPointerButton, AppPointerEvent, AppPointerKind, BindingContext, Bounds,
17 Clipboard, EditorAction, EditorKeyDispatch, EditorSession, FloatingSelection, HostEffect,
18 KeyBinding, KeyMap, KeyTrigger, Mode, MoveDir, PanDrag, Selection, SelectionShape, Swatch,
19 SwatchActivation, Viewport, SWATCH_CAPACITY,
20};
21pub use input::{
22 app_intent_from_crossterm, app_key_from_crossterm, app_pointer_event_from_crossterm,
23};