Mobile app version of vmapp.org
Login or Join
Holmes874

: What are the four control state names? I'm looking for the common names of the four basic control states (for desktop interfaces): Control is in its default state; Cursor is hovering above the

@Holmes874

Posted in: #InterfaceDesign

I'm looking for the common names of the four basic control states (for desktop interfaces):


Control is in its default state;
Cursor is hovering above the control;
Control is being pressed;
Control is being held down, but the cursor is outside its pressing zone


So far I could come up with the following names:


default;
under cursor;
pressed under cursor;
pressed


But I don't think those are very good. Shorter and more intuitive names would look much better in code. Perhaps there are common names for each of these states?

10.03% popularity Vote Up Vote Down


Login to follow query

More posts by @Holmes874

3 Comments

Sorted by latest first Latest Oldest Best

 

@Murray976

Normal, Hover, Active, Focus -- These are what I would consider being most common (a la HTML)

10% popularity Vote Up Vote Down


 

@Voss6371140

For desktop interfaces (wpf on .net) I use:

Normal, MouseOver, Pressed, Selected (and Disabled)

And then as different categories check states: Unchecked, Checked, (Indeterminate), and focus states: Unfocused, Focused.

10% popularity Vote Up Vote Down


 

@Speyer780

On, Hover or Over, and Click are the first three. But so far as I've seen, if you slide the cursor off the "button" while continuing to click, it doesn't register as a click, so I don't know why you'd need to define it as a state.

ETA KitP suggests "Focus" in the comments below for the fourth state.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme