mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-22 06:03:45 +00:00
Skeleton without any traff functionality so far Contains some obsolete code, commented out with #ifdef openlr_obsolete Signed-off-by: mvglasow <michael -at- vonglasow.com>
30 lines
620 B
C++
30 lines
620 B
C++
#include "traffxml/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
|