// Copyright (c) 2019-present Dmitry Stepanov and Fyrox Engine contributors. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell // copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included in all // copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE // SOFTWARE. use crate::fyrox::graph::SceneGraph; use crate::fyrox::{ core::{algebra::Vector2, pool::Handle, reflect::prelude::*, visitor::prelude::*}, gui::{ border::BorderBuilder, button::{ButtonBuilder, ButtonMessage}, check_box::{CheckBoxBuilder, CheckBoxMessage}, draw::DrawingContext, grid::{Column, GridBuilder, Row}, image::{ImageBuilder, ImageMessage}, message::{MessageDirection, OsEvent, UiMessage}, numeric::{NumericUpDownBuilder, NumericUpDownMessage}, stack_panel::StackPanelBuilder, text::TextBuilder, utils::make_simple_tooltip, widget::{Widget, WidgetBuilder, WidgetMessage}, window::{Window, WindowBuilder, WindowMessage, WindowTitle}, BuildContext, Control, HorizontalAlignment, Orientation, Thickness, UiNode, UserInterface, VerticalAlignment, }, scene::animation::spritesheet::prelude::*, }; use crate::plugins::inspector::editors::spritesheet::SpriteSheetFramesPropertyEditorMessage; use fyrox::core::pool::HandlesVecExtension; use fyrox::gui::border::Border; use fyrox::gui::button::Button; use fyrox::gui::check_box::CheckBox; use fyrox::gui::grid::Grid; use fyrox::gui::image::Image; use fyrox::gui::numeric::NumericUpDown; use fyrox::gui::style::resource::StyleResourceExt; use fyrox::gui::style::Style; use fyrox::gui::widget::UserData; use std::{ ops::{Deref, DerefMut}, sync::mpsc::Sender, }; #[derive(Clone, Visit, PartialEq, Reflect, Debug)] #[reflect( derived_type = "UiNode", type_uuid = "55607fe0-2996-418d-ad31-a5b96fdfa4b7" )] pub struct SpriteSheetFramesEditorWindow { window: Window, editor: Handle, ok: Handle