2021-12-28 16:23:12 +01:00
|
|
|
// SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
|
|
2023-10-23 21:09:38 +02:00
|
|
|
use std::sync::atomic::{AtomicBool, Ordering};
|
|
|
|
|
|
2022-10-25 14:43:50 +02:00
|
|
|
use crate::{
|
2023-01-16 15:12:25 +01:00
|
|
|
shell::{
|
|
|
|
|
element::CosmicMapped, focus::target::PointerFocusTarget, grabs::ResizeEdge, CosmicSurface,
|
|
|
|
|
},
|
2022-10-25 14:43:50 +02:00
|
|
|
utils::prelude::*,
|
|
|
|
|
};
|
2021-12-28 16:23:12 +01:00
|
|
|
use smithay::{
|
2022-10-25 14:43:50 +02:00
|
|
|
desktop::space::SpaceElement,
|
2023-10-23 21:09:38 +02:00
|
|
|
input::{
|
|
|
|
|
pointer::{
|
|
|
|
|
AxisFrame, ButtonEvent, GestureHoldBeginEvent, GestureHoldEndEvent,
|
|
|
|
|
GesturePinchBeginEvent, GesturePinchEndEvent, GesturePinchUpdateEvent,
|
|
|
|
|
GestureSwipeBeginEvent, GestureSwipeEndEvent, GestureSwipeUpdateEvent,
|
|
|
|
|
GrabStartData as PointerGrabStartData, MotionEvent, PointerGrab, PointerInnerHandle,
|
|
|
|
|
RelativeMotionEvent,
|
|
|
|
|
},
|
|
|
|
|
Seat,
|
2022-08-31 13:01:23 +02:00
|
|
|
},
|
2023-01-23 18:25:01 +01:00
|
|
|
utils::{IsAlive, Logical, Point, Rectangle, Size},
|
2021-12-28 16:23:12 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/// Information about the resize operation.
|
|
|
|
|
#[derive(Debug, Clone, Copy, Eq, PartialEq)]
|
2022-10-25 14:43:50 +02:00
|
|
|
pub struct ResizeData {
|
2021-12-28 16:23:12 +01:00
|
|
|
/// The edges the surface is being resized with.
|
2023-07-05 23:57:38 +02:00
|
|
|
pub edges: ResizeEdge,
|
2021-12-28 16:23:12 +01:00
|
|
|
/// The initial window location.
|
2023-07-05 23:57:38 +02:00
|
|
|
pub initial_window_location: Point<i32, Logical>,
|
2021-12-28 16:23:12 +01:00
|
|
|
/// The initial window size (geometry width and height).
|
2023-07-05 23:57:38 +02:00
|
|
|
pub initial_window_size: Size<i32, Logical>,
|
2021-12-28 16:23:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// State of the resize operation.
|
|
|
|
|
#[derive(Debug, Clone, Copy, Eq, PartialEq)]
|
2022-10-25 14:43:50 +02:00
|
|
|
pub enum ResizeState {
|
2021-12-28 16:23:12 +01:00
|
|
|
/// The surface is currently being resized.
|
|
|
|
|
Resizing(ResizeData),
|
|
|
|
|
/// The resize has finished, and the surface needs to commit its final state.
|
|
|
|
|
WaitingForCommit(ResizeData),
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub struct ResizeSurfaceGrab {
|
2022-08-31 13:01:23 +02:00
|
|
|
start_data: PointerGrabStartData<State>,
|
2023-10-23 21:09:38 +02:00
|
|
|
seat: Seat<State>,
|
2022-10-25 14:43:50 +02:00
|
|
|
window: CosmicMapped,
|
2021-12-28 16:23:12 +01:00
|
|
|
edges: ResizeEdge,
|
|
|
|
|
initial_window_size: Size<i32, Logical>,
|
|
|
|
|
last_window_size: Size<i32, Logical>,
|
|
|
|
|
}
|
|
|
|
|
|
2022-07-04 15:28:03 +02:00
|
|
|
impl PointerGrab<State> for ResizeSurfaceGrab {
|
2021-12-28 16:23:12 +01:00
|
|
|
fn motion(
|
|
|
|
|
&mut self,
|
2022-08-31 13:01:23 +02:00
|
|
|
data: &mut State,
|
2022-07-04 15:28:03 +02:00
|
|
|
handle: &mut PointerInnerHandle<'_, State>,
|
2022-09-28 12:01:29 +02:00
|
|
|
_focus: Option<(PointerFocusTarget, Point<i32, Logical>)>,
|
2022-07-04 15:28:03 +02:00
|
|
|
event: &MotionEvent,
|
2021-12-28 16:23:12 +01:00
|
|
|
) {
|
2022-02-04 20:53:18 +01:00
|
|
|
// While the grab is active, no client has pointer focus
|
2022-08-31 13:01:23 +02:00
|
|
|
handle.motion(data, None, event);
|
2022-02-04 20:53:18 +01:00
|
|
|
|
2021-12-28 16:23:12 +01:00
|
|
|
// It is impossible to get `min_size` and `max_size` of dead toplevel, so we return early.
|
2022-07-04 15:28:03 +02:00
|
|
|
if !self.window.alive() {
|
2023-10-23 21:09:38 +02:00
|
|
|
self.seat
|
|
|
|
|
.user_data()
|
|
|
|
|
.get::<ResizeGrabMarker>()
|
|
|
|
|
.unwrap()
|
|
|
|
|
.0
|
|
|
|
|
.store(false, Ordering::SeqCst);
|
2023-10-19 12:03:45 -07:00
|
|
|
handle.unset_grab(data, event.serial, event.time, true);
|
2021-12-28 16:23:12 +01:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2022-07-04 15:28:03 +02:00
|
|
|
let (mut dx, mut dy) = (event.location - self.start_data.location).into();
|
2021-12-28 16:23:12 +01:00
|
|
|
|
|
|
|
|
let mut new_window_width = self.initial_window_size.w;
|
|
|
|
|
let mut new_window_height = self.initial_window_size.h;
|
|
|
|
|
|
|
|
|
|
let left_right = ResizeEdge::LEFT | ResizeEdge::RIGHT;
|
|
|
|
|
let top_bottom = ResizeEdge::TOP | ResizeEdge::BOTTOM;
|
|
|
|
|
|
|
|
|
|
if self.edges.intersects(left_right) {
|
|
|
|
|
if self.edges.intersects(ResizeEdge::LEFT) {
|
|
|
|
|
dx = -dx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
new_window_width = (self.initial_window_size.w as f64 + dx) as i32;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if self.edges.intersects(top_bottom) {
|
|
|
|
|
if self.edges.intersects(ResizeEdge::TOP) {
|
|
|
|
|
dy = -dy;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
new_window_height = (self.initial_window_size.h as f64 + dy) as i32;
|
|
|
|
|
}
|
|
|
|
|
|
2022-10-25 14:43:50 +02:00
|
|
|
let (min_size, max_size) = (self.window.min_size(), self.window.max_size());
|
2021-12-28 16:23:12 +01:00
|
|
|
|
2023-07-07 18:23:34 +02:00
|
|
|
let min_width = min_size.map(|s| s.w).unwrap_or(360);
|
|
|
|
|
let min_height = min_size.map(|s| s.h).unwrap_or(240);
|
2023-01-16 15:12:25 +01:00
|
|
|
let max_width = max_size.map(|s| s.w).unwrap_or(i32::max_value());
|
|
|
|
|
let max_height = max_size.map(|s| s.h).unwrap_or(i32::max_value());
|
2021-12-28 16:23:12 +01:00
|
|
|
|
|
|
|
|
new_window_width = new_window_width.max(min_width).min(max_width);
|
|
|
|
|
new_window_height = new_window_height.max(min_height).min(max_height);
|
|
|
|
|
|
|
|
|
|
self.last_window_size = (new_window_width, new_window_height).into();
|
|
|
|
|
|
2022-10-25 14:43:50 +02:00
|
|
|
self.window.set_resizing(true);
|
2023-01-23 18:25:01 +01:00
|
|
|
self.window.set_geometry(Rectangle::from_loc_and_size(
|
2023-01-25 18:43:22 +01:00
|
|
|
match self.window.active_window() {
|
2023-10-25 19:24:51 +02:00
|
|
|
CosmicSurface::X11(s) => s.geometry().loc.as_global(),
|
2023-01-25 18:43:22 +01:00
|
|
|
_ => (0, 0).into(),
|
|
|
|
|
},
|
2023-10-25 19:24:51 +02:00
|
|
|
self.last_window_size.as_global(),
|
2023-01-23 18:25:01 +01:00
|
|
|
));
|
2022-10-25 14:43:50 +02:00
|
|
|
self.window.configure();
|
2021-12-28 16:23:12 +01:00
|
|
|
}
|
|
|
|
|
|
2023-01-30 23:19:36 +01:00
|
|
|
fn relative_motion(
|
|
|
|
|
&mut self,
|
|
|
|
|
state: &mut State,
|
|
|
|
|
handle: &mut PointerInnerHandle<'_, State>,
|
|
|
|
|
_focus: Option<(PointerFocusTarget, Point<i32, Logical>)>,
|
|
|
|
|
event: &RelativeMotionEvent,
|
|
|
|
|
) {
|
|
|
|
|
// While the grab is active, no client has pointer focus
|
|
|
|
|
handle.relative_motion(state, None, event);
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-28 16:23:12 +01:00
|
|
|
fn button(
|
|
|
|
|
&mut self,
|
2022-08-31 13:01:23 +02:00
|
|
|
data: &mut State,
|
2022-07-04 15:28:03 +02:00
|
|
|
handle: &mut PointerInnerHandle<'_, State>,
|
|
|
|
|
event: &ButtonEvent,
|
2021-12-28 16:23:12 +01:00
|
|
|
) {
|
2022-08-31 13:01:23 +02:00
|
|
|
handle.button(data, event);
|
2021-12-28 16:23:12 +01:00
|
|
|
if handle.current_pressed().is_empty() {
|
|
|
|
|
// No more buttons are pressed, release the grab.
|
2023-10-23 21:09:38 +02:00
|
|
|
self.seat
|
|
|
|
|
.user_data()
|
|
|
|
|
.get::<ResizeGrabMarker>()
|
|
|
|
|
.unwrap()
|
|
|
|
|
.0
|
|
|
|
|
.store(false, Ordering::SeqCst);
|
2023-10-19 12:03:45 -07:00
|
|
|
handle.unset_grab(data, event.serial, event.time, true);
|
2021-12-28 16:23:12 +01:00
|
|
|
|
|
|
|
|
// If toplevel is dead, we can't resize it, so we return early.
|
2022-07-04 15:28:03 +02:00
|
|
|
if !self.window.alive() {
|
2021-12-28 16:23:12 +01:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2022-10-25 14:43:50 +02:00
|
|
|
self.window.set_resizing(false);
|
2023-01-23 18:25:01 +01:00
|
|
|
self.window.set_geometry(Rectangle::from_loc_and_size(
|
2023-01-25 18:43:22 +01:00
|
|
|
match self.window.active_window() {
|
2023-10-25 19:24:51 +02:00
|
|
|
CosmicSurface::X11(s) => s.geometry().loc.as_global(),
|
2023-01-25 18:43:22 +01:00
|
|
|
_ => (0, 0).into(),
|
|
|
|
|
},
|
2023-10-25 19:24:51 +02:00
|
|
|
self.last_window_size.as_global(),
|
2023-01-23 18:25:01 +01:00
|
|
|
));
|
2022-10-25 14:43:50 +02:00
|
|
|
self.window.configure();
|
2021-12-28 16:23:12 +01:00
|
|
|
|
2022-10-25 14:43:50 +02:00
|
|
|
let mut resize_state = self.window.resize_state.lock().unwrap();
|
|
|
|
|
if let Some(ResizeState::Resizing(resize_data)) = *resize_state {
|
|
|
|
|
*resize_state = Some(ResizeState::WaitingForCommit(resize_data));
|
2021-12-28 16:23:12 +01:00
|
|
|
} else {
|
|
|
|
|
panic!("invalid resize state: {:?}", resize_state);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-07-04 15:28:03 +02:00
|
|
|
fn axis(
|
|
|
|
|
&mut self,
|
2022-08-31 13:01:23 +02:00
|
|
|
data: &mut State,
|
2022-07-04 15:28:03 +02:00
|
|
|
handle: &mut PointerInnerHandle<'_, State>,
|
|
|
|
|
details: AxisFrame,
|
|
|
|
|
) {
|
2022-08-31 13:01:23 +02:00
|
|
|
handle.axis(data, details)
|
2021-12-28 16:23:12 +01:00
|
|
|
}
|
|
|
|
|
|
2023-09-13 20:52:10 -07:00
|
|
|
fn frame(&mut self, data: &mut State, handle: &mut PointerInnerHandle<'_, State>) {
|
|
|
|
|
handle.frame(data)
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-05 10:55:23 -07:00
|
|
|
fn gesture_swipe_begin(
|
|
|
|
|
&mut self,
|
|
|
|
|
data: &mut State,
|
|
|
|
|
handle: &mut PointerInnerHandle<'_, State>,
|
|
|
|
|
event: &GestureSwipeBeginEvent,
|
|
|
|
|
) {
|
|
|
|
|
handle.gesture_swipe_begin(data, event)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn gesture_swipe_update(
|
|
|
|
|
&mut self,
|
|
|
|
|
data: &mut State,
|
|
|
|
|
handle: &mut PointerInnerHandle<'_, State>,
|
|
|
|
|
event: &GestureSwipeUpdateEvent,
|
|
|
|
|
) {
|
|
|
|
|
handle.gesture_swipe_update(data, event)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn gesture_swipe_end(
|
|
|
|
|
&mut self,
|
|
|
|
|
data: &mut State,
|
|
|
|
|
handle: &mut PointerInnerHandle<'_, State>,
|
|
|
|
|
event: &GestureSwipeEndEvent,
|
|
|
|
|
) {
|
|
|
|
|
handle.gesture_swipe_end(data, event)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn gesture_pinch_begin(
|
|
|
|
|
&mut self,
|
|
|
|
|
data: &mut State,
|
|
|
|
|
handle: &mut PointerInnerHandle<'_, State>,
|
|
|
|
|
event: &GesturePinchBeginEvent,
|
|
|
|
|
) {
|
|
|
|
|
handle.gesture_pinch_begin(data, event)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn gesture_pinch_update(
|
|
|
|
|
&mut self,
|
|
|
|
|
data: &mut State,
|
|
|
|
|
handle: &mut PointerInnerHandle<'_, State>,
|
|
|
|
|
event: &GesturePinchUpdateEvent,
|
|
|
|
|
) {
|
|
|
|
|
handle.gesture_pinch_update(data, event)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn gesture_pinch_end(
|
|
|
|
|
&mut self,
|
|
|
|
|
data: &mut State,
|
|
|
|
|
handle: &mut PointerInnerHandle<'_, State>,
|
|
|
|
|
event: &GesturePinchEndEvent,
|
|
|
|
|
) {
|
|
|
|
|
handle.gesture_pinch_end(data, event)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn gesture_hold_begin(
|
|
|
|
|
&mut self,
|
|
|
|
|
data: &mut State,
|
|
|
|
|
handle: &mut PointerInnerHandle<'_, State>,
|
|
|
|
|
event: &GestureHoldBeginEvent,
|
|
|
|
|
) {
|
|
|
|
|
handle.gesture_hold_begin(data, event)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn gesture_hold_end(
|
|
|
|
|
&mut self,
|
|
|
|
|
data: &mut State,
|
|
|
|
|
handle: &mut PointerInnerHandle<'_, State>,
|
|
|
|
|
event: &GestureHoldEndEvent,
|
|
|
|
|
) {
|
|
|
|
|
handle.gesture_hold_end(data, event)
|
|
|
|
|
}
|
|
|
|
|
|
2022-08-31 13:01:23 +02:00
|
|
|
fn start_data(&self) -> &PointerGrabStartData<State> {
|
2021-12-28 16:23:12 +01:00
|
|
|
&self.start_data
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-10-23 21:09:38 +02:00
|
|
|
pub struct ResizeGrabMarker(AtomicBool);
|
|
|
|
|
|
|
|
|
|
impl ResizeGrabMarker {
|
|
|
|
|
pub fn get(&self) -> bool {
|
|
|
|
|
self.0.load(Ordering::SeqCst)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-28 16:23:12 +01:00
|
|
|
impl ResizeSurfaceGrab {
|
|
|
|
|
pub fn new(
|
2022-08-31 13:01:23 +02:00
|
|
|
start_data: PointerGrabStartData<State>,
|
2022-10-25 14:43:50 +02:00
|
|
|
mapped: CosmicMapped,
|
2022-10-27 20:40:55 +02:00
|
|
|
edges: ResizeEdge,
|
2022-03-16 20:05:24 +01:00
|
|
|
initial_window_location: Point<i32, Logical>,
|
|
|
|
|
initial_window_size: Size<i32, Logical>,
|
2023-10-23 21:09:38 +02:00
|
|
|
seat: &Seat<State>,
|
2021-12-28 16:23:12 +01:00
|
|
|
) -> ResizeSurfaceGrab {
|
|
|
|
|
let resize_state = ResizeState::Resizing(ResizeData {
|
2022-10-27 20:40:55 +02:00
|
|
|
edges,
|
2021-12-28 16:23:12 +01:00
|
|
|
initial_window_location,
|
|
|
|
|
initial_window_size,
|
|
|
|
|
});
|
|
|
|
|
|
2022-10-25 14:43:50 +02:00
|
|
|
*mapped.resize_state.lock().unwrap() = Some(resize_state);
|
2023-10-23 21:09:38 +02:00
|
|
|
seat.user_data()
|
|
|
|
|
.get_or_insert::<ResizeGrabMarker, _>(|| ResizeGrabMarker(AtomicBool::new(true)))
|
|
|
|
|
.0
|
|
|
|
|
.store(true, Ordering::SeqCst);
|
2021-12-28 16:23:12 +01:00
|
|
|
|
|
|
|
|
ResizeSurfaceGrab {
|
|
|
|
|
start_data,
|
2023-10-23 21:09:38 +02:00
|
|
|
seat: seat.clone(),
|
2022-10-25 14:43:50 +02:00
|
|
|
window: mapped,
|
2022-10-27 20:40:55 +02:00
|
|
|
edges,
|
2021-12-28 16:23:12 +01:00
|
|
|
initial_window_size,
|
|
|
|
|
last_window_size: initial_window_size,
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-10-25 14:43:50 +02:00
|
|
|
pub fn apply_resize_to_location(window: CosmicMapped, space: &mut Workspace) {
|
2023-10-25 19:24:51 +02:00
|
|
|
if let Some(location) = space
|
|
|
|
|
.floating_layer
|
|
|
|
|
.space
|
|
|
|
|
.element_location(&window)
|
|
|
|
|
.map(PointExt::as_local)
|
|
|
|
|
.map(|p| p.to_global(space.output()))
|
|
|
|
|
{
|
2022-10-25 14:43:50 +02:00
|
|
|
let mut new_location = None;
|
2021-12-28 16:23:12 +01:00
|
|
|
|
2022-10-25 14:43:50 +02:00
|
|
|
let mut resize_state = window.resize_state.lock().unwrap();
|
2021-12-28 16:23:12 +01:00
|
|
|
// If the window is being resized by top or left, its location must be adjusted
|
|
|
|
|
// accordingly.
|
|
|
|
|
match *resize_state {
|
2022-10-25 14:43:50 +02:00
|
|
|
Some(ResizeState::Resizing(resize_data))
|
|
|
|
|
| Some(ResizeState::WaitingForCommit(resize_data)) => {
|
2021-12-28 16:23:12 +01:00
|
|
|
let ResizeData {
|
|
|
|
|
edges,
|
|
|
|
|
initial_window_location,
|
|
|
|
|
initial_window_size,
|
|
|
|
|
} = resize_data;
|
|
|
|
|
|
|
|
|
|
if edges.intersects(ResizeEdge::TOP_LEFT) {
|
2022-10-25 14:43:50 +02:00
|
|
|
let size = window.geometry().size;
|
2023-01-25 14:09:44 +01:00
|
|
|
let mut new = location.clone();
|
2021-12-28 16:23:12 +01:00
|
|
|
if edges.intersects(ResizeEdge::LEFT) {
|
2023-01-25 14:09:44 +01:00
|
|
|
new.x = initial_window_location.x + (initial_window_size.w - size.w);
|
2021-12-28 16:23:12 +01:00
|
|
|
}
|
|
|
|
|
if edges.intersects(ResizeEdge::TOP) {
|
2023-01-25 14:09:44 +01:00
|
|
|
new.y = initial_window_location.y + (initial_window_size.h - size.h);
|
2021-12-28 16:23:12 +01:00
|
|
|
}
|
|
|
|
|
|
2023-01-25 14:09:44 +01:00
|
|
|
new_location = Some(new);
|
2021-12-28 16:23:12 +01:00
|
|
|
}
|
|
|
|
|
}
|
2022-10-25 14:43:50 +02:00
|
|
|
_ => {}
|
|
|
|
|
};
|
2021-12-28 16:23:12 +01:00
|
|
|
|
|
|
|
|
// Finish resizing.
|
2022-10-25 14:43:50 +02:00
|
|
|
if let Some(ResizeState::WaitingForCommit(_)) = *resize_state {
|
2023-06-09 16:26:13 +02:00
|
|
|
if !window.is_resizing(false).unwrap_or(false) {
|
2022-10-25 14:43:50 +02:00
|
|
|
*resize_state = None;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
std::mem::drop(resize_state);
|
|
|
|
|
|
|
|
|
|
if let Some(new_location) = new_location {
|
|
|
|
|
for (window, offset) in window.windows() {
|
2023-01-25 18:43:22 +01:00
|
|
|
match window {
|
|
|
|
|
CosmicSurface::Wayland(window) => {
|
|
|
|
|
update_reactive_popups(
|
|
|
|
|
&window,
|
2023-10-25 19:24:51 +02:00
|
|
|
new_location + offset.as_global(),
|
2023-01-25 18:43:22 +01:00
|
|
|
space.floating_layer.space.outputs(),
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
CosmicSurface::X11(surface) => {
|
|
|
|
|
let mut geometry = surface.geometry();
|
2023-10-25 19:24:51 +02:00
|
|
|
geometry.loc += (location - new_location).as_logical();
|
2023-01-25 18:43:22 +01:00
|
|
|
let _ = surface.configure(geometry);
|
|
|
|
|
}
|
|
|
|
|
_ => unreachable!(),
|
2023-01-16 15:12:25 +01:00
|
|
|
}
|
2022-10-25 14:43:50 +02:00
|
|
|
}
|
|
|
|
|
space
|
|
|
|
|
.floating_layer
|
|
|
|
|
.space
|
2023-10-25 19:24:51 +02:00
|
|
|
.map_element(window, new_location.as_logical(), false);
|
2021-12-28 16:23:12 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|