mirror of https://github.com/YGGverse/Yoda.git
yggverse
2 months ago
2 changed files with 31 additions and 0 deletions
@ -0,0 +1,4 @@ |
|||||||
|
label |
||||||
|
{ |
||||||
|
caret-color: transparent; |
||||||
|
} |
@ -0,0 +1,27 @@ |
|||||||
|
use gtk::{Align, Label}; |
||||||
|
|
||||||
|
pub struct Reader { |
||||||
|
widget: Label, |
||||||
|
} |
||||||
|
|
||||||
|
impl Reader { |
||||||
|
// Construct
|
||||||
|
pub fn new() -> Reader { |
||||||
|
Self { |
||||||
|
widget: Label::builder() |
||||||
|
.halign(Align::Start) |
||||||
|
.valign(Align::Start) |
||||||
|
.margin_start(8) |
||||||
|
.margin_end(8) |
||||||
|
.wrap(true) |
||||||
|
.selectable(true) |
||||||
|
.use_markup(true) |
||||||
|
.build(), |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
// Getters
|
||||||
|
pub fn widget(&self) -> &Label { |
||||||
|
&self.widget |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue