Lines Matching defs:state
155 * You can define a different image for each button state.
228 * @brief Obtains the image for the current button state.
230 * @return Returns the image for the current button state.
245 /* An enum constant representing the Button state released option */
247 /* An enum constant representing the Button state pressed option */
249 /* An enum constant representing the Button state inactive option */
251 /* An enum constant representing the Button state Number option */
370 * @brief Obtains the style of a button in a specific state.
373 * @param state Indicates the button state, as enumerated in {@link ButtonState}.
374 * @return Returns the style of the button in the specific state.
378 int64_t GetStyleForState(uint8_t key, ButtonState state) const;
381 * @brief Sets the style for a button in a specific state.
385 * @param state Indicates the button state, as enumerated in {@link ButtonState}.
389 void SetStyleForState(uint8_t key, int64_t value, ButtonState state);
408 * @brief Sets the state for a button. After the setting, calling {@link SetStyle}
409 * will change the style of this button, but not its state.
411 * @param state Indicates the button state, as enumerated in {@link ButtonState}.
415 void SetStateForStyle(ButtonState state)
417 styleState_ = state;
446 void SetState(ButtonState state);