| 1614 | } |
| 1615 | |
| 1616 | void NetHackQtMapWindow::mousePressEvent(QMouseEvent* event) |
| 1617 | { |
| 1618 | clicksink.Put( |
| 1619 | event->pos().x()/qt_settings->glyphs().width(), |
| 1620 | event->pos().y()/qt_settings->glyphs().height(), |
| 1621 | event->button()==LeftButton ? CLICK_1 : CLICK_2 |
| 1622 | ); |
| 1623 | qApp->exit_loop(); |
| 1624 | } |
| 1625 | |
| 1626 | static |
| 1627 | const QPen& nhcolor_to_pen(int c) |
nothing calls this directly
no test coverage detected