Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement disabled for druid controls #1717

Merged
merged 67 commits into from
May 3, 2021
Merged
Show file tree
Hide file tree
Changes from 64 commits
Commits
Show all changes
67 commits
Select commit Hold shift + click to select a range
fe93a1b
- added LifeCycle::DisabledChanged and InternalLifeCycle::RouteDisab…
Mar 20, 2021
3e1874b
created tests for disable
Mar 20, 2021
d6e34b2
fixed tests
Mar 20, 2021
500954e
fixed tests
Mar 20, 2021
f606199
updated core.rs and event.rs
Mar 20, 2021
6fd0b71
fixed focus-chain bug:
Mar 22, 2021
25d19c9
fix disabled update
Mar 22, 2021
e3d8b92
update tests
Mar 22, 2021
77d4f8f
fixed code (all tests succeed)
Mar 22, 2021
4d48edd
refactored core.rs and tests/mod.rs
Mar 23, 2021
9b2c8ba
updated tests
Mar 23, 2021
d5116de
fixed focus-chain bug
Mar 23, 2021
6c79e1e
make clippy happy
Mar 23, 2021
1fe6971
Merge branch 'master' into disable-widgets-2
xarvic Mar 23, 2021
40be21f
make clippy happy #2
Mar 23, 2021
5520e5b
Apply suggestions from code review
xarvic Mar 31, 2021
232e7ee
Update druid/src/contexts.rs
xarvic Mar 31, 2021
eccd596
refactor DisabledChanged
Mar 31, 2021
9754051
refactor DisabledChanged
Mar 31, 2021
74b86b2
fixed error, revered change of focus_chain
Mar 31, 2021
c181f51
refactored tests
Mar 31, 2021
cfc544e
reordered lifecycle events
Mar 31, 2021
05d45fc
reverted changes to the focus_chain
Mar 31, 2021
b9b9aca
implemented new focus-chain using LifeCycle::BuildFocusChain
Apr 5, 2021
f091bf9
update tests
Apr 5, 2021
4766ceb
fixed problems
Apr 5, 2021
a901d1c
updated texts
Apr 5, 2021
eb3cfd7
clippy fix
Apr 5, 2021
fdd510a
fixed documentation
Apr 5, 2021
4ef9697
Update druid/src/event.rs
xarvic Apr 5, 2021
4745fe9
fixed documentation
Apr 5, 2021
4567f8f
made logic simpler
Apr 5, 2021
ba58aad
refactored post_event_processing
Apr 5, 2021
8d6b784
updated CHANGELOG.md
Apr 5, 2021
d3e73d1
fixed docs
Apr 5, 2021
7be336c
Merge branch 'master' into disable-widgets-2
xarvic Apr 5, 2021
a52437c
make clippy happy
Apr 5, 2021
2919953
Merge branch 'master' into disable-widgets-2
cmyr Apr 6, 2021
aad03e0
Merge pull request #2 from linebender/master
xarvic Apr 7, 2021
8cc5aed
implemented DisabledIf
Apr 7, 2021
1b1b661
reformat
Apr 7, 2021
c1c51fe
updated CHANGELOG.md
Apr 7, 2021
b414907
fix issue
Apr 7, 2021
9a38b81
Merge branch 'master' into disabled_if
xarvic Apr 7, 2021
2124684
updated example
Apr 8, 2021
6315f20
added License, updated documentation
Apr 8, 2021
0c4f0de
reformat
Apr 8, 2021
3a70a0a
Merge remote-tracking branch 'origin/disabled_if' into disabled_if
Apr 8, 2021
ba8ece0
Merge branch 'master' into disabled_if
xarvic Apr 8, 2021
37e47c5
reformat
Apr 8, 2021
cd79332
Merge remote-tracking branch 'origin/disabled_if' into disabled_if
Apr 8, 2021
2e991cb
implement disabled state for button
Apr 12, 2021
cddcf4e
Merge branch 'disabled_if' into disable-widgets-2
Apr 13, 2021
4f452a0
updated visuals of controls when disabled
Apr 13, 2021
cccf5e2
reformat
Apr 13, 2021
c542489
run clippy
Apr 13, 2021
4a73d4b
run cargo fmt
Apr 13, 2021
573ed24
Merge branch 'master' into disable-widgets-2
xarvic Apr 14, 2021
d15a590
Update CHANGELOG.md
xarvic Apr 14, 2021
45e2ee5
Merge branch 'master' into disable-widgets-2
xarvic Apr 17, 2021
9925a05
implemented disabled-text-color
Apr 20, 2021
7869dde
changed background
Apr 20, 2021
0ebb7b8
reformat
Apr 20, 2021
ced8b37
Merge branch 'master' into disable-widgets-2
xarvic Apr 20, 2021
cec3486
Changed label.
Apr 22, 2021
dea7c3a
added deprecation note
Apr 24, 2021
271a7df
Merge branch 'master' into disable-widgets-2
cmyr May 3, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ You can find its changes [documented below](#070---2021-01-01).
- Flex values that are less than 0.0 will default to 0.0 and warn in release. It will panic in debug mode. ([#1691] by [@arthmis])
- Lens implemented for tuples of Lenses of length 2-8, Tuple2 removed ([#1654] by [@Maan2003])
- Window size and positioning code is now in display points ([#1713] by [@jneem])
- Update look and feel of controls when disabled ([#1717] by [@xarvic])

### Deprecated

Expand Down Expand Up @@ -683,6 +684,7 @@ Last release without a changelog :(
[#1702]: https://github.com/linebender/druid/pull/1702
[#1713]: https://github.com/linebender/druid/pull/1713
[#1715]: https://github.com/linebender/druid/pull/1715
[#1717]: https://github.com/linebender/druid/pull/1717
[#1724]: https://github.com/linebender/druid/pull/1724

[Unreleased]: https://github.com/linebender/druid/compare/v0.7.0...master
Expand Down
2 changes: 1 addition & 1 deletion docs/book_examples/src/env_md.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ fn make_labels() {
// ANCHOR: env_scope
fn scoped_label() {
let my_label = Label::<()>::new("Warning!").env_scope(|env, _| {
env.set(druid::theme::LABEL_COLOR, Color::BLACK);
env.set(druid::theme::TEXT_COLOR, Color::BLACK);
env.set(druid::theme::TEXT_SIZE_NORMAL, 18.0);
});
}
Expand Down
2 changes: 1 addition & 1 deletion druid/examples/event_viewer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ pub fn main() {
.log_to_console()
.configure_env(|env, _| {
env.set(theme::UI_FONT, FontDescriptor::default().with_size(12.0));
env.set(theme::LABEL_COLOR, TEXT_COLOR);
env.set(theme::TEXT_COLOR, TEXT_COLOR);
env.set(theme::WIDGET_PADDING_HORIZONTAL, 2.0);
env.set(theme::WIDGET_PADDING_VERTICAL, 2.0);
})
Expand Down
2 changes: 1 addition & 1 deletion druid/examples/sub_window.rs
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ impl<W: Widget<bool>> Controller<bool, W> for CancelClose {

fn build_root_widget() -> impl Widget<HelloState> {
let label = EnvScope::new(
|env, _t| env.set(theme::LABEL_COLOR, env.get(theme::PRIMARY_LIGHT)),
|env, _t| env.set(theme::TEXT_COLOR, env.get(theme::PRIMARY_LIGHT)),
ControllerHost::new(
Label::new(|data: &HelloState, _env: &Env| {
format!("Hello {}! {} ", data.name, data.sub.my_stuff)
Expand Down
45 changes: 30 additions & 15 deletions druid/src/text/input_component.rs
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ impl<T: TextStorage + EditableText> Widget<T> for TextComponent<T> {
)]
fn event(&mut self, ctx: &mut EventCtx, event: &Event, data: &mut T, env: &Env) {
match event {
Event::MouseDown(mouse) if self.can_write() => {
Event::MouseDown(mouse) if self.can_write() && !ctx.is_disabled() => {
ctx.set_active(true);
// ensure data is up to date before a click
let needs_rebuild = self
Expand All @@ -295,23 +295,26 @@ impl<T: TextStorage + EditableText> Widget<T> for TextComponent<T> {
ctx.request_paint();
}
Event::MouseMove(mouse) if self.can_write() => {
ctx.set_cursor(&Cursor::IBeam);
if ctx.is_active() {
let pre_sel = self.borrow().selection();
self.borrow_mut().do_drag(mouse.pos);
if self.borrow().selection() != pre_sel {
self.borrow_mut()
.update_pending_invalidation(ImeInvalidation::SelectionChanged);
ctx.request_update();
ctx.request_paint();
if !ctx.is_disabled() {
ctx.set_cursor(&Cursor::IBeam);
if ctx.is_active() {
let pre_sel = self.borrow().selection();
self.borrow_mut().do_drag(mouse.pos);
if self.borrow().selection() != pre_sel {
self.borrow_mut()
.update_pending_invalidation(ImeInvalidation::SelectionChanged);
ctx.request_update();
ctx.request_paint();
}
}
} else {
ctx.set_disabled(false);
ctx.clear_cursor();
}
}
Event::MouseUp(_) => {
if ctx.is_active() {
ctx.set_active(false);
ctx.request_paint();
}
Event::MouseUp(_) if ctx.is_active() => {
ctx.set_active(false);
ctx.request_paint();
}
Event::ImeStateChange => {
assert!(
Expand Down Expand Up @@ -380,6 +383,18 @@ impl<T: TextStorage + EditableText> Widget<T> for TextComponent<T> {
}
}
}
LifeCycle::DisabledChanged(disabled) => {
if self.can_write() {
let color = if *disabled {
env.get(theme::DISABLED_TEXT_COLOR)
} else {
env.get(theme::TEXT_COLOR)
};

self.borrow_mut().layout.set_text_color(color);
}
ctx.request_layout();
}
_ => (),
}
}
Expand Down
2 changes: 1 addition & 1 deletion druid/src/text/layout.rs
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ impl<T> TextLayout<T> {
TextLayout {
text: None,
font: crate::theme::UI_FONT.into(),
text_color: crate::theme::LABEL_COLOR.into(),
text_color: crate::theme::TEXT_COLOR.into(),
text_size_override: None,
layout: None,
wrap_width: f64::INFINITY,
Expand Down
19 changes: 17 additions & 2 deletions druid/src/theme.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ use crate::{Env, FontDescriptor, FontFamily, FontStyle, FontWeight, Insets, Key}
pub const WINDOW_BACKGROUND_COLOR: Key<Color> =
Key::new("org.linebender.druid.theme.window_background_color");

pub const LABEL_COLOR: Key<Color> = Key::new("org.linebender.druid.theme.label_color");
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Because this is heavily used elsewhere (including external projects) I would keep it around with a deprecation notice, like:

#[deprecated(since = "0.8.0", note = "renamed to TEXT_COLOR")]
pub const LABEL_COLOR: Key<Color> = TEXT_COLOR;

pub const TEXT_COLOR: Key<Color> = Key::new("org.linebender.druid.theme.label_color");
pub const DISABLED_TEXT_COLOR: Key<Color> =
Key::new("org.linebender.druid.theme.disabled_label_color");
pub const PLACEHOLDER_COLOR: Key<Color> = Key::new("org.linebender.druid.theme.placeholder_color");

pub const PRIMARY_LIGHT: Key<Color> = Key::new("org.linebender.druid.theme.primary_light");
Expand All @@ -34,8 +36,16 @@ pub const BACKGROUND_LIGHT: Key<Color> = Key::new("org.linebender.druid.theme.ba
pub const BACKGROUND_DARK: Key<Color> = Key::new("org.linebender.druid.theme.background_dark");
pub const FOREGROUND_LIGHT: Key<Color> = Key::new("org.linebender.druid.theme.foreground_light");
pub const FOREGROUND_DARK: Key<Color> = Key::new("org.linebender.druid.theme.foreground_dark");
pub const DISABLED_FOREGROUND_LIGHT: Key<Color> =
Key::new("org.linebender.druid.theme.disabled_foreground_light");
pub const DISABLED_FOREGROUND_DARK: Key<Color> =
Key::new("org.linebender.druid.theme.disabled_foreground_dark");
xarvic marked this conversation as resolved.
Show resolved Hide resolved
pub const BUTTON_DARK: Key<Color> = Key::new("org.linebender.druid.theme.button_dark");
pub const BUTTON_LIGHT: Key<Color> = Key::new("org.linebender.druid.theme.button_light");
pub const DISABLED_BUTTON_DARK: Key<Color> =
Key::new("org.linebender.druid.theme.disabled_button_dark");
pub const DISABLED_BUTTON_LIGHT: Key<Color> =
Key::new("org.linebender.druid.theme.disabled_button_light");
pub const BUTTON_BORDER_RADIUS: Key<f64> = Key::new("org.linebender.druid.theme.button_radius");
pub const BUTTON_BORDER_WIDTH: Key<f64> =
Key::new("org.linebender.druid.theme.button_border_width");
Expand Down Expand Up @@ -107,7 +117,8 @@ pub const SCROLLBAR_MIN_SIZE: Key<f64> = Key::new("org.linebender.theme.scrollba
/// An initial theme.
pub(crate) fn add_to_env(env: Env) -> Env {
env.adding(WINDOW_BACKGROUND_COLOR, Color::rgb8(0x29, 0x29, 0x29))
.adding(LABEL_COLOR, Color::rgb8(0xf0, 0xf0, 0xea))
.adding(TEXT_COLOR, Color::rgb8(0xf0, 0xf0, 0xea))
.adding(DISABLED_TEXT_COLOR, Color::rgb8(0xa0, 0xa0, 0x9a))
.adding(PLACEHOLDER_COLOR, Color::rgb8(0x80, 0x80, 0x80))
.adding(PRIMARY_LIGHT, Color::rgb8(0x5c, 0xc4, 0xff))
.adding(PRIMARY_DARK, Color::rgb8(0x00, 0x8d, 0xdd))
Expand All @@ -116,8 +127,12 @@ pub(crate) fn add_to_env(env: Env) -> Env {
.adding(BACKGROUND_DARK, Color::rgb8(0x31, 0x31, 0x31))
.adding(FOREGROUND_LIGHT, Color::rgb8(0xf9, 0xf9, 0xf9))
.adding(FOREGROUND_DARK, Color::rgb8(0xbf, 0xbf, 0xbf))
.adding(DISABLED_FOREGROUND_LIGHT, Color::rgb8(0x89, 0x89, 0x89))
.adding(DISABLED_FOREGROUND_DARK, Color::rgb8(0x6f, 0x6f, 0x6f))
.adding(BUTTON_DARK, Color::BLACK)
.adding(BUTTON_LIGHT, Color::rgb8(0x21, 0x21, 0x21))
.adding(DISABLED_BUTTON_DARK, Color::grey8(0x28))
.adding(DISABLED_BUTTON_LIGHT, Color::grey8(0x38))
.adding(BUTTON_BORDER_RADIUS, 4.)
.adding(BUTTON_BORDER_WIDTH, 2.)
.adding(BORDER_DARK, Color::rgb8(0x3a, 0x3a, 0x3a))
Expand Down
31 changes: 21 additions & 10 deletions druid/src/widget/button.rs
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ impl<T: Data> Button<T> {
/// [`.on_click`]: #method.on_click
pub fn from_label(label: Label<T>) -> Button<T> {
Button {
label,
label: label.control_text(),
label_size: Size::ZERO,
}
}
Expand Down Expand Up @@ -115,24 +115,26 @@ impl<T: Data> Widget<T> for Button<T> {
fn event(&mut self, ctx: &mut EventCtx, event: &Event, _data: &mut T, _env: &Env) {
match event {
Event::MouseDown(_) => {
ctx.set_active(true);
ctx.request_paint();
trace!("Button {:?} pressed", ctx.widget_id());
if !ctx.is_disabled() {
ctx.set_active(true);
ctx.request_paint();
trace!("Button {:?} pressed", ctx.widget_id());
}
}
Event::MouseUp(_) => {
if ctx.is_active() {
ctx.set_active(false);
if ctx.is_active() && !ctx.is_disabled() {
ctx.request_paint();
trace!("Button {:?} released", ctx.widget_id());
}
ctx.set_active(false);
}
_ => (),
}
}

#[instrument(name = "Button", level = "trace", skip(self, ctx, event, data, env))]
fn lifecycle(&mut self, ctx: &mut LifeCycleCtx, event: &LifeCycle, data: &T, env: &Env) {
if let LifeCycle::HotChanged(_) = event {
if let LifeCycle::HotChanged(_) | LifeCycle::DisabledChanged(_) = event {
ctx.request_paint();
}
self.label.lifecycle(ctx, event, data, env)
Expand Down Expand Up @@ -165,7 +167,7 @@ impl<T: Data> Widget<T> for Button<T> {

#[instrument(name = "Button", level = "trace", skip(self, ctx, data, env))]
fn paint(&mut self, ctx: &mut PaintCtx, data: &T, env: &Env) {
let is_active = ctx.is_active();
let is_active = ctx.is_active() && !ctx.is_disabled();
let is_hot = ctx.is_hot();
let size = ctx.size();
let stroke_width = env.get(theme::BUTTON_BORDER_WIDTH);
Expand All @@ -175,7 +177,16 @@ impl<T: Data> Widget<T> for Button<T> {
.inset(-stroke_width / 2.0)
.to_rounded_rect(env.get(theme::BUTTON_BORDER_RADIUS));

let bg_gradient = if is_active {
let bg_gradient = if ctx.is_disabled() {
xarvic marked this conversation as resolved.
Show resolved Hide resolved
LinearGradient::new(
UnitPoint::TOP,
UnitPoint::BOTTOM,
(
env.get(theme::DISABLED_BUTTON_LIGHT),
env.get(theme::DISABLED_BUTTON_DARK),
),
)
} else if is_active {
LinearGradient::new(
UnitPoint::TOP,
UnitPoint::BOTTOM,
Expand All @@ -189,7 +200,7 @@ impl<T: Data> Widget<T> for Button<T> {
)
};

let border_color = if is_hot {
let border_color = if is_hot && !ctx.is_disabled() {
env.get(theme::BORDER_LIGHT)
} else {
env.get(theme::BORDER_DARK)
Expand Down
26 changes: 17 additions & 9 deletions druid/src/widget/checkbox.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ impl Checkbox {
/// Create a new `Checkbox` with a text label.
pub fn new(text: impl Into<LabelText<bool>>) -> Checkbox {
Checkbox {
child_label: Label::new(text),
child_label: Label::new(text).control_text(),
}
}

Expand All @@ -44,13 +44,14 @@ impl Widget<bool> for Checkbox {
fn event(&mut self, ctx: &mut EventCtx, event: &Event, data: &mut bool, _env: &Env) {
match event {
Event::MouseDown(_) => {
ctx.set_active(true);
ctx.request_paint();
trace!("Checkbox {:?} pressed", ctx.widget_id());
if !ctx.is_disabled() {
ctx.set_active(true);
ctx.request_paint();
trace!("Checkbox {:?} pressed", ctx.widget_id());
}
}
Event::MouseUp(_) => {
if ctx.is_active() {
ctx.set_active(false);
if ctx.is_active() && !ctx.is_disabled() {
if ctx.is_hot() {
if *data {
*data = false;
Expand All @@ -62,6 +63,7 @@ impl Widget<bool> for Checkbox {
}
ctx.request_paint();
}
ctx.set_active(false);
}
_ => (),
}
Expand All @@ -70,7 +72,7 @@ impl Widget<bool> for Checkbox {
#[instrument(name = "CheckBox", level = "trace", skip(self, ctx, event, data, env))]
fn lifecycle(&mut self, ctx: &mut LifeCycleCtx, event: &LifeCycle, data: &bool, env: &Env) {
self.child_label.lifecycle(ctx, event, data, env);
if let LifeCycle::HotChanged(_) = event {
if let LifeCycle::HotChanged(_) | LifeCycle::DisabledChanged(_) = event {
ctx.request_paint();
}
}
Expand Down Expand Up @@ -126,7 +128,7 @@ impl Widget<bool> for Checkbox {

ctx.fill(rect, &background_gradient);

let border_color = if ctx.is_hot() {
let border_color = if ctx.is_hot() && !ctx.is_disabled() {
env.get(theme::BORDER_LIGHT)
} else {
env.get(theme::BORDER_DARK)
Expand All @@ -145,7 +147,13 @@ impl Widget<bool> for Checkbox {
.line_cap(LineCap::Round)
.line_join(LineJoin::Round);

ctx.stroke_styled(path, &env.get(theme::LABEL_COLOR), 2., &style);
let brush = if ctx.is_disabled() {
env.get(theme::DISABLED_TEXT_COLOR)
} else {
env.get(theme::TEXT_COLOR)
};

ctx.stroke_styled(path, &brush, 2., &style);
xarvic marked this conversation as resolved.
Show resolved Hide resolved
}

// Paint the text label
Expand Down
4 changes: 2 additions & 2 deletions druid/src/widget/click.rs
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ impl<T: Data, W: Widget<T>> Controller<T, W> for Click<T> {
fn event(&mut self, child: &mut W, ctx: &mut EventCtx, event: &Event, data: &mut T, env: &Env) {
match event {
Event::MouseDown(mouse_event) => {
if mouse_event.button == MouseButton::Left {
if mouse_event.button == MouseButton::Left && !ctx.is_disabled() {
ctx.set_active(true);
ctx.request_paint();
trace!("Widget {:?} pressed", ctx.widget_id());
Expand All @@ -68,7 +68,7 @@ impl<T: Data, W: Widget<T>> Controller<T, W> for Click<T> {
Event::MouseUp(mouse_event) => {
if ctx.is_active() && mouse_event.button == MouseButton::Left {
ctx.set_active(false);
if ctx.is_hot() {
if ctx.is_hot() && !ctx.is_disabled() {
(self.action)(ctx, data, env);
}
ctx.request_paint();
Expand Down
2 changes: 1 addition & 1 deletion druid/src/widget/env_scope.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ impl<T, W: Widget<T>> EnvScope<T, W> {
/// # fn build_widget() -> impl Widget<String> {
/// EnvScope::new(
/// |env, data| {
/// env.set(theme::LABEL_COLOR, Color::WHITE);
/// env.set(theme::TEXT_COLOR, Color::WHITE);
/// },
/// Label::new("White text!")
/// )
Expand Down
Loading