mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-20 13:23:59 +00:00
30 lines
611 B
C++
30 lines
611 B
C++
#include "traff_assessment_tool/map_widget.hpp"
|
|
|
|
#include "qt/qt_common/helpers.hpp"
|
|
|
|
#include "map/framework.hpp"
|
|
|
|
#include <QMouseEvent>
|
|
|
|
namespace traffxml
|
|
{
|
|
MapWidget::MapWidget(Framework & framework, QWidget * parent)
|
|
: Base(framework, false /* screenshotMode */, parent)
|
|
{
|
|
}
|
|
|
|
void MapWidget::mousePressEvent(QMouseEvent * e)
|
|
{
|
|
Base::mousePressEvent(e);
|
|
|
|
if (qt::common::IsRightButton(e))
|
|
ShowInfoPopup(e, GetDevicePoint(e));
|
|
|
|
if (m_mode == Mode::TrafficMarkup)
|
|
{
|
|
auto pt = GetDevicePoint(e);
|
|
emit TrafficMarkupClick(m_framework.PtoG(pt), e->button());
|
|
}
|
|
}
|
|
} // namespace traffxml
|