Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: expose events (on_double_tap, on_pan_start) in WindowDragArea #5043

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions packages/flet/lib/flet.dart
Original file line number Diff line number Diff line change
Expand Up @@ -19,23 +19,41 @@ export 'src/models/page_size_view_model.dart';
export 'src/utils.dart';
export 'src/utils/alignment.dart';
export 'src/utils/animations.dart';
export 'src/utils/auto_complete.dart';
export 'src/utils/autofill.dart';
export 'src/utils/badge.dart';
export 'src/utils/borders.dart';
export 'src/utils/box.dart';
export 'src/utils/browser_context_menu.dart';
export 'src/utils/buttons.dart';
export 'src/utils/charts.dart';
export 'src/utils/client_storage.dart';
export 'src/utils/clipboard.dart';
export 'src/utils/collections.dart';
export 'src/utils/colors.dart';
export 'src/utils/cupertino_colors.dart';
export 'src/utils/cupertino_icons.dart';
export 'src/utils/dash_path.dart';
export 'src/utils/debouncer.dart';
export 'src/utils/desktop.dart';
export 'src/utils/dismissible.dart';
export 'src/utils/drawing.dart';
export 'src/utils/edge_insets.dart';
export 'src/utils/form_field.dart';
export 'src/utils/gradient.dart';
export 'src/utils/icons.dart';
export 'src/utils/images.dart';
export 'src/utils/launch_url.dart';
export 'src/utils/locale.dart';
export 'src/utils/markdown.dart';
export 'src/utils/material_icons.dart';
export 'src/utils/material_state.dart';
export 'src/utils/menu.dart';
export 'src/utils/mouse.dart';
export 'src/utils/networking.dart';
export 'src/utils/numbers.dart';
export 'src/utils/others.dart';
export 'src/utils/overlay_style.dart';
export 'src/utils/platform.dart';
export 'src/utils/platform_utils_non_web.dart'
if (dart.library.js) "src/utils/platform_utils_web.dart";
Expand All @@ -45,4 +63,5 @@ export 'src/utils/text.dart';
export 'src/utils/textfield.dart';
export 'src/utils/theme.dart';
export 'src/utils/time.dart';
export 'src/utils/tooltip.dart';
export 'src/utils/transforms.dart';
8 changes: 0 additions & 8 deletions packages/flet/lib/src/controls/create_control.dart
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,6 @@ import 'textfield.dart';
import 'time_picker.dart';
import 'transparent_pointer.dart';
import 'vertical_divider.dart';
import 'window_drag_area.dart';

Widget createControl(Control? parent, String id, bool parentDisabled,
{Widget? nextChild, bool? parentAdaptive}) {
Expand Down Expand Up @@ -979,13 +978,6 @@ Widget createWidget(
parentAdaptive: parentAdaptive,
children: controlView.children,
);
case "windowdragarea":
return WindowDragAreaControl(
parent: parent,
control: controlView.control,
children: controlView.children,
parentDisabled: parentDisabled,
parentAdaptive: parentAdaptive);
case "linechart":
return LineChartControl(
key: key,
Expand Down
2 changes: 1 addition & 1 deletion packages/flet/lib/src/controls/file_picker.dart
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ class _FilePickerControlState extends State<FilePickerControl>
sendEvent();
});
}
// saveFile
// getDirectoryPath
else if (state?.toLowerCase() == "getdirectorypath" && !kIsWeb) {
FilePicker.platform
.getDirectoryPath(
Expand Down
75 changes: 0 additions & 75 deletions packages/flet/lib/src/controls/window_drag_area.dart

This file was deleted.

8 changes: 5 additions & 3 deletions packages/flet/lib/src/reducers.dart
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ import 'package:flutter/foundation.dart';
import 'package:url_launcher/url_launcher.dart';
import 'package:device_info_plus/device_info_plus.dart';



import 'actions.dart';
import 'flet_control_backend.dart';
import 'models/app_state.dart';
Expand Down Expand Up @@ -97,7 +95,8 @@ AppState appReducer(AppState state, dynamic action) {
try {
DeviceInfoPlugin deviceInfo = DeviceInfoPlugin();
AndroidDeviceInfo androidInfo = await deviceInfo.androidInfo;
if (androidInfo.systemFeatures.contains('android.software.leanback')) {
if (androidInfo.systemFeatures
.contains('android.software.leanback')) {
platformValue = "android_tv";
}
} on Exception catch (e) {
Expand Down Expand Up @@ -324,6 +323,9 @@ AppState appReducer(AppState state, dynamic action) {
case "windowToFront":
windowToFront();
break;
case "windowStartDragging":
windowStartDragging();
break;
}
var clientStoragePrefix = "clientStorage:";
if (action.payload.methodName.startsWith(clientStoragePrefix)) {
Expand Down
6 changes: 6 additions & 0 deletions packages/flet/lib/src/utils/desktop.dart
Original file line number Diff line number Diff line change
Expand Up @@ -235,6 +235,12 @@ Future windowToFront() async {
}
}

Future windowStartDragging() async {
if (isDesktopPlatform()) {
await windowManager.startDragging();
}
}

Future blurWindow() async {
if (isDesktopPlatform() &&
(defaultTargetPlatform == TargetPlatform.windows ||
Expand Down
24 changes: 13 additions & 11 deletions sdk/python/packages/flet-cli/src/flet_cli/commands/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,10 @@
from typing import Optional, cast

import flet.version
import flet_cli.utils.processes as processes
import yaml
from flet.utils import cleanup_path, copy_tree, is_windows, slugify
from flet.utils.platform_utils import get_bool_env_var
from flet.version import update_version
from flet_cli.commands.base import BaseCommand
from flet_cli.utils.hash_stamp import HashStamp
from flet_cli.utils.merge import merge_dict
from flet_cli.utils.project_dependencies import (
get_poetry_dependencies,
get_project_dependencies,
)
from flet_cli.utils.pyproject_toml import load_pyproject_toml
from packaging import version
from packaging.requirements import Requirement
from rich.console import Console, Group
Expand All @@ -33,6 +24,16 @@
from rich.table import Column, Table
from rich.theme import Theme

import flet_cli.utils.processes as processes
from flet_cli.commands.base import BaseCommand
from flet_cli.utils.hash_stamp import HashStamp
from flet_cli.utils.merge import merge_dict
from flet_cli.utils.project_dependencies import (
get_poetry_dependencies,
get_project_dependencies,
)
from flet_cli.utils.pyproject_toml import load_pyproject_toml

PYODIDE_ROOT_URL = "https://cdn.jsdelivr.net/pyodide/v0.27.2/full"
DEFAULT_TEMPLATE_URL = "gh:flet-dev/flet-build-template"

Expand Down Expand Up @@ -75,7 +76,6 @@ def __init__(self, parser: argparse.ArgumentParser) -> None:
self.python_module_name = None
self.get_pyproject = None
self.python_app_path = None
self.no_rich_output = None
self.emojis = {}
self.dart_exe = None
self.verbose = False
Expand Down Expand Up @@ -1145,7 +1145,9 @@ def setup_template_data(self):
"target_arch": (
target_arch
if isinstance(target_arch, list)
else [target_arch] if isinstance(target_arch, str) else []
else [target_arch]
if isinstance(target_arch, str)
else []
),
"info_plist": info_plist,
"macos_entitlements": macos_entitlements,
Expand Down
17 changes: 17 additions & 0 deletions sdk/python/packages/flet/src/flet/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -400,13 +400,24 @@
AppLifecycleState,
AppView,
BlendMode,
BorderRadiusValue,
Brightness,
ClipBehavior,
ColorEnums,
ColorValue,
ControlEventType,
ControlState,
ControlStateValue,
CrossAxisAlignment,
DateTimeValue,
Duration,
DurationValue,
EventType,
FloatingActionButtonLocation,
FontWeight,
IconEnums,
IconValue,
IconValueOrControl,
ImageFit,
ImageRepeat,
LabelPosition,
Expand All @@ -416,12 +427,18 @@
MouseCursor,
NotchShape,
Number,
OffsetValue,
OnFocusEvent,
OptionalControlEventCallable,
OptionalEventCallable,
OptionalNumber,
Orientation,
PaddingValue,
PagePlatform,
PointerDeviceType,
ResponsiveNumber,
RotateValue,
ScaleValue,
ScrollMode,
StrokeCap,
StrokeJoin,
Expand Down
65 changes: 34 additions & 31 deletions sdk/python/packages/flet/src/flet/core/gesture_detector.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,37 +79,39 @@ def __init__(
exclude_from_semantics: Optional[bool] = None,
trackpad_scroll_causes_scale: Optional[bool] = None,
allowed_devices: Optional[Set[PointerDeviceType]] = None,
on_tap=None,
on_tap_down=None,
on_tap_up=None,
on_multi_tap=None,
multi_tap_touches=None,
on_multi_long_press=None,
on_secondary_tap=None,
on_secondary_tap_down=None,
on_secondary_tap_up=None,
on_long_press_start=None,
on_long_press_end=None,
on_secondary_long_press_start=None,
on_secondary_long_press_end=None,
on_double_tap=None,
on_double_tap_down=None,
on_horizontal_drag_start=None,
on_horizontal_drag_update=None,
on_horizontal_drag_end=None,
on_vertical_drag_start=None,
on_vertical_drag_update=None,
on_vertical_drag_end=None,
on_pan_start=None,
on_pan_update=None,
on_pan_end=None,
on_scale_start=None,
on_scale_update=None,
on_scale_end=None,
on_hover=None,
on_enter=None,
on_exit=None,
on_scroll=None,
on_tap: OptionalEventCallable["TapEvent"] = None,
on_tap_down: OptionalEventCallable["TapEvent"] = None,
on_tap_up: OptionalEventCallable["TapEvent"] = None,
on_multi_tap: OptionalEventCallable["TapEvent"] = None,
multi_tap_touches: Optional[int] = None,
on_multi_long_press: OptionalEventCallable["LongPressEndEvent"] = None,
on_secondary_tap: OptionalEventCallable["TapEvent"] = None,
on_secondary_tap_down: OptionalEventCallable["TapEvent"] = None,
on_secondary_tap_up: OptionalEventCallable["TapEvent"] = None,
on_long_press_start: OptionalEventCallable["LongPressEndEvent"] = None,
on_long_press_end: OptionalEventCallable["LongPressEndEvent"] = None,
on_secondary_long_press_start: OptionalEventCallable[
"LongPressEndEvent"
] = None,
on_secondary_long_press_end: OptionalEventCallable["LongPressEndEvent"] = None,
on_double_tap: OptionalEventCallable["TapEvent"] = None,
on_double_tap_down: OptionalEventCallable["TapEvent"] = None,
on_horizontal_drag_start: OptionalEventCallable["DragStartEvent"] = None,
on_horizontal_drag_update: OptionalEventCallable["DragUpdateEvent"] = None,
on_horizontal_drag_end: OptionalEventCallable["DragEndEvent"] = None,
on_vertical_drag_start: OptionalEventCallable["DragStartEvent"] = None,
on_vertical_drag_update: OptionalEventCallable["DragUpdateEvent"] = None,
on_vertical_drag_end: OptionalEventCallable["DragEndEvent"] = None,
on_pan_start: OptionalEventCallable["DragStartEvent"] = None,
on_pan_update: OptionalEventCallable["DragUpdateEvent"] = None,
on_pan_end: OptionalEventCallable["DragEndEvent"] = None,
on_scale_start: OptionalEventCallable["ScaleStartEvent"] = None,
on_scale_update: OptionalEventCallable["ScaleUpdateEvent"] = None,
on_scale_end: OptionalEventCallable["ScaleEndEvent"] = None,
on_hover: OptionalEventCallable["HoverEvent"] = None,
on_enter: OptionalEventCallable["HoverEvent"] = None,
on_exit: OptionalEventCallable["HoverEvent"] = None,
on_scroll: OptionalEventCallable["ScrollEvent"] = None,
#
# ConstrainedControl
#
Expand Down Expand Up @@ -329,6 +331,7 @@ def _get_control_name(self):
return "gesturedetector"

def before_update(self):
super().before_update()
self._set_attr_json("allowedDevices", self.__allowed_devices)

def _get_children(self):
Expand Down
3 changes: 3 additions & 0 deletions sdk/python/packages/flet/src/flet/core/page.py
Original file line number Diff line number Diff line change
Expand Up @@ -503,6 +503,9 @@ def close(self) -> None:
def to_front(self) -> None:
self.page._invoke_method("windowToFront")

def start_dragging(self) -> None:
self.page._invoke_method("windowStartDragging")

# Events
# on_event
@property
Expand Down
Loading