mirror of
https://github.com/YGGverse/Yoda.git
synced 2025-03-10 12:41:34 +00:00
hide pin widget by argument
This commit is contained in:
parent
3d33be7e24
commit
77303d548e
@ -6,17 +6,25 @@ use gtk::prelude::BoxExt;
|
||||
|
||||
pub fn new() -> Box
|
||||
{
|
||||
let label = Box::builder().orientation(
|
||||
gtk::Orientation::Horizontal
|
||||
).build();
|
||||
let label = Box::builder()
|
||||
|
||||
label.append(
|
||||
&pin::new()
|
||||
);
|
||||
// Tuneup
|
||||
.orientation(
|
||||
gtk::Orientation::Horizontal
|
||||
)
|
||||
|
||||
label.append(
|
||||
&title::new()
|
||||
);
|
||||
.build();
|
||||
|
||||
// Components
|
||||
label.append(
|
||||
&pin::new(
|
||||
false
|
||||
)
|
||||
);
|
||||
|
||||
label.append(
|
||||
&title::new()
|
||||
);
|
||||
|
||||
return label;
|
||||
}
|
@ -1,10 +1,18 @@
|
||||
use gtk::Image;
|
||||
|
||||
pub fn new() -> Image
|
||||
pub fn new(
|
||||
visible : bool
|
||||
) -> Image
|
||||
{
|
||||
let pin = Image::builder().icon_name(
|
||||
"view-pin-symbolic"
|
||||
).build();
|
||||
return Image::builder()
|
||||
|
||||
return pin;
|
||||
.icon_name(
|
||||
"view-pin-symbolic"
|
||||
)
|
||||
|
||||
.visible(
|
||||
visible
|
||||
)
|
||||
|
||||
.build();
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user