123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- #include "WSMenu.h"
- #include "WSMenuItem.h"
- #include "WSWindow.h"
- #include "WSMessage.h"
- #include "WSMessageLoop.h"
- #include <SharedGraphics/Painter.h>
- #include <SharedGraphics/Font.h>
- WSMenu::WSMenu(const String& name)
- : m_name(name)
- {
- }
- WSMenu::~WSMenu()
- {
- }
- void WSMenu::set_menu_window(OwnPtr<WSWindow>&& menu_window)
- {
- m_menu_window = move(menu_window);
- }
- const Font& WSMenu::font() const
- {
- return Font::default_font();
- }
- int WSMenu::width() const
- {
- int longest = 0;
- for (auto& item : m_items) {
- if (item->type() == WSMenuItem::Text)
- longest = max(longest, font().width(item->text()));
- }
- return max(longest, rect_in_menubar().width()) + padding() * 2;
- }
- int WSMenu::height() const
- {
- if (m_items.is_empty())
- return 0;
- return (m_items.last()->rect().bottom() - 1) + padding();
- }
- void WSMenu::redraw()
- {
- ASSERT(menu_window());
- draw();
- menu_window()->invalidate();
- }
- WSWindow& WSMenu::ensure_menu_window()
- {
- if (!m_menu_window) {
- Point next_item_location(padding() / 2, padding() / 2);
- for (auto& item : m_items) {
- int height = 0;
- if (item->type() == WSMenuItem::Text)
- height = item_height();
- else if (item->type() == WSMenuItem::Separator)
- height = 7;
- item->set_rect({ next_item_location, { width() - padding(), height } });
- next_item_location.move_by(0, height);
- }
- auto window = make<WSWindow>(*this);
- window->set_rect(0, 0, width(), height());
- m_menu_window = move(window);
- draw();
- }
- return *m_menu_window;
- }
- void WSMenu::draw()
- {
- ASSERT(menu_window());
- ASSERT(menu_window()->backing());
- Painter painter(*menu_window()->backing());
- Rect rect { { }, menu_window()->size() };
- painter.draw_rect(rect, Color::White);
- painter.fill_rect(rect.shrunken(2, 2), Color::LightGray);
- for (auto& item : m_items) {
- if (item->type() == WSMenuItem::Text) {
- Color text_color = Color::Black;
- if (item.ptr() == m_hovered_item) {
- painter.fill_rect(item->rect(), Color(0, 0, 104));
- text_color = Color::White;
- }
- painter.draw_text(item->rect(), item->text(), TextAlignment::CenterLeft, text_color);
- } else if (item->type() == WSMenuItem::Separator) {
- Point p1(padding(), item->rect().center().y());
- Point p2(width() - padding(), item->rect().center().y());
- painter.draw_line(p1, p2, Color::MidGray);
- }
- }
- }
- void WSMenu::on_window_message(WSMessage& message)
- {
- ASSERT(menu_window());
- if (message.type() == WSMessage::MouseMove) {
- auto* item = item_at(static_cast<WSMouseEvent&>(message).position());
- if (!item || m_hovered_item == item)
- return;
- m_hovered_item = item;
- redraw();
- return;
- }
- if (message.type() == WSMessage::MouseUp) {
- if (!m_hovered_item)
- return;
- did_activate(*m_hovered_item);
- m_hovered_item = nullptr;
- redraw();
- return;
- }
- }
- void WSMenu::did_activate(WSMenuItem& item)
- {
- if (on_item_activation)
- on_item_activation(item);
- }
- WSMenuItem* WSMenu::item_at(const Point& position)
- {
- for (auto& item : m_items) {
- if (!item->rect().contains(position))
- continue;
- return item.ptr();
- }
- return nullptr;
- }
|