| 938 | } |
| 939 | |
| 940 | void ColorPicker::UpdateVisualState(bool useTransitions) |
| 941 | { |
| 942 | wux::VisualStateManager::GoToState(*this, IsEnabled() ? L"Normal" : L"Disabled", useTransitions); |
| 943 | wux::VisualStateManager::GoToState(*this, GetActiveColorRepresentation() == txmp::ColorRepresentation::Hsva ? L"HsvSelected" : L"RgbSelected", useTransitions); |
| 944 | wux::VisualStateManager::GoToState(*this, IsColorPaletteVisible() ? L"ColorPaletteVisible" : L"ColorPaletteCollapsed", useTransitions); |
| 945 | } |
| 946 | |
| 947 | void ColorPicker::UpdateColorControlValues() |
| 948 | { |
no outgoing calls
no test coverage detected