Bug 223647

Summary: Use enum classes and OptionSets for ControlStates::States
Product: WebKit Reporter: Aditya Keerthi <akeerthi>
Component: WebCore Misc.Assignee: Aditya Keerthi <akeerthi>
Status: RESOLVED FIXED    
Severity: Normal CC: cdumez, changseok, cmarcelo, esprehn+autocc, ews-watchlist, glenn, gyuyoung.kim, kangil.han, kondapallykalyan, mifenton, pdr, sam, simon.fraser, webkit-bug-importer, wenson_hsieh
Priority: P2 Keywords: InRadar
Version: Other   
Hardware: Unspecified   
OS: Unspecified   
Attachments:
Description Flags
Patch none

Aditya Keerthi
Reported 2021-03-23 11:02:25 PDT
...
Attachments
Patch (32.65 KB, patch)
2021-03-26 11:38 PDT, Aditya Keerthi
no flags
Aditya Keerthi
Comment 1 2021-03-26 11:38:34 PDT
Simon Fraser (smfr)
Comment 2 2021-03-26 11:57:30 PDT
Comment on attachment 424383 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=424383&action=review > Source/WebCore/platform/ControlStates.h:57 > + SpinUp = 1 << 8, // Sub-state for HoverState and PressedState. Should we instead just use { Hovered, Pressed } ? > Source/WebCore/platform/adwaita/ThemeAdwaita.cpp:262 > + else if (states.states().contains(ControlStates::States::Hovered)) So much states
Aditya Keerthi
Comment 3 2021-03-26 12:18:31 PDT
(In reply to Simon Fraser (smfr) from comment #2) > Comment on attachment 424383 [details] > Patch > > View in context: > https://bugs.webkit.org/attachment.cgi?id=424383&action=review > > > Source/WebCore/platform/ControlStates.h:57 > > + SpinUp = 1 << 8, // Sub-state for HoverState and PressedState. > > Should we instead just use { Hovered, Pressed } ? { SpinUp } != { Hovered, Pressed }. From RenderTheme::extractControlStatesForRenderer: if (isHovered(o)) { states.add(ControlStates::States::Hovered); if (isSpinUpButtonPartHovered(o)) states.add(ControlStates::States::SpinUp); } if (isPressed(o)) { states.add(ControlStates::States::Pressed); if (isSpinUpButtonPartPressed(o)) states.add(ControlStates::States::SpinUp); }
EWS
Comment 4 2021-03-29 09:31:54 PDT
Committed r275161: <https://commits.webkit.org/r275161> All reviewed patches have been landed. Closing bug and clearing flags on attachment 424383 [details].
Radar WebKit Bug Importer
Comment 5 2021-03-29 09:32:14 PDT
Note You need to log in before you can comment on or make changes to this bug.