scaffold: Cargo.toml, module stubs, layer-shell window (step 1+2)

This commit is contained in:
Breadway 2026-05-17 00:38:19 +08:00
commit 1bbe9a2929
1375 changed files with 7293 additions and 0 deletions

View file

@ -0,0 +1,92 @@
/// The `accent` CSS class.
pub const ACCENT: &str = "accent";
/// The `activatable` CSS class.
pub const ACTIVATABLE: &str = "activatable";
/// The `background` CSS class.
pub const BACKGROUND: &str = "background";
/// The `body` CSS class.
pub const BODY: &str = "body";
/// The `boxed-list` CSS class.
pub const BOXED_LIST: &str = "boxed-list";
/// The `caption` CSS class.
pub const CAPTION: &str = "caption";
/// The `caption-heading` CSS class.
pub const CAPTION_HEADING: &str = "caption-heading";
/// The `card` CSS class.
pub const CARD: &str = "card";
/// The `circular` CSS class.
pub const CIRCULAR: &str = "circular";
/// The `compact` CSS class.
pub const COMPACT: &str = "compact";
/// The `destructive-action` CSS class.
pub const DESTRUCTIVE_ACTION: &str = "destructive-action";
/// The `devel` CSS class.
pub const DEVEL: &str = "devel";
/// The `dim-label` CSS class.
pub const DIM_LABEL: &str = "dim-label";
/// The `error` CSS class.
pub const ERROR: &str = "error";
/// The `flat` CSS class.
pub const FLAT: &str = "flat";
/// The `frame` CSS class.
pub const FRAME: &str = "frame";
/// The `heading` CSS class.
pub const HEADING: &str = "heading";
/// The `icon-dropshadow` CSS class.
pub const ICON_DROPSHADOW: &str = "icon-dropshadow";
/// The `inline` CSS class.
pub const INLINE: &str = "inline";
/// The `linked` CSS class.
pub const LINKED: &str = "linked";
/// The `lowres-icon` CSS class.
pub const LOWRES_ICON: &str = "lowres-icon";
/// The `menu` CSS class.
pub const MENU: &str = "menu";
/// The `monospace` CSS class.
pub const MONOSPACE: &str = "monospace";
/// The `navigation-sidebar` CSS class.
pub const NAVIGATION_SIDEBAR: &str = "navigation-sidebar";
/// The `numeric` CSS class.
pub const NUMERIC: &str = "numeric";
/// The `opaque` CSS class.
pub const OPAQUE: &str = "opaque";
/// The `osd` CSS class.
pub const OSD: &str = "osd";
/// The `pill` CSS class.
pub const PILL: &str = "pill";
/// The `raised` CSS class.
pub const RAISED: &str = "raised";
/// The `selection-mode` CSS class.
pub const SELECTION_MODE: &str = "selection-mode";
/// The `spacer` CSS class.
pub const SPACER: &str = "spacer";
/// The `success` CSS class.
pub const SUCCESS: &str = "success";
/// The `suggested-action` CSS class.
pub const SUGGESTED_ACTION: &str = "suggested-action";
/// The `title-1` CSS class.
pub const TITLE_1: &str = "title-1";
/// The `title-2` CSS class.
pub const TITLE_2: &str = "title-2";
/// The `title-3` CSS class.
pub const TITLE_3: &str = "title-3";
/// The `title-4` CSS class.
pub const TITLE_4: &str = "title-4";
/// The `toolbar` CSS class.
pub const TOOLBAR: &str = "toolbar";
/// The `view` CSS class.
pub const VIEW: &str = "view";
/// The `warning` CSS class.
pub const WARNING: &str = "warning";
#[deprecated(note = "Adwaita has deprecated this CSS class")]
/// The `app-notification` CSS class.
pub const APP_NOTIFICATION: &str = "app-notification";
#[deprecated(note = "Adwaita has deprecated this CSS class")]
/// The `content` CSS class.
pub const CONTENT: &str = "content";
#[deprecated(note = "Adwaita has deprecated this CSS class")]
/// The `large-title` CSS class.
pub const LARGE_TITLE: &str = "large-title";
#[deprecated(note = "Adwaita has deprecated this CSS class")]
/// The `sidebar` CSS class.
pub const SIDEBAR: &str = "sidebar";