1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153
// Copyright 2018 The xi-editor Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. //! A widget that just adds padding during layout. use crate::kurbo::Insets; //// use crate::{ BaseState, BoxConstraints, Data, Env, Event, EventCtx, LayoutCtx, PaintCtx, Point, Rect, Size, UpdateCtx, Widget, WidgetPod, WidgetId, WidgetType, WidgetBox, Window, WindowType, WindowBox, //// }; /// A widget that just adds padding around its child. #[derive(Clone)] //// pub struct Padding<T: Data + 'static + Default> { //// ////pub struct Padding<T: Data> { id: WidgetId, //// Unique Widget ID left: f64, right: f64, top: f64, bottom: f64, child: WidgetPod<T, WidgetBox<T>>, //// ////child: WidgetPod<T, Box<dyn Widget<T>>>, } impl<T: Data + 'static + Default> Padding<T> { //// ////impl<T: Data> Padding<T> { /* //// Deprecated /// Create widget with uniform padding. #[deprecated(since = "0.3.0", note = "Use Padding::new() instead")] pub fn uniform(padding: f64, child: impl Widget<T> + 'static) -> Padding<T> { Padding { left: padding, right: padding, top: padding, bottom: padding, child: WidgetPod::new( //// WidgetBox::<T>::new(child) ), ////child: WidgetPod::new(child).boxed(), } } */ //// /// Create a new widget with the specified padding. This can either be an instance /// of [`kurbo::Insets`], a f64 for uniform padding, a 2-tuple for axis-uniform padding /// or 4-tuple with (left, top, right, bottom) values. /// /// # Examples /// /// Uniform padding: /// /// ``` /// use druid::widget::{Label, Padding}; /// use druid::kurbo::Insets; /// /// let _: Padding<()> = Padding::new(10.0, Label::new("uniform!")); /// let _: Padding<()> = Padding::new(Insets::uniform(10.0), Label::new("uniform!")); /// ``` /// /// Uniform padding across each axis: /// /// ``` /// use druid::widget::{Label, Padding}; /// use druid::kurbo::Insets; /// /// let child: Label<()> = Label::new("I need my space!"); /// let _: Padding<()> = Padding::new((10.0, 20.0), Label::new("more y than x!")); /// // equivalent: /// let _: Padding<()> = Padding::new(Insets::uniform_xy(10.0, 20.0), Label::new("ditto :)")); /// ``` /// /// [`kurbo::Insets`]: https://docs.rs/kurbo/0.5.3/kurbo/struct.Insets.html pub fn new<W: Widget<T> + Clone>(insets: impl Into<Insets>, child: W) -> Padding<T> { //// ////pub fn new(insets: impl Into<Insets>, child: impl Widget<T> + 'static) -> Padding<T> { let insets = insets.into(); Padding { id: super::get_widget_id(), //// left: insets.x0, right: insets.x1, top: insets.y0, bottom: insets.y1, child: WidgetPod::new( //// WidgetBox::<T>::new(child) ), ////child: WidgetPod::new(child).boxed(), } } } impl<T: Data + 'static + Default> Widget<T> for Padding<T> { //// ////impl<T: Data> Widget<T> for Padding<T> { fn paint(&mut self, paint_ctx: &mut PaintCtx, _base_state: &BaseState, data: &T, env: &Env) { self.child.paint_with_offset(paint_ctx, data, env); } fn layout( &mut self, layout_ctx: &mut LayoutCtx, bc: &BoxConstraints, data: &T, env: &Env, ) -> Size { bc.debug_check("Padding"); let hpad = self.left + self.right; let vpad = self.top + self.bottom; let child_bc = bc.shrink((hpad, vpad)); let size = self.child.layout(layout_ctx, &child_bc, data, env); let origin = Point::new(self.left, self.top); self.child .set_layout_rect(Rect::from_origin_size(origin, size)); Size::new(size.width + hpad, size.height + vpad) } fn event(&mut self, ctx: &mut EventCtx<T>, event: &Event, data: &mut T, env: &Env) { //// ////fn event(&mut self, ctx: &mut EventCtx, event: &Event, data: &mut T, env: &Env) { self.child.event(ctx, event, data, env) } fn update(&mut self, ctx: &mut UpdateCtx<T>, _old_data: Option<&T>, data: &T, env: &Env) { //// ////fn update(&mut self, ctx: &mut UpdateCtx, _old_data: Option<&T>, data: &T, env: &Env) { self.child.update(ctx, data, env); } fn to_type(self) -> WidgetType<T> { //// WidgetType::Padding(self) } fn new_window(self) -> WindowBox<T> { //// let window = Window::new(self); let window_box = WindowBox( WindowType::Padding(window), ); window_box } fn get_id(self) -> WidgetId { //// self.id } }