| 
									
										
										
										
											2019-04-04 15:20:02 +02:00
										 |  |  | #include <AK/StringBuilder.h>
 | 
					
						
							| 
									
										
										
										
											2019-05-15 04:25:53 +02:00
										 |  |  | #include <Kernel/KeyCode.h>
 | 
					
						
							| 
									
										
										
										
											2019-06-07 11:46:02 +02:00
										 |  |  | #include <LibGUI/GAction.h>
 | 
					
						
							| 
									
										
										
										
											2019-07-09 22:10:03 +02:00
										 |  |  | #include <LibGUI/GActionGroup.h>
 | 
					
						
							|  |  |  | #include <LibGUI/GButton.h>
 | 
					
						
							| 
									
										
										
										
											2019-06-07 11:46:02 +02:00
										 |  |  | #include <LibGUI/GPainter.h>
 | 
					
						
							|  |  |  | #include <SharedGraphics/StylePainter.h>
 | 
					
						
							| 
									
										
										
										
											2018-10-11 01:48:09 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-20 04:49:48 +01:00
										 |  |  | GButton::GButton(GWidget* parent) | 
					
						
							| 
									
										
										
										
											2019-05-24 16:32:20 +02:00
										 |  |  |     : GAbstractButton(parent) | 
					
						
							| 
									
										
										
										
											2018-10-11 01:48:09 +02:00
										 |  |  | { | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-02 14:58:02 +02:00
										 |  |  | GButton::GButton(const StringView& text, GWidget* parent) | 
					
						
							| 
									
										
										
										
											2019-05-24 22:47:01 +02:00
										 |  |  |     : GAbstractButton(text, parent) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-20 04:49:48 +01:00
										 |  |  | GButton::~GButton() | 
					
						
							| 
									
										
										
										
											2018-10-11 01:48:09 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2019-04-12 02:53:27 +02:00
										 |  |  |     if (m_action) | 
					
						
							| 
									
										
										
										
											2019-06-07 11:46:02 +02:00
										 |  |  |         m_action->unregister_button({}, *this); | 
					
						
							| 
									
										
										
										
											2018-10-11 01:48:09 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-28 19:34:55 +01:00
										 |  |  | void GButton::paint_event(GPaintEvent& event) | 
					
						
							| 
									
										
										
										
											2018-10-11 01:48:09 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2019-03-28 17:19:56 +01:00
										 |  |  |     GPainter painter(*this); | 
					
						
							| 
									
										
										
										
											2019-03-29 15:01:54 +01:00
										 |  |  |     painter.add_clip_rect(event.rect()); | 
					
						
							| 
									
										
										
										
											2018-10-12 14:58:16 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-24 16:32:20 +02:00
										 |  |  |     StylePainter::paint_button(painter, rect(), m_button_style, is_being_pressed(), is_hovered(), is_checkable() && is_checked(), is_enabled()); | 
					
						
							| 
									
										
										
										
											2018-10-12 14:58:16 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-24 16:32:20 +02:00
										 |  |  |     if (text().is_empty() && !m_icon) | 
					
						
							| 
									
										
										
										
											2019-04-04 15:20:02 +02:00
										 |  |  |         return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     auto content_rect = rect().shrunken(10, 2); | 
					
						
							|  |  |  |     auto icon_location = m_icon ? content_rect.center().translated(-(m_icon->width() / 2), -(m_icon->height() / 2)) : Point(); | 
					
						
							| 
									
										
										
										
											2019-05-24 16:32:20 +02:00
										 |  |  |     if (m_icon && !text().is_empty()) | 
					
						
							| 
									
										
										
										
											2019-04-13 16:59:55 +02:00
										 |  |  |         icon_location.set_x(content_rect.x()); | 
					
						
							| 
									
										
										
										
											2019-05-24 16:32:20 +02:00
										 |  |  |     if (is_being_pressed()) | 
					
						
							| 
									
										
										
										
											2019-04-13 16:59:55 +02:00
										 |  |  |         painter.translate(1, 1); | 
					
						
							| 
									
										
										
										
											2019-04-12 02:53:27 +02:00
										 |  |  |     if (m_icon) { | 
					
						
							|  |  |  |         if (is_enabled()) | 
					
						
							|  |  |  |             painter.blit(icon_location, *m_icon, m_icon->rect()); | 
					
						
							|  |  |  |         else | 
					
						
							|  |  |  |             painter.blit_dimmed(icon_location, *m_icon, m_icon->rect()); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-05-24 16:32:20 +02:00
										 |  |  |     auto& font = (is_checkable() && is_checked()) ? Font::default_bold_font() : this->font(); | 
					
						
							|  |  |  |     if (m_icon && !text().is_empty()) { | 
					
						
							| 
									
										
										
										
											2019-04-13 16:59:55 +02:00
										 |  |  |         content_rect.move_by(m_icon->width() + 4, 0); | 
					
						
							|  |  |  |         content_rect.set_width(content_rect.width() - m_icon->width() - 4); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-05-24 22:54:37 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-25 04:01:22 +02:00
										 |  |  |     Rect text_rect { 0, 0, font.width(text()), font.glyph_height() }; | 
					
						
							|  |  |  |     if (text_rect.width() > content_rect.width()) | 
					
						
							|  |  |  |         text_rect.set_width(content_rect.width()); | 
					
						
							| 
									
										
										
										
											2019-05-25 20:15:52 +02:00
										 |  |  |     text_rect.align_within(content_rect, text_alignment()); | 
					
						
							|  |  |  |     paint_text(painter, text_rect, font, TextAlignment::Center); | 
					
						
							| 
									
										
										
										
											2018-10-11 01:48:09 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-19 01:41:00 +01:00
										 |  |  | void GButton::click() | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2019-04-12 02:53:27 +02:00
										 |  |  |     if (!is_enabled()) | 
					
						
							|  |  |  |         return; | 
					
						
							| 
									
										
										
										
											2019-07-09 22:10:03 +02:00
										 |  |  |     if (is_checkable()) { | 
					
						
							|  |  |  |         if (is_checked() && !is_uncheckable()) | 
					
						
							|  |  |  |             return; | 
					
						
							| 
									
										
										
										
											2019-06-12 05:57:26 +02:00
										 |  |  |         set_checked(!is_checked()); | 
					
						
							| 
									
										
										
										
											2019-07-09 22:10:03 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-03-19 01:41:00 +01:00
										 |  |  |     if (on_click) | 
					
						
							|  |  |  |         on_click(*this); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-21 10:09:57 +02:00
										 |  |  | bool GButton::supports_keyboard_activation() const | 
					
						
							| 
									
										
										
										
											2019-06-16 21:01:51 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     return is_enabled(); | 
					
						
							| 
									
										
										
										
											2019-06-03 18:13:41 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2019-06-03 16:02:49 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-12 02:53:27 +02:00
										 |  |  | void GButton::set_action(GAction& action) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     m_action = action.make_weak_ptr(); | 
					
						
							| 
									
										
										
										
											2019-06-07 11:46:02 +02:00
										 |  |  |     action.register_button({}, *this); | 
					
						
							| 
									
										
										
										
											2019-04-12 02:53:27 +02:00
										 |  |  |     set_enabled(action.is_enabled()); | 
					
						
							| 
									
										
										
										
											2019-04-26 21:09:56 +02:00
										 |  |  |     set_checkable(action.is_checkable()); | 
					
						
							|  |  |  |     if (action.is_checkable()) | 
					
						
							|  |  |  |         set_checked(action.is_checked()); | 
					
						
							| 
									
										
										
										
											2019-04-12 02:53:27 +02:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2019-04-13 16:59:55 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-21 18:37:47 +02:00
										 |  |  | void GButton::set_icon(RefPtr<GraphicsBitmap>&& icon) | 
					
						
							| 
									
										
										
										
											2019-04-13 16:59:55 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2019-04-14 02:36:06 +02:00
										 |  |  |     if (m_icon == icon) | 
					
						
							| 
									
										
										
										
											2019-04-13 16:59:55 +02:00
										 |  |  |         return; | 
					
						
							|  |  |  |     m_icon = move(icon); | 
					
						
							|  |  |  |     update(); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2019-07-09 22:10:03 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | bool GButton::is_uncheckable() const | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (!m_action) | 
					
						
							|  |  |  |         return true; | 
					
						
							|  |  |  |     if (!m_action->group()) | 
					
						
							|  |  |  |         return true; | 
					
						
							|  |  |  |     return m_action->group()->is_unchecking_allowed(); | 
					
						
							|  |  |  | } |