Three widgets under lib/src/terminal/src/ui/ and one TerminalView parameter were leftovers from the era when TerminalView wrapped its viewport in a real Scrollable. The Scrollable path was replaced with PointerScrollEvent → PgUp/PgDown translation (alive, well-tested in terminal_view_test.dart); these helpers stayed behind with tests but zero production callers. Drops: - TerminalScrollGestureHandler (scroll_handler.dart, 100 LOC) - InfiniteScrollView (infinite_scroll_view.dart, 117 LOC) - KeyboardVisibilty (keyboard_visibility.dart, 59 LOC) — last production caller was removed in048e835- TerminalView.simulateScroll parameter — declared, never read - The matching test groups + imports in ui_widget_test.dart - The KeyboardVisibilty export from the terminal barrel Net: -585 lines from lib/ + test/, no behavior change, and infinite_scroll_view.dart stops being the 90%-coverage outlier we were apologising for in the previous test sweep. Same shape as T-93 (dead onTapUp wiring), T-95 (dead tertiary tap), and048e835(dead scrollController plumbing). Public-or-tested surface that no caller exercised. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
36 lines
1.2 KiB
Dart
36 lines
1.2 KiB
Dart
// clide terminal — based on xterm.dart v4.0.0 by xuty (MIT).
|
|
// See LICENSE in this directory for the original copyright notice.
|
|
library;
|
|
|
|
export 'src/core/buffer/buffer.dart';
|
|
export 'src/core/buffer/cell_flags.dart';
|
|
export 'src/core/buffer/cell_offset.dart';
|
|
export 'src/core/buffer/line.dart';
|
|
export 'src/core/buffer/range.dart';
|
|
export 'src/core/buffer/range_block.dart';
|
|
export 'src/core/buffer/range_line.dart';
|
|
export 'src/core/buffer/segment.dart';
|
|
export 'src/core/cell.dart';
|
|
export 'src/core/color.dart';
|
|
export 'src/core/cursor.dart';
|
|
export 'src/core/escape/handler.dart';
|
|
export 'src/core/escape/parser.dart';
|
|
export 'src/core/input/handler.dart';
|
|
export 'src/core/input/keys.dart';
|
|
export 'src/core/mouse/button.dart';
|
|
export 'src/core/mouse/button_state.dart';
|
|
export 'src/core/mouse/handler.dart';
|
|
export 'src/core/mouse/mode.dart';
|
|
export 'src/core/platform.dart';
|
|
export 'src/core/state.dart';
|
|
export 'src/terminal.dart';
|
|
export 'src/terminal_view.dart';
|
|
export 'src/ui/controller.dart';
|
|
export 'src/ui/cursor_type.dart';
|
|
export 'src/ui/pointer_input.dart';
|
|
export 'src/ui/selection_mode.dart';
|
|
export 'src/ui/shortcut/shortcuts.dart';
|
|
export 'src/ui/terminal_text_style.dart';
|
|
export 'src/ui/terminal_theme.dart';
|
|
export 'src/ui/themes.dart';
|