Lines Matching refs:UIButton
51 class UIButton : public UIView {
54 * @brief A constructor used to create a <b>UIButton</b> instance.
59 UIButton();
62 * @brief A constructor used to create a <b>UIButton</b> instance based on the button ID.
70 explicit UIButton(const char* id) : UIButton()
76 * @brief A destructor used to delete the <b>UIButton</b> instance.
81 virtual ~UIButton();
96 * @fn virtual bool UIButton::OnPreDraw(Rect& invalidatedArea) override
107 * @fn virtual bool UIButton::OnPostDraw(BufferInfo& gfxDstBuffer, Rect& invalidatedArea) override
115 * @fn virtual void UIButton::OnDraw(const Rect& invalidatedArea) override;
124 * @fn virtual void UIButton::OnPressEvent(const PressEvent& event) override;
135 * @fn virtual void UIButton::OnReleaseEvent(const ReleaseEvent& event) override;
144 * @fn virtual void UIButton::OnCancelEvent(const CancelEvent& event) override;
462 ButtonAnimator(UIButton& button) : animator_(this, nullptr, 0, false), button_(button) {}
474 UIButton& button_;