sctk-adwaita 0.5.1

Adwaita-like SCTK Frame
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use tiny_skia::{Color, Pixmap};

#[derive(Debug)]
pub struct DumbTitleText {}

impl DumbTitleText {
    pub fn update_scale(&mut self, _scale: u32) {}

    pub fn update_title<S: Into<String>>(&mut self, _title: S) {}

    pub fn update_color(&mut self, _color: Color) {}

    pub fn pixmap(&self) -> Option<&Pixmap> {
        None
    }
}