xtd 0.2.0
pseudo_state.h File Reference
#include <xtd/enum>

Definition

Contains xtd::forms::style_sheets::pseudo_state enum class.

Include dependency graph for pseudo_state.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Namespaces

 xtd
 The xtd namespace contains all fundamental classes to access Hardware, Os, System, and more.
 
 xtd::forms
 The xtd::forms namespace contains classes for creating Windows-based applications that take full advantage of the rich user interface features available in the Microsoft Windows operating system, Apple macOS and Linux like Ubuntu operating system.
 
 xtd::forms::style_sheets
 The xtd::forms::style_sheets namespace contains various properties, states, and subcontrols that make it possible to customize the look of control.
 

Enumerations

enum  xtd::forms::style_sheets::pseudo_state {
  xtd::forms::style_sheets::pseudo_state::standard,
  xtd::forms::style_sheets::pseudo_state::hover = 0b1,
  xtd::forms::style_sheets::pseudo_state::pressed = 0b10,
  xtd::forms::style_sheets::pseudo_state::disabled = 0b100,
  xtd::forms::style_sheets::pseudo_state::focused = 0b1000,
  xtd::forms::style_sheets::pseudo_state::default_state = 0b10000,
  xtd::forms::style_sheets::pseudo_state::unchecked = standard,
  xtd::forms::style_sheets::pseudo_state::checked = 0b100000,
  xtd::forms::style_sheets::pseudo_state::mixed = 0b1000000,
  xtd::forms::style_sheets::pseudo_state::link = 0b10000000,
  xtd::forms::style_sheets::pseudo_state::visited = 0b100000000,
  xtd::forms::style_sheets::pseudo_state::active = 0b1000000000
}
 The pseudo_state enum class flag specifies the pseudo state of an element. More...