feat: Tooltips and Better Surface Management
This commit is contained in:
parent
c7edd37b03
commit
337b80d4ca
90 changed files with 3651 additions and 977 deletions
25
src/lib.rs
25
src/lib.rs
|
|
@ -9,21 +9,30 @@ pub mod prelude {
|
|||
pub use crate::ext::*;
|
||||
#[cfg(feature = "winit")]
|
||||
pub use crate::ApplicationExt;
|
||||
pub use crate::{Also, Apply, Element, Renderer, Theme};
|
||||
pub use crate::{Also, Apply, Element, Renderer, Task, Theme};
|
||||
}
|
||||
|
||||
pub use apply::{Also, Apply};
|
||||
|
||||
/// Actions are managed internally by the cosmic runtime.
|
||||
pub mod action;
|
||||
pub use action::Action;
|
||||
|
||||
#[cfg(feature = "winit")]
|
||||
pub mod app;
|
||||
#[cfg(feature = "winit")]
|
||||
#[doc(inline)]
|
||||
pub use app::{Application, ApplicationExt};
|
||||
|
||||
#[cfg(feature = "applet")]
|
||||
pub mod applet;
|
||||
|
||||
pub use iced::Task;
|
||||
pub mod task;
|
||||
pub mod command;
|
||||
|
||||
/// State which is managed by the cosmic runtime.
|
||||
pub mod core;
|
||||
#[doc(inline)]
|
||||
pub use core::Core;
|
||||
|
||||
pub mod config;
|
||||
|
||||
|
|
@ -33,6 +42,11 @@ pub use cosmic_config;
|
|||
#[doc(inline)]
|
||||
pub use cosmic_theme;
|
||||
|
||||
#[cfg(feature = "single-instance")]
|
||||
pub mod dbus_activation;
|
||||
#[cfg(feature = "single-instance")]
|
||||
pub use dbus_activation::DbusActivation;
|
||||
|
||||
#[cfg(feature = "desktop")]
|
||||
pub mod desktop;
|
||||
|
||||
|
|
@ -85,6 +99,11 @@ pub mod process;
|
|||
#[cfg(feature = "wayland")]
|
||||
pub use cctk;
|
||||
|
||||
pub mod surface;
|
||||
|
||||
pub use iced::Task;
|
||||
pub mod task;
|
||||
|
||||
pub mod theme;
|
||||
|
||||
#[doc(inline)]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue