termscp/src/ui/components/mod.rs

34 lines
1.3 KiB
Rust
Raw Normal View History

2021-03-03 22:02:58 +01:00
//! ## Components
//!
2021-05-05 22:13:57 +02:00
//! `Components` is the module which contains the definitions for all the GUI components for termscp
2021-03-03 22:02:58 +01:00
2021-03-26 22:25:10 +01:00
/**
* MIT License
*
* termscp - Copyright (c) 2021 Christian Visintin
*
* 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.
*/
2021-03-03 22:02:58 +01:00
// exports
2021-03-09 15:12:32 +01:00
pub mod bookmark_list;
2021-09-26 18:14:13 +02:00
pub mod bytes;
pub mod color_picker;
2021-03-03 22:02:58 +01:00
pub mod file_list;
2021-03-07 12:41:00 +01:00
pub mod logbox;