mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 13:37:45 +00:00
LibWeb: Implement <input type=submit> without using LibGUI
Following in the footsteps of <input type=checkbox>, this patch adds LayoutButton which implements a basic push button using LibGfx styling primitives.
This commit is contained in:
parent
94c55d9e37
commit
cd5570670c
7 changed files with 220 additions and 40 deletions
|
@ -93,6 +93,7 @@ public:
|
|||
virtual bool is_table_row_group() const { return false; }
|
||||
virtual bool is_break() const { return false; }
|
||||
virtual bool is_check_box() const { return false; }
|
||||
virtual bool is_button() const { return false; }
|
||||
bool has_style() const { return m_has_style; }
|
||||
|
||||
bool is_inline() const { return m_inline; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue