Files
comaps/qt/selection.hpp
Konstantin Pastbin bfffa1fff4 Format all C++ and Java code via clang-format
Signed-off-by: Konstantin Pastbin <konstantin.pastbin@gmail.com>
2025-08-17 14:32:37 +07:00

27 lines
437 B
C++

#pragma once
namespace qt
{
enum class SelectionMode
{
// Do not change order of first 4 entries.
Features = 0,
CityBoundaries,
CityRoads,
CrossMwmSegments,
MWMBorders,
MwmsBordersByPolyFiles,
MwmsBordersWithVerticesByPolyFiles,
MwmsBordersByPackedPolygon,
MwmsBordersWithVerticesByPackedPolygon,
BoundingBoxByPolyFiles,
BoundingBoxByPackedPolygon,
// Should be the last
Cancelled,
};
} // namespace qt