103 lines
3.2 KiB
Dart
103 lines
3.2 KiB
Dart
library html_editor;
|
|
|
|
export 'package:html_editor_enhanced/src/widgets/toolbar_widget.dart';
|
|
export 'package:html_editor_enhanced/utils/callbacks.dart';
|
|
export 'package:html_editor_enhanced/utils/toolbar.dart';
|
|
export 'package:html_editor_enhanced/utils/plugins.dart';
|
|
export 'package:html_editor_enhanced/utils/file_upload_model.dart';
|
|
export 'package:html_editor_enhanced/utils/options.dart';
|
|
export 'package:html_editor_enhanced/utils/utils.dart'
|
|
hide setState, intersperse, getRandString;
|
|
|
|
export 'package:html_editor_enhanced/src/html_editor_unsupported.dart'
|
|
if (dart.library.html) 'package:html_editor_enhanced/src/html_editor_web.dart'
|
|
if (dart.library.io) 'package:html_editor_enhanced/src/html_editor_mobile.dart';
|
|
|
|
export 'package:html_editor_enhanced/src/html_editor_controller_unsupported.dart'
|
|
if (dart.library.html) 'package:html_editor_enhanced/src/html_editor_controller_web.dart'
|
|
if (dart.library.io) 'package:html_editor_enhanced/src/html_editor_controller_mobile.dart';
|
|
|
|
export 'package:html_editor_enhanced/utils/shims/flutter_inappwebview_fake.dart'
|
|
if (dart.library.io) 'package:flutter_inappwebview/flutter_inappwebview.dart';
|
|
|
|
/// Defines the 3 different cases for file insertion failing
|
|
enum UploadError { unsupportedFile, exceededMaxSize, jsException }
|
|
|
|
/// Manages the notification type for a notification displayed at the bottom of
|
|
/// the editor
|
|
enum NotificationType { info, warning, success, danger, plaintext }
|
|
|
|
/// Manages the way the toolbar displays:
|
|
/// [nativeGrid] - a grid view (non scrollable) of all the buttons
|
|
/// [nativeScrollable] - a scrollable one-line view of all the buttons
|
|
/// [nativeExpandable] - has an icon to switch between grid and scrollable formats
|
|
/// on the fly
|
|
/// [summernote] - uses the default summernote buttons (no native controls and
|
|
/// reduced feature support) //todo
|
|
enum ToolbarType { nativeGrid, nativeScrollable, nativeExpandable }
|
|
|
|
/// Manages the position of the toolbar, whether above or below the editor
|
|
/// [custom] - removes the toolbar. This is useful when you want to implement the
|
|
/// toolbar in a custom location using [ToolbarWidget]
|
|
///
|
|
/// Note: This is ignored when [ToolbarType.summernote] is set.
|
|
enum ToolbarPosition { aboveEditor, belowEditor, custom }
|
|
|
|
/// Returns the type of button pressed in the `onButtonPressed` function
|
|
enum ButtonType {
|
|
style,
|
|
bold,
|
|
italic,
|
|
underline,
|
|
clearFormatting,
|
|
strikethrough,
|
|
superscript,
|
|
subscript,
|
|
foregroundColor,
|
|
highlightColor,
|
|
ul,
|
|
ol,
|
|
alignLeft,
|
|
alignCenter,
|
|
alignRight,
|
|
alignJustify,
|
|
increaseIndent,
|
|
decreaseIndent,
|
|
ltr,
|
|
rtl,
|
|
link,
|
|
picture,
|
|
audio,
|
|
video,
|
|
otherFile,
|
|
table,
|
|
hr,
|
|
fullscreen,
|
|
codeview,
|
|
undo,
|
|
redo,
|
|
help,
|
|
copy,
|
|
paste
|
|
}
|
|
|
|
/// Returns the type of dropdown changed in the `onDropdownChanged` function
|
|
enum DropdownType {
|
|
style,
|
|
fontName,
|
|
fontSize,
|
|
fontSizeUnit,
|
|
listStyles,
|
|
lineHeight,
|
|
caseConverter
|
|
}
|
|
|
|
/// Sets the direction the dropdown menu opens
|
|
enum DropdownMenuDirection { down, up }
|
|
|
|
/// Returns the type of file inserted in `onLinkInsertInt
|
|
enum InsertFileType { image, audio, video }
|
|
|
|
/// Sets how the virtual keyboard appears on mobile devices
|
|
enum HtmlInputType { decimal, email, numeric, tel, url, text }
|