feat(segmented-button): Selection style and implementation
This commit is contained in:
parent
3454483345
commit
bbac6b9bbf
6 changed files with 68 additions and 16 deletions
|
|
@ -129,7 +129,8 @@ pub struct Window {
|
||||||
debug: bool,
|
debug: bool,
|
||||||
theme: Theme,
|
theme: Theme,
|
||||||
slider_value: f32,
|
slider_value: f32,
|
||||||
demo_tab_state: segmented_button::State<DemoView>,
|
demo_view_switcher: segmented_button::State<DemoView>,
|
||||||
|
demo_selection: segmented_button::State<()>,
|
||||||
spin_button: SpinButtonModel<i32>,
|
spin_button: SpinButtonModel<i32>,
|
||||||
checkbox_value: bool,
|
checkbox_value: bool,
|
||||||
toggler_value: bool,
|
toggler_value: bool,
|
||||||
|
|
@ -166,6 +167,7 @@ pub enum Message {
|
||||||
CondensedViewToggle(()),
|
CondensedViewToggle(()),
|
||||||
Debug(bool),
|
Debug(bool),
|
||||||
DemoTabActivate(segmented_button::Key),
|
DemoTabActivate(segmented_button::Key),
|
||||||
|
DemoSelectionActivate(segmented_button::Key),
|
||||||
Drag,
|
Drag,
|
||||||
InputChanged,
|
InputChanged,
|
||||||
Maximize,
|
Maximize,
|
||||||
|
|
@ -271,20 +273,30 @@ impl Application for Window {
|
||||||
window.spin_button.min = -10;
|
window.spin_button.min = -10;
|
||||||
window.spin_button.max = 10;
|
window.spin_button.max = 10;
|
||||||
|
|
||||||
|
// Configures the demo view switcher.
|
||||||
let key = window
|
let key = window
|
||||||
.demo_tab_state
|
.demo_view_switcher
|
||||||
.insert(String::from("Tab A"), DemoView::TabA);
|
.insert(String::from("Tab A"), DemoView::TabA);
|
||||||
|
|
||||||
window.demo_tab_state.activate(key);
|
window.demo_view_switcher.activate(key);
|
||||||
|
|
||||||
window
|
window
|
||||||
.demo_tab_state
|
.demo_view_switcher
|
||||||
.insert(String::from("Tab B"), DemoView::TabB);
|
.insert(String::from("Tab B"), DemoView::TabB);
|
||||||
|
|
||||||
window
|
window
|
||||||
.demo_tab_state
|
.demo_view_switcher
|
||||||
.insert(String::from("Tab C"), DemoView::TabC);
|
.insert(String::from("Tab C"), DemoView::TabC);
|
||||||
|
|
||||||
|
// Configures the demo selection button.
|
||||||
|
let key = window.
|
||||||
|
demo_selection
|
||||||
|
.insert(String::from("Choice A"), ());
|
||||||
|
|
||||||
|
window.demo_selection.activate(key);
|
||||||
|
window.demo_selection.insert(String::from("Choice B"), ());
|
||||||
|
window.demo_selection.insert(String::from("Choice C"), ());
|
||||||
|
|
||||||
(window, Command::none())
|
(window, Command::none())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -341,7 +353,8 @@ impl Application for Window {
|
||||||
Message::InputChanged => {}
|
Message::InputChanged => {}
|
||||||
Message::SpinButton(msg) => self.spin_button.update(msg),
|
Message::SpinButton(msg) => self.spin_button.update(msg),
|
||||||
Message::CondensedViewToggle(_) => {}
|
Message::CondensedViewToggle(_) => {}
|
||||||
Message::DemoTabActivate(key) => self.demo_tab_state.activate(key),
|
Message::DemoTabActivate(key) => self.demo_view_switcher.activate(key),
|
||||||
|
Message::DemoSelectionActivate(key) => self.demo_selection.activate(key),
|
||||||
}
|
}
|
||||||
|
|
||||||
Command::none()
|
Command::none()
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
use cosmic::{
|
use cosmic::{
|
||||||
iced::widget::{checkbox, pick_list, progress_bar, radio, row, slider},
|
iced::widget::{checkbox, pick_list, progress_bar, radio, row, slider},
|
||||||
iced::{Alignment, Length},
|
iced::{Alignment, Length},
|
||||||
theme::{Button as ButtonTheme, Theme},
|
theme::{self, Button as ButtonTheme, Theme},
|
||||||
widget::{button, segmented_button, settings, toggler},
|
widget::{button, segmented_button, settings, toggler},
|
||||||
Element,
|
Element,
|
||||||
};
|
};
|
||||||
|
|
@ -30,10 +30,11 @@ impl Window {
|
||||||
|
|
||||||
settings::view_column(vec![
|
settings::view_column(vec![
|
||||||
self.page_title(Page::Demo),
|
self.page_title(Page::Demo),
|
||||||
segmented_button(&self.demo_tab_state)
|
segmented_button(&self.demo_view_switcher)
|
||||||
|
.height(Length::Units(48))
|
||||||
.on_activate(Message::DemoTabActivate)
|
.on_activate(Message::DemoTabActivate)
|
||||||
.into(),
|
.into(),
|
||||||
match self.demo_tab_state.active_data() {
|
match self.demo_view_switcher.active_data() {
|
||||||
None => panic!("no tab is active"),
|
None => panic!("no tab is active"),
|
||||||
Some(DemoView::TabA) => settings::view_column(vec![
|
Some(DemoView::TabA) => settings::view_column(vec![
|
||||||
settings::view_section("Debug")
|
settings::view_section("Debug")
|
||||||
|
|
@ -117,9 +118,15 @@ impl Window {
|
||||||
.padding(0)
|
.padding(0)
|
||||||
.into(),
|
.into(),
|
||||||
Some(DemoView::TabB) => {
|
Some(DemoView::TabB) => {
|
||||||
settings::view_column(vec![settings::view_section("Tab B")
|
settings::view_column(vec![
|
||||||
.add(cosmic::iced::widget::text("Nothing here yet").width(Length::Fill))
|
cosmic::iced::widget::text("SegmentedButton::Selection")
|
||||||
.into()])
|
.font(cosmic::font::FONT_SEMIBOLD)
|
||||||
|
.into(),
|
||||||
|
segmented_button(&self.demo_selection)
|
||||||
|
.style(theme::SegmentedButton::Selection)
|
||||||
|
.on_activate(Message::DemoSelectionActivate)
|
||||||
|
.into()
|
||||||
|
])
|
||||||
.padding(0)
|
.padding(0)
|
||||||
.into()
|
.into()
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -871,6 +871,8 @@ pub enum SegmentedButton {
|
||||||
/// A tabbed widget for switching between views in an interface.
|
/// A tabbed widget for switching between views in an interface.
|
||||||
#[default]
|
#[default]
|
||||||
ViewSwitcher,
|
ViewSwitcher,
|
||||||
|
/// A widget for multiple choice selection.
|
||||||
|
Selection,
|
||||||
/// Or implement any custom theme of your liking.
|
/// Or implement any custom theme of your liking.
|
||||||
Custom(fn(&Theme) -> segmented_button::Appearance)
|
Custom(fn(&Theme) -> segmented_button::Appearance)
|
||||||
}
|
}
|
||||||
|
|
@ -913,6 +915,39 @@ impl segmented_button::StyleSheet for Theme {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
SegmentedButton::Selection => {
|
||||||
|
let cosmic = self.cosmic();
|
||||||
|
segmented_button::Appearance {
|
||||||
|
background: None,
|
||||||
|
border_color: Color::TRANSPARENT,
|
||||||
|
border_radius: BorderRadius::from(0.0),
|
||||||
|
border_width: 0.0,
|
||||||
|
button_active: segmented_button::ButtonAppearance {
|
||||||
|
background: Some(Background::Color(cosmic.secondary.component.divider.into())),
|
||||||
|
border_bottom: None,
|
||||||
|
border_radius_first: BorderRadius::from([24.0, 0.0, 0.0, 24.0]),
|
||||||
|
border_radius_last: BorderRadius::from([0.0, 24.0, 24.0, 0.0]),
|
||||||
|
border_radius_middle: BorderRadius::from(0.0),
|
||||||
|
text_color: cosmic.accent.base.into(),
|
||||||
|
},
|
||||||
|
button_inactive: segmented_button::ButtonAppearance {
|
||||||
|
background: Some(Background::Color(cosmic.secondary.component.base.into())),
|
||||||
|
border_bottom: None,
|
||||||
|
border_radius_first: BorderRadius::from([24.0, 0.0, 0.0, 24.0]),
|
||||||
|
border_radius_last: BorderRadius::from([0.0, 24.0, 24.0, 0.0]),
|
||||||
|
border_radius_middle: BorderRadius::from(0.0),
|
||||||
|
text_color: cosmic.primary.on.into(),
|
||||||
|
},
|
||||||
|
button_hover: segmented_button::ButtonAppearance {
|
||||||
|
background: Some(Background::Color(cosmic.primary.component.hover.into())),
|
||||||
|
border_bottom: None,
|
||||||
|
border_radius_first: BorderRadius::from([24.0, 0.0, 0.0, 24.0]),
|
||||||
|
border_radius_last: BorderRadius::from([0.0, 24.0, 24.0, 0.0]),
|
||||||
|
border_radius_middle: BorderRadius::from(0.0),
|
||||||
|
text_color: cosmic.accent.base.into(),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
SegmentedButton::Custom(func) => func(self)
|
SegmentedButton::Custom(func) => func(self)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,5 @@
|
||||||
/// Copyright 2022 System76 <info@system76.com>
|
/// Copyright 2022 System76 <info@system76.com>
|
||||||
// SPDX-License-Identifier: MPL-2.0
|
// SPDX-License-Identifier: MPL-2.0
|
||||||
|
|
||||||
mod state;
|
mod state;
|
||||||
mod style;
|
mod style;
|
||||||
|
|
||||||
|
|
@ -49,7 +48,7 @@ where
|
||||||
pub fn new(state: &'a WidgetState) -> Self {
|
pub fn new(state: &'a WidgetState) -> Self {
|
||||||
Self {
|
Self {
|
||||||
state,
|
state,
|
||||||
height: Length::Units(48),
|
height: Length::Units(32),
|
||||||
width: Length::Fill,
|
width: Length::Fill,
|
||||||
spacing: 0,
|
spacing: 0,
|
||||||
style: <Renderer::Theme as StyleSheet>::Style::default(),
|
style: <Renderer::Theme as StyleSheet>::Style::default(),
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,5 @@
|
||||||
/// Copyright 2022 System76 <info@system76.com>
|
/// Copyright 2022 System76 <info@system76.com>
|
||||||
// SPDX-License-Identifier: MPL-2.0
|
// SPDX-License-Identifier: MPL-2.0
|
||||||
|
|
||||||
use slotmap::{SecondaryMap, SlotMap};
|
use slotmap::{SecondaryMap, SlotMap};
|
||||||
|
|
||||||
slotmap::new_key_type! {
|
slotmap::new_key_type! {
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,5 @@
|
||||||
/// Copyright 2022 System76 <info@system76.com>
|
/// Copyright 2022 System76 <info@system76.com>
|
||||||
// SPDX-License-Identifier: MPL-2.0
|
// SPDX-License-Identifier: MPL-2.0
|
||||||
|
|
||||||
use iced_core::{Background, BorderRadius, Color};
|
use iced_core::{Background, BorderRadius, Color};
|
||||||
|
|
||||||
/// The appearance of a [`SegmentedButton`].
|
/// The appearance of a [`SegmentedButton`].
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue