|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
|
|
|
import '../../../extensions/quill_configurations_ext.dart';
|
|
|
|
import '../../../l10n/extensions/localizations.dart';
|
|
|
|
import '../../../models/config/toolbar/buttons/indent_configurations.dart';
|
|
|
|
import '../../../models/themes/quill_icon_theme.dart';
|
|
|
|
import '../../quill/quill_controller.dart';
|
|
|
|
import '../base_toolbar.dart'
|
|
|
|
show QuillToolbarBaseButtonOptions, QuillToolbarIconButton;
|
|
|
|
|
|
|
|
class QuillToolbarIndentButton extends StatefulWidget {
|
|
|
|
const QuillToolbarIndentButton({
|
|
|
|
required this.controller,
|
|
|
|
required this.isIncrease,
|
|
|
|
this.options = const QuillToolbarIndentButtonOptions(),
|
|
|
|
super.key,
|
|
|
|
});
|
|
|
|
|
|
|
|
final QuillController controller;
|
|
|
|
final bool isIncrease;
|
|
|
|
final QuillToolbarIndentButtonOptions options;
|
|
|
|
|
|
|
|
@override
|
|
|
|
QuillToolbarIndentButtonState createState() =>
|
|
|
|
QuillToolbarIndentButtonState();
|
|
|
|
}
|
|
|
|
|
|
|
|
class QuillToolbarIndentButtonState extends State<QuillToolbarIndentButton> {
|
|
|
|
QuillToolbarIndentButtonOptions get options {
|
|
|
|
return widget.options;
|
|
|
|
}
|
|
|
|
|
|
|
|
QuillController get controller {
|
|
|
|
return widget.controller;
|
|
|
|
}
|
|
|
|
|
|
|
|
double get iconSize {
|
|
|
|
final baseFontSize = baseButtonExtraOptions.globalIconSize;
|
|
|
|
final iconSize = options.iconSize;
|
|
|
|
return iconSize ?? baseFontSize;
|
|
|
|
}
|
|
|
|
|
|
|
|
double get iconButtonFactor {
|
|
|
|
final baseIconFactor = baseButtonExtraOptions.globalIconButtonFactor;
|
|
|
|
final iconButtonFactor = options.iconButtonFactor;
|
|
|
|
return iconButtonFactor ?? baseIconFactor;
|
|
|
|
}
|
|
|
|
|
|
|
|
VoidCallback? get afterButtonPressed {
|
|
|
|
return options.afterButtonPressed ??
|
|
|
|
baseButtonExtraOptions.afterButtonPressed;
|
|
|
|
}
|
|
|
|
|
|
|
|
QuillIconTheme? get iconTheme {
|
|
|
|
return options.iconTheme ?? baseButtonExtraOptions.iconTheme;
|
|
|
|
}
|
|
|
|
|
|
|
|
QuillToolbarBaseButtonOptions get baseButtonExtraOptions {
|
|
|
|
return context.requireQuillToolbarBaseButtonOptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
IconData get iconData {
|
|
|
|
return options.iconData ??
|
|
|
|
baseButtonExtraOptions.iconData ??
|
|
|
|
(widget.isIncrease
|
|
|
|
? Icons.format_indent_increase
|
|
|
|
: Icons.format_indent_decrease);
|
|
|
|
}
|
|
|
|
|
|
|
|
String get tooltip {
|
|
|
|
return options.tooltip ??
|
|
|
|
baseButtonExtraOptions.tooltip ??
|
|
|
|
(widget.isIncrease
|
|
|
|
? context.loc.increaseIndent
|
|
|
|
: context.loc.decreaseIndent);
|
|
|
|
}
|
|
|
|
|
|
|
|
void _sharedOnPressed() {
|
|
|
|
widget.controller.indentSelection(widget.isIncrease);
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
final childBuilder =
|
|
|
|
options.childBuilder ?? baseButtonExtraOptions.childBuilder;
|
|
|
|
|
|
|
|
if (childBuilder != null) {
|
|
|
|
return childBuilder(
|
|
|
|
QuillToolbarIndentButtonOptions(
|
|
|
|
afterButtonPressed: afterButtonPressed,
|
|
|
|
iconData: iconData,
|
|
|
|
iconSize: iconSize,
|
|
|
|
iconButtonFactor: iconButtonFactor,
|
|
|
|
iconTheme: iconTheme,
|
|
|
|
tooltip: tooltip,
|
|
|
|
),
|
|
|
|
QuillToolbarIndentButtonExtraOptions(
|
|
|
|
controller: controller,
|
|
|
|
context: context,
|
|
|
|
onPressed: () {
|
|
|
|
_sharedOnPressed();
|
|
|
|
afterButtonPressed?.call();
|
|
|
|
},
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
final theme = Theme.of(context);
|
|
|
|
|
|
|
|
final iconColor = iconTheme?.iconUnselectedColor ?? theme.iconTheme.color;
|
|
|
|
return QuillToolbarIconButton(
|
|
|
|
tooltip: tooltip,
|
|
|
|
icon: Icon(iconData, size: iconSize * iconButtonFactor, color: iconColor),
|
|
|
|
isFilled: false,
|
|
|
|
onPressed: _sharedOnPressed,
|
|
|
|
afterPressed: afterButtonPressed,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|