diff --git a/src/app/puzzle/carousel/vpmimedatapiece.cpp b/src/app/puzzle/carousel/vpmimedatapiece.cpp index 4789feef7..12bf9d438 100644 --- a/src/app/puzzle/carousel/vpmimedatapiece.cpp +++ b/src/app/puzzle/carousel/vpmimedatapiece.cpp @@ -33,12 +33,14 @@ #include "../layout/vppiece.h" -const QString VPMimeDataPiece::mineFormatPiecePtr = QStringLiteral("application/vnd.puzzle.piece.ptr"); // NOLINT(cert-err58-cpp) +const QString VPMimeDataPiece::mineFormatPiecePtr = + QStringLiteral("application/vnd.puzzle.piece.ptr"); // NOLINT(cert-err58-cpp) //--------------------------------------------------------------------------------------------------------------------- VPMimeDataPiece::VPMimeDataPiece(const QUuid &layoutUuid) - :m_layoutUuid(layoutUuid) -{} + : m_layoutUuid(layoutUuid) +{ +} //--------------------------------------------------------------------------------------------------------------------- auto VPMimeDataPiece::formats() const -> QStringList @@ -61,12 +63,13 @@ void VPMimeDataPiece::SetPiecePtr(const VPPiecePtr &piece) //--------------------------------------------------------------------------------------------------------------------- auto VPMimeDataPiece::DragCursor(const QPixmap &piecePixmap) -> QPixmap { - QPixmap dragCursor(piecePixmap.width()*2, piecePixmap.height()*2); + QPixmap dragCursor(piecePixmap.width() * 2, piecePixmap.height() * 2); dragCursor.fill(Qt::transparent); QPainter painter(&dragCursor); - painter.drawPixmap(dragCursor.width()/2, dragCursor.height()/2, piecePixmap); - QPixmap cursor(QStringLiteral("://cursor/collect.png")); - painter.drawPixmap(dragCursor.width()/2 - cursor.width()/2, dragCursor.height()/2 - cursor.height()/2, cursor); + painter.drawPixmap(dragCursor.width() / 2, dragCursor.height() / 2, piecePixmap); + QPixmap cursor(QStringLiteral("://puzzlecursor/collect.png")); + painter.drawPixmap(dragCursor.width() / 2 - cursor.width() / 2, dragCursor.height() / 2 - cursor.height() / 2, + cursor); painter.end(); return dragCursor; } diff --git a/src/app/puzzle/main.cpp b/src/app/puzzle/main.cpp index defa4ce78..7675bf68f 100644 --- a/src/app/puzzle/main.cpp +++ b/src/app/puzzle/main.cpp @@ -53,13 +53,14 @@ auto main(int argc, char *argv[]) -> int auto FreeMemory = qScopeGuard([exe_dir] { free(exe_dir); }); #endif // defined(APPIMAGE) && defined(Q_OS_LINUX) - Q_INIT_RESOURCE(puzzleicon); // NOLINT - Q_INIT_RESOURCE(icon); // NOLINT - Q_INIT_RESOURCE(schema); // NOLINT - Q_INIT_RESOURCE(flags); // NOLINT - Q_INIT_RESOURCE(breeze); // NOLINT - Q_INIT_RESOURCE(cursor); // NOLINT - Q_INIT_RESOURCE(scenestyle); // NOLINT + Q_INIT_RESOURCE(puzzleicon); // NOLINT + Q_INIT_RESOURCE(icon); // NOLINT + Q_INIT_RESOURCE(schema); // NOLINT + Q_INIT_RESOURCE(flags); // NOLINT + Q_INIT_RESOURCE(breeze); // NOLINT + Q_INIT_RESOURCE(puzzlecursor); // NOLINT + Q_INIT_RESOURCE(scenestyle); // NOLINT + Q_INIT_RESOURCE(cursor); // NOLINT #if defined(Q_OS_MACX) Q_INIT_RESOURCE(mac_light_theme); // NOLINT Q_INIT_RESOURCE(mac_dark_theme); // NOLINT diff --git a/src/app/puzzle/puzzle.pro b/src/app/puzzle/puzzle.pro index f1994a14a..0ccfb1197 100644 --- a/src/app/puzzle/puzzle.pro +++ b/src/app/puzzle/puzzle.pro @@ -62,7 +62,7 @@ UI_DIR = uic include(puzzle.pri) RESOURCES += \ - share/resources/cursor.qrc \ + share/resources/puzzlecursor.qrc \ share/resources/puzzleicon.qrc include(../svgfont.pri) diff --git a/src/app/puzzle/puzzle.qbs b/src/app/puzzle/puzzle.qbs index 9ac09da1c..695e15ce0 100644 --- a/src/app/puzzle/puzzle.qbs +++ b/src/app/puzzle/puzzle.qbs @@ -173,7 +173,7 @@ VToolApp { name: "Resources" prefix: "share/resources/" files: [ - "cursor.qrc", // Tools cursor icons + "puzzlecursor.qrc", // Tools cursor icons "puzzleicon.qrc", ] } diff --git a/src/app/puzzle/share/resources/cursor.qrc b/src/app/puzzle/share/resources/cursor.qrc deleted file mode 100644 index 740bdbf6a..000000000 --- a/src/app/puzzle/share/resources/cursor.qrc +++ /dev/null @@ -1,6 +0,0 @@ - - - cursor/collect.png - cursor/collect@2x.png - - diff --git a/src/app/puzzle/share/resources/puzzlecursor.qrc b/src/app/puzzle/share/resources/puzzlecursor.qrc new file mode 100644 index 000000000..45eba0634 --- /dev/null +++ b/src/app/puzzle/share/resources/puzzlecursor.qrc @@ -0,0 +1,6 @@ + + + puzzlecursor/collect.png + puzzlecursor/collect@2x.png + + diff --git a/src/app/puzzle/share/resources/cursor/collect.png b/src/app/puzzle/share/resources/puzzlecursor/collect.png similarity index 100% rename from src/app/puzzle/share/resources/cursor/collect.png rename to src/app/puzzle/share/resources/puzzlecursor/collect.png diff --git a/src/app/puzzle/share/resources/cursor/collect@2x.png b/src/app/puzzle/share/resources/puzzlecursor/collect@2x.png similarity index 100% rename from src/app/puzzle/share/resources/cursor/collect@2x.png rename to src/app/puzzle/share/resources/puzzlecursor/collect@2x.png diff --git a/src/app/valentina/main.cpp b/src/app/valentina/main.cpp index 2a1918d81..d0bdea3bb 100644 --- a/src/app/valentina/main.cpp +++ b/src/app/valentina/main.cpp @@ -59,6 +59,7 @@ auto main(int argc, char *argv[]) -> int #endif // defined(APPIMAGE) && defined(Q_OS_LINUX) Q_INIT_RESOURCE(cursor); // NOLINT + Q_INIT_RESOURCE(toolcursor); // NOLINT Q_INIT_RESOURCE(icon); // NOLINT Q_INIT_RESOURCE(schema); // NOLINT Q_INIT_RESOURCE(flags); // NOLINT diff --git a/src/app/valentina/share/resources/cursor.qrc b/src/app/valentina/share/resources/cursor.qrc deleted file mode 100644 index bff88b859..000000000 --- a/src/app/valentina/share/resources/cursor.qrc +++ /dev/null @@ -1,178 +0,0 @@ - - - cursor/cursor-arrow-closehand.png - cursor/cursor-arrow-openhand.png - cursor/light/segment_cursor.png - cursor/light/segment_cursor@2x.png - cursor/light/line_cursor.png - cursor/light/line_cursor@2x.png - cursor/light/along_line_cursor.png - cursor/light/along_line_cursor@2x.png - cursor/light/shoulder_cursor.png - cursor/light/shoulder_cursor@2x.png - cursor/light/normal_cursor.png - cursor/light/normal_cursor@2x.png - cursor/light/bisector_cursor.png - cursor/light/bisector_cursor@2x.png - cursor/light/intersect_cursor.png - cursor/light/intersect_cursor@2x.png - cursor/light/spline_cursor.png - cursor/light/spline_cursor@2x.png - cursor/light/arc_cursor.png - cursor/light/arc_cursor@2x.png - cursor/light/splinePath_cursor.png - cursor/light/splinePath_cursor@2x.png - cursor/light/point_of_contact_cursor.png - cursor/light/point_of_contact_cursor@2x.png - cursor/light/new_detail_cursor.png - cursor/light/new_detail_cursor@2x.png - cursor/light/height_cursor.png - cursor/light/height_cursor@2x.png - cursor/light/triangle_cursor.png - cursor/light/triangle_cursor@2x.png - cursor/light/point_of_intersection_cursor.png - cursor/light/point_of_intersection_cursor@2x.png - cursor/light/spline_cut_point_cursor.png - cursor/light/spline_cut_point_cursor@2x.png - cursor/light/splinePath_cut_point_cursor.png - cursor/light/splinePath_cut_point_cursor@2x.png - cursor/light/union_cursor.png - cursor/light/union_cursor@2x.png - cursor/light/arc_cut_cursor.png - cursor/light/arc_cut_cursor@2x.png - cursor/light/line_intersect_axis_cursor.png - cursor/light/line_intersect_axis_cursor@2x.png - cursor/light/arc_intersect_axis_cursor.png - cursor/light/arc_intersect_axis_cursor@2x.png - cursor/light/curve_intersect_axis_cursor.png - cursor/light/curve_intersect_axis_cursor@2x.png - cursor/light/point_of_intersection_arcs_cursor.png - cursor/light/point_of_intersection_arcs_cursor@2x.png - cursor/light/point_of_intersection_circles_cursor.png - cursor/light/point_of_intersection_circles_cursor@2x.png - cursor/light/point_from_circle_and_tangent_cursor.png - cursor/light/point_from_circle_and_tangent_cursor@2x.png - cursor/light/point_from_arc_and_tangent_cursor.png - cursor/light/point_from_arc_and_tangent_cursor@2x.png - cursor/light/arc_with_length_cursor.png - cursor/light/arc_with_length_cursor@2x.png - cursor/light/true_darts_cursor.png - cursor/light/true_darts_cursor@2x.png - cursor/light/intersection_curves_cursor.png - cursor/light/intersection_curves_cursor@2x.png - cursor/light/cubic_bezier_cursor.png - cursor/light/cubic_bezier_cursor@2x.png - cursor/light/cubic_bezier_path_cursor.png - cursor/light/cubic_bezier_path_cursor@2x.png - cursor/light/group_plus_cursor.png - cursor/light/group_plus_cursor@2x.png - cursor/light/rotation_cursor.png - cursor/light/rotation_cursor@2x.png - cursor/light/midpoint_cursor.png - cursor/light/midpoint_cursor@2x.png - cursor/light/flipping_line_cursor@2x.png - cursor/light/flipping_line_cursor.png - cursor/light/flipping_axis_cursor.png - cursor/light/flipping_axis_cursor@2x.png - cursor/light/move_cursor.png - cursor/light/move_cursor@2x.png - cursor/light/el_arc_cursor.png - cursor/light/el_arc_cursor@2x.png - cursor/light/path_cursor.png - cursor/light/path_cursor@2x.png - cursor/light/pin_cursor.png - cursor/light/pin_cursor@2x.png - cursor/light/insert_node_cursor.png - cursor/light/insert_node_cursor@2x.png - cursor/light/place_label_cursor@2x.png - cursor/light/place_label_cursor.png - cursor/light/duplicate_detail_cursor.png - cursor/light/duplicate_detail_cursor@2x.png - cursor/dark/union_cursor.png - cursor/dark/union_cursor@2x.png - cursor/dark/true_darts_cursor.png - cursor/dark/true_darts_cursor@2x.png - cursor/dark/triangle_cursor.png - cursor/dark/triangle_cursor@2x.png - cursor/dark/splinePath_cut_point_cursor.png - cursor/dark/splinePath_cut_point_cursor@2x.png - cursor/dark/splinePath_cursor.png - cursor/dark/splinePath_cursor@2x.png - cursor/dark/spline_cut_point_cursor.png - cursor/dark/spline_cut_point_cursor@2x.png - cursor/dark/spline_cursor.png - cursor/dark/spline_cursor@2x.png - cursor/dark/shoulder_cursor.png - cursor/dark/shoulder_cursor@2x.png - cursor/dark/segment_cursor.png - cursor/dark/segment_cursor@2x.png - cursor/dark/rotation_cursor.png - cursor/dark/rotation_cursor@2x.png - cursor/dark/point_of_intersection_circles_cursor.png - cursor/dark/point_of_intersection_circles_cursor@2x.png - cursor/dark/point_of_intersection_arcs_cursor.png - cursor/dark/point_of_intersection_arcs_cursor@2x.png - cursor/dark/point_of_intersection_cursor.png - cursor/dark/point_of_intersection_cursor@2x.png - cursor/dark/point_of_contact_cursor.png - cursor/dark/point_of_contact_cursor@2x.png - cursor/dark/point_from_circle_and_tangent_cursor.png - cursor/dark/point_from_circle_and_tangent_cursor@2x.png - cursor/dark/point_from_arc_and_tangent_cursor.png - cursor/dark/point_from_arc_and_tangent_cursor@2x.png - cursor/dark/place_label_cursor.png - cursor/dark/place_label_cursor@2x.png - cursor/dark/pin_cursor.png - cursor/dark/pin_cursor@2x.png - cursor/dark/path_cursor.png - cursor/dark/path_cursor@2x.png - cursor/dark/normal_cursor.png - cursor/dark/normal_cursor@2x.png - cursor/dark/new_detail_cursor.png - cursor/dark/new_detail_cursor@2x.png - cursor/dark/move_cursor.png - cursor/dark/move_cursor@2x.png - cursor/dark/midpoint_cursor.png - cursor/dark/midpoint_cursor@2x.png - cursor/dark/line_intersect_axis_cursor.png - cursor/dark/line_intersect_axis_cursor@2x.png - cursor/dark/line_cursor.png - cursor/dark/line_cursor@2x.png - cursor/dark/intersection_curves_cursor.png - cursor/dark/intersection_curves_cursor@2x.png - cursor/dark/intersect_cursor.png - cursor/dark/intersect_cursor@2x.png - cursor/dark/insert_node_cursor.png - cursor/dark/insert_node_cursor@2x.png - cursor/dark/height_cursor.png - cursor/dark/height_cursor@2x.png - cursor/dark/group_plus_cursor.png - cursor/dark/group_plus_cursor@2x.png - cursor/dark/flipping_line_cursor.png - cursor/dark/flipping_line_cursor@2x.png - cursor/dark/flipping_axis_cursor.png - cursor/dark/flipping_axis_cursor@2x.png - cursor/dark/el_arc_cursor.png - cursor/dark/el_arc_cursor@2x.png - cursor/dark/duplicate_detail_cursor.png - cursor/dark/duplicate_detail_cursor@2x.png - cursor/dark/curve_intersect_axis_cursor.png - cursor/dark/curve_intersect_axis_cursor@2x.png - cursor/dark/cubic_bezier_path_cursor.png - cursor/dark/cubic_bezier_path_cursor@2x.png - cursor/dark/cubic_bezier_cursor.png - cursor/dark/cubic_bezier_cursor@2x.png - cursor/dark/bisector_cursor.png - cursor/dark/bisector_cursor@2x.png - cursor/dark/arc_with_length_cursor.png - cursor/dark/arc_with_length_cursor@2x.png - cursor/dark/arc_intersect_axis_cursor.png - cursor/dark/arc_intersect_axis_cursor@2x.png - cursor/dark/arc_cut_cursor.png - cursor/dark/arc_cut_cursor@2x.png - cursor/dark/arc_cursor.png - cursor/dark/arc_cursor@2x.png - cursor/dark/along_line_cursor.png - cursor/dark/along_line_cursor@2x.png - - diff --git a/src/app/valentina/share/resources/toolcursor.qrc b/src/app/valentina/share/resources/toolcursor.qrc new file mode 100644 index 000000000..d1764d58c --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor.qrc @@ -0,0 +1,176 @@ + + + toolcursor/light/segment_cursor.png + toolcursor/light/segment_cursor@2x.png + toolcursor/light/line_cursor.png + toolcursor/light/line_cursor@2x.png + toolcursor/light/along_line_cursor.png + toolcursor/light/along_line_cursor@2x.png + toolcursor/light/shoulder_cursor.png + toolcursor/light/shoulder_cursor@2x.png + toolcursor/light/normal_cursor.png + toolcursor/light/normal_cursor@2x.png + toolcursor/light/bisector_cursor.png + toolcursor/light/bisector_cursor@2x.png + toolcursor/light/intersect_cursor.png + toolcursor/light/intersect_cursor@2x.png + toolcursor/light/spline_cursor.png + toolcursor/light/spline_cursor@2x.png + toolcursor/light/arc_cursor.png + toolcursor/light/arc_cursor@2x.png + toolcursor/light/splinePath_cursor.png + toolcursor/light/splinePath_cursor@2x.png + toolcursor/light/point_of_contact_cursor.png + toolcursor/light/point_of_contact_cursor@2x.png + toolcursor/light/new_detail_cursor.png + toolcursor/light/new_detail_cursor@2x.png + toolcursor/light/height_cursor.png + toolcursor/light/height_cursor@2x.png + toolcursor/light/triangle_cursor.png + toolcursor/light/triangle_cursor@2x.png + toolcursor/light/point_of_intersection_cursor.png + toolcursor/light/point_of_intersection_cursor@2x.png + toolcursor/light/spline_cut_point_cursor.png + toolcursor/light/spline_cut_point_cursor@2x.png + toolcursor/light/splinePath_cut_point_cursor.png + toolcursor/light/splinePath_cut_point_cursor@2x.png + toolcursor/light/union_cursor.png + toolcursor/light/union_cursor@2x.png + toolcursor/light/arc_cut_cursor.png + toolcursor/light/arc_cut_cursor@2x.png + toolcursor/light/line_intersect_axis_cursor.png + toolcursor/light/line_intersect_axis_cursor@2x.png + toolcursor/light/arc_intersect_axis_cursor.png + toolcursor/light/arc_intersect_axis_cursor@2x.png + toolcursor/light/curve_intersect_axis_cursor.png + toolcursor/light/curve_intersect_axis_cursor@2x.png + toolcursor/light/point_of_intersection_arcs_cursor.png + toolcursor/light/point_of_intersection_arcs_cursor@2x.png + toolcursor/light/point_of_intersection_circles_cursor.png + toolcursor/light/point_of_intersection_circles_cursor@2x.png + toolcursor/light/point_from_circle_and_tangent_cursor.png + toolcursor/light/point_from_circle_and_tangent_cursor@2x.png + toolcursor/light/point_from_arc_and_tangent_cursor.png + toolcursor/light/point_from_arc_and_tangent_cursor@2x.png + toolcursor/light/arc_with_length_cursor.png + toolcursor/light/arc_with_length_cursor@2x.png + toolcursor/light/true_darts_cursor.png + toolcursor/light/true_darts_cursor@2x.png + toolcursor/light/intersection_curves_cursor.png + toolcursor/light/intersection_curves_cursor@2x.png + toolcursor/light/cubic_bezier_cursor.png + toolcursor/light/cubic_bezier_cursor@2x.png + toolcursor/light/cubic_bezier_path_cursor.png + toolcursor/light/cubic_bezier_path_cursor@2x.png + toolcursor/light/group_plus_cursor.png + toolcursor/light/group_plus_cursor@2x.png + toolcursor/light/rotation_cursor.png + toolcursor/light/rotation_cursor@2x.png + toolcursor/light/midpoint_cursor.png + toolcursor/light/midpoint_cursor@2x.png + toolcursor/light/flipping_line_cursor@2x.png + toolcursor/light/flipping_line_cursor.png + toolcursor/light/flipping_axis_cursor.png + toolcursor/light/flipping_axis_cursor@2x.png + toolcursor/light/move_cursor.png + toolcursor/light/move_cursor@2x.png + toolcursor/light/el_arc_cursor.png + toolcursor/light/el_arc_cursor@2x.png + toolcursor/light/path_cursor.png + toolcursor/light/path_cursor@2x.png + toolcursor/light/pin_cursor.png + toolcursor/light/pin_cursor@2x.png + toolcursor/light/insert_node_cursor.png + toolcursor/light/insert_node_cursor@2x.png + toolcursor/light/place_label_cursor@2x.png + toolcursor/light/place_label_cursor.png + toolcursor/light/duplicate_detail_cursor.png + toolcursor/light/duplicate_detail_cursor@2x.png + toolcursor/dark/union_cursor.png + toolcursor/dark/union_cursor@2x.png + toolcursor/dark/true_darts_cursor.png + toolcursor/dark/true_darts_cursor@2x.png + toolcursor/dark/triangle_cursor.png + toolcursor/dark/triangle_cursor@2x.png + toolcursor/dark/splinePath_cut_point_cursor.png + toolcursor/dark/splinePath_cut_point_cursor@2x.png + toolcursor/dark/splinePath_cursor.png + toolcursor/dark/splinePath_cursor@2x.png + toolcursor/dark/spline_cut_point_cursor.png + toolcursor/dark/spline_cut_point_cursor@2x.png + toolcursor/dark/spline_cursor.png + toolcursor/dark/spline_cursor@2x.png + toolcursor/dark/shoulder_cursor.png + toolcursor/dark/shoulder_cursor@2x.png + toolcursor/dark/segment_cursor.png + toolcursor/dark/segment_cursor@2x.png + toolcursor/dark/rotation_cursor.png + toolcursor/dark/rotation_cursor@2x.png + toolcursor/dark/point_of_intersection_circles_cursor.png + toolcursor/dark/point_of_intersection_circles_cursor@2x.png + toolcursor/dark/point_of_intersection_arcs_cursor.png + toolcursor/dark/point_of_intersection_arcs_cursor@2x.png + toolcursor/dark/point_of_intersection_cursor.png + toolcursor/dark/point_of_intersection_cursor@2x.png + toolcursor/dark/point_of_contact_cursor.png + toolcursor/dark/point_of_contact_cursor@2x.png + toolcursor/dark/point_from_circle_and_tangent_cursor.png + toolcursor/dark/point_from_circle_and_tangent_cursor@2x.png + toolcursor/dark/point_from_arc_and_tangent_cursor.png + toolcursor/dark/point_from_arc_and_tangent_cursor@2x.png + toolcursor/dark/place_label_cursor.png + toolcursor/dark/place_label_cursor@2x.png + toolcursor/dark/pin_cursor.png + toolcursor/dark/pin_cursor@2x.png + toolcursor/dark/path_cursor.png + toolcursor/dark/path_cursor@2x.png + toolcursor/dark/normal_cursor.png + toolcursor/dark/normal_cursor@2x.png + toolcursor/dark/new_detail_cursor.png + toolcursor/dark/new_detail_cursor@2x.png + toolcursor/dark/move_cursor.png + toolcursor/dark/move_cursor@2x.png + toolcursor/dark/midpoint_cursor.png + toolcursor/dark/midpoint_cursor@2x.png + toolcursor/dark/line_intersect_axis_cursor.png + toolcursor/dark/line_intersect_axis_cursor@2x.png + toolcursor/dark/line_cursor.png + toolcursor/dark/line_cursor@2x.png + toolcursor/dark/intersection_curves_cursor.png + toolcursor/dark/intersection_curves_cursor@2x.png + toolcursor/dark/intersect_cursor.png + toolcursor/dark/intersect_cursor@2x.png + toolcursor/dark/insert_node_cursor.png + toolcursor/dark/insert_node_cursor@2x.png + toolcursor/dark/height_cursor.png + toolcursor/dark/height_cursor@2x.png + toolcursor/dark/group_plus_cursor.png + toolcursor/dark/group_plus_cursor@2x.png + toolcursor/dark/flipping_line_cursor.png + toolcursor/dark/flipping_line_cursor@2x.png + toolcursor/dark/flipping_axis_cursor.png + toolcursor/dark/flipping_axis_cursor@2x.png + toolcursor/dark/el_arc_cursor.png + toolcursor/dark/el_arc_cursor@2x.png + toolcursor/dark/duplicate_detail_cursor.png + toolcursor/dark/duplicate_detail_cursor@2x.png + toolcursor/dark/curve_intersect_axis_cursor.png + toolcursor/dark/curve_intersect_axis_cursor@2x.png + toolcursor/dark/cubic_bezier_path_cursor.png + toolcursor/dark/cubic_bezier_path_cursor@2x.png + toolcursor/dark/cubic_bezier_cursor.png + toolcursor/dark/cubic_bezier_cursor@2x.png + toolcursor/dark/bisector_cursor.png + toolcursor/dark/bisector_cursor@2x.png + toolcursor/dark/arc_with_length_cursor.png + toolcursor/dark/arc_with_length_cursor@2x.png + toolcursor/dark/arc_intersect_axis_cursor.png + toolcursor/dark/arc_intersect_axis_cursor@2x.png + toolcursor/dark/arc_cut_cursor.png + toolcursor/dark/arc_cut_cursor@2x.png + toolcursor/dark/arc_cursor.png + toolcursor/dark/arc_cursor@2x.png + toolcursor/dark/along_line_cursor.png + toolcursor/dark/along_line_cursor@2x.png + + diff --git a/src/app/valentina/share/resources/cursor/dark/along_line_cursor.png b/src/app/valentina/share/resources/toolcursor/dark/along_line_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/along_line_cursor.png rename to src/app/valentina/share/resources/toolcursor/dark/along_line_cursor.png diff --git a/src/app/valentina/share/resources/cursor/dark/along_line_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/dark/along_line_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/along_line_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/dark/along_line_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/dark/arc_cursor.png b/src/app/valentina/share/resources/toolcursor/dark/arc_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/arc_cursor.png rename to src/app/valentina/share/resources/toolcursor/dark/arc_cursor.png diff --git a/src/app/valentina/share/resources/cursor/dark/arc_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/dark/arc_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/arc_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/dark/arc_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/dark/arc_cut_cursor.png b/src/app/valentina/share/resources/toolcursor/dark/arc_cut_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/arc_cut_cursor.png rename to src/app/valentina/share/resources/toolcursor/dark/arc_cut_cursor.png diff --git a/src/app/valentina/share/resources/cursor/dark/arc_cut_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/dark/arc_cut_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/arc_cut_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/dark/arc_cut_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/dark/arc_intersect_axis_cursor.png b/src/app/valentina/share/resources/toolcursor/dark/arc_intersect_axis_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/arc_intersect_axis_cursor.png rename to src/app/valentina/share/resources/toolcursor/dark/arc_intersect_axis_cursor.png diff --git a/src/app/valentina/share/resources/cursor/dark/arc_intersect_axis_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/dark/arc_intersect_axis_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/arc_intersect_axis_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/dark/arc_intersect_axis_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/dark/arc_with_length_cursor.png b/src/app/valentina/share/resources/toolcursor/dark/arc_with_length_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/arc_with_length_cursor.png rename to src/app/valentina/share/resources/toolcursor/dark/arc_with_length_cursor.png diff --git a/src/app/valentina/share/resources/cursor/dark/arc_with_length_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/dark/arc_with_length_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/arc_with_length_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/dark/arc_with_length_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/dark/bisector_cursor.png b/src/app/valentina/share/resources/toolcursor/dark/bisector_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/bisector_cursor.png rename to src/app/valentina/share/resources/toolcursor/dark/bisector_cursor.png diff --git a/src/app/valentina/share/resources/cursor/dark/bisector_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/dark/bisector_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/bisector_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/dark/bisector_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/dark/cubic_bezier_cursor.png b/src/app/valentina/share/resources/toolcursor/dark/cubic_bezier_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/cubic_bezier_cursor.png rename to src/app/valentina/share/resources/toolcursor/dark/cubic_bezier_cursor.png diff --git a/src/app/valentina/share/resources/cursor/dark/cubic_bezier_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/dark/cubic_bezier_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/cubic_bezier_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/dark/cubic_bezier_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/dark/cubic_bezier_path_cursor.png b/src/app/valentina/share/resources/toolcursor/dark/cubic_bezier_path_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/cubic_bezier_path_cursor.png rename to src/app/valentina/share/resources/toolcursor/dark/cubic_bezier_path_cursor.png diff --git a/src/app/valentina/share/resources/cursor/dark/cubic_bezier_path_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/dark/cubic_bezier_path_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/cubic_bezier_path_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/dark/cubic_bezier_path_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/dark/curve_intersect_axis_cursor.png b/src/app/valentina/share/resources/toolcursor/dark/curve_intersect_axis_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/curve_intersect_axis_cursor.png rename to src/app/valentina/share/resources/toolcursor/dark/curve_intersect_axis_cursor.png diff --git a/src/app/valentina/share/resources/cursor/dark/curve_intersect_axis_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/dark/curve_intersect_axis_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/curve_intersect_axis_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/dark/curve_intersect_axis_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/dark/duplicate_detail_cursor.png b/src/app/valentina/share/resources/toolcursor/dark/duplicate_detail_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/duplicate_detail_cursor.png rename to src/app/valentina/share/resources/toolcursor/dark/duplicate_detail_cursor.png diff --git a/src/app/valentina/share/resources/cursor/dark/duplicate_detail_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/dark/duplicate_detail_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/duplicate_detail_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/dark/duplicate_detail_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/dark/el_arc_cursor.png b/src/app/valentina/share/resources/toolcursor/dark/el_arc_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/el_arc_cursor.png rename to src/app/valentina/share/resources/toolcursor/dark/el_arc_cursor.png diff --git a/src/app/valentina/share/resources/cursor/dark/el_arc_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/dark/el_arc_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/el_arc_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/dark/el_arc_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/dark/flipping_axis_cursor.png b/src/app/valentina/share/resources/toolcursor/dark/flipping_axis_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/flipping_axis_cursor.png rename to src/app/valentina/share/resources/toolcursor/dark/flipping_axis_cursor.png diff --git a/src/app/valentina/share/resources/cursor/dark/flipping_axis_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/dark/flipping_axis_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/flipping_axis_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/dark/flipping_axis_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/dark/flipping_line_cursor.png b/src/app/valentina/share/resources/toolcursor/dark/flipping_line_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/flipping_line_cursor.png rename to src/app/valentina/share/resources/toolcursor/dark/flipping_line_cursor.png diff --git a/src/app/valentina/share/resources/cursor/dark/flipping_line_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/dark/flipping_line_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/flipping_line_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/dark/flipping_line_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/dark/group_plus_cursor.png b/src/app/valentina/share/resources/toolcursor/dark/group_plus_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/group_plus_cursor.png rename to src/app/valentina/share/resources/toolcursor/dark/group_plus_cursor.png diff --git a/src/app/valentina/share/resources/cursor/dark/group_plus_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/dark/group_plus_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/group_plus_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/dark/group_plus_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/dark/height_cursor.png b/src/app/valentina/share/resources/toolcursor/dark/height_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/height_cursor.png rename to src/app/valentina/share/resources/toolcursor/dark/height_cursor.png diff --git a/src/app/valentina/share/resources/cursor/dark/height_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/dark/height_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/height_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/dark/height_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/dark/insert_node_cursor.png b/src/app/valentina/share/resources/toolcursor/dark/insert_node_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/insert_node_cursor.png rename to src/app/valentina/share/resources/toolcursor/dark/insert_node_cursor.png diff --git a/src/app/valentina/share/resources/cursor/dark/insert_node_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/dark/insert_node_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/insert_node_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/dark/insert_node_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/dark/intersect_cursor.png b/src/app/valentina/share/resources/toolcursor/dark/intersect_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/intersect_cursor.png rename to src/app/valentina/share/resources/toolcursor/dark/intersect_cursor.png diff --git a/src/app/valentina/share/resources/cursor/dark/intersect_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/dark/intersect_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/intersect_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/dark/intersect_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/dark/intersection_curves_cursor.png b/src/app/valentina/share/resources/toolcursor/dark/intersection_curves_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/intersection_curves_cursor.png rename to src/app/valentina/share/resources/toolcursor/dark/intersection_curves_cursor.png diff --git a/src/app/valentina/share/resources/cursor/dark/intersection_curves_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/dark/intersection_curves_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/intersection_curves_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/dark/intersection_curves_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/dark/line_cursor.png b/src/app/valentina/share/resources/toolcursor/dark/line_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/line_cursor.png rename to src/app/valentina/share/resources/toolcursor/dark/line_cursor.png diff --git a/src/app/valentina/share/resources/cursor/dark/line_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/dark/line_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/line_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/dark/line_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/dark/line_intersect_axis_cursor.png b/src/app/valentina/share/resources/toolcursor/dark/line_intersect_axis_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/line_intersect_axis_cursor.png rename to src/app/valentina/share/resources/toolcursor/dark/line_intersect_axis_cursor.png diff --git a/src/app/valentina/share/resources/cursor/dark/line_intersect_axis_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/dark/line_intersect_axis_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/line_intersect_axis_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/dark/line_intersect_axis_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/dark/midpoint_cursor.png b/src/app/valentina/share/resources/toolcursor/dark/midpoint_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/midpoint_cursor.png rename to src/app/valentina/share/resources/toolcursor/dark/midpoint_cursor.png diff --git a/src/app/valentina/share/resources/cursor/dark/midpoint_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/dark/midpoint_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/midpoint_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/dark/midpoint_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/dark/move_cursor.png b/src/app/valentina/share/resources/toolcursor/dark/move_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/move_cursor.png rename to src/app/valentina/share/resources/toolcursor/dark/move_cursor.png diff --git a/src/app/valentina/share/resources/cursor/dark/move_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/dark/move_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/move_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/dark/move_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/dark/new_detail_cursor.png b/src/app/valentina/share/resources/toolcursor/dark/new_detail_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/new_detail_cursor.png rename to src/app/valentina/share/resources/toolcursor/dark/new_detail_cursor.png diff --git a/src/app/valentina/share/resources/cursor/dark/new_detail_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/dark/new_detail_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/new_detail_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/dark/new_detail_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/dark/normal_cursor.png b/src/app/valentina/share/resources/toolcursor/dark/normal_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/normal_cursor.png rename to src/app/valentina/share/resources/toolcursor/dark/normal_cursor.png diff --git a/src/app/valentina/share/resources/cursor/dark/normal_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/dark/normal_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/normal_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/dark/normal_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/dark/path_cursor.png b/src/app/valentina/share/resources/toolcursor/dark/path_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/path_cursor.png rename to src/app/valentina/share/resources/toolcursor/dark/path_cursor.png diff --git a/src/app/valentina/share/resources/cursor/dark/path_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/dark/path_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/path_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/dark/path_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/dark/pin_cursor.png b/src/app/valentina/share/resources/toolcursor/dark/pin_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/pin_cursor.png rename to src/app/valentina/share/resources/toolcursor/dark/pin_cursor.png diff --git a/src/app/valentina/share/resources/cursor/dark/pin_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/dark/pin_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/pin_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/dark/pin_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/dark/place_label_cursor.png b/src/app/valentina/share/resources/toolcursor/dark/place_label_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/place_label_cursor.png rename to src/app/valentina/share/resources/toolcursor/dark/place_label_cursor.png diff --git a/src/app/valentina/share/resources/cursor/dark/place_label_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/dark/place_label_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/place_label_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/dark/place_label_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/dark/point_from_arc_and_tangent_cursor.png b/src/app/valentina/share/resources/toolcursor/dark/point_from_arc_and_tangent_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/point_from_arc_and_tangent_cursor.png rename to src/app/valentina/share/resources/toolcursor/dark/point_from_arc_and_tangent_cursor.png diff --git a/src/app/valentina/share/resources/cursor/dark/point_from_arc_and_tangent_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/dark/point_from_arc_and_tangent_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/point_from_arc_and_tangent_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/dark/point_from_arc_and_tangent_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/dark/point_from_circle_and_tangent_cursor.png b/src/app/valentina/share/resources/toolcursor/dark/point_from_circle_and_tangent_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/point_from_circle_and_tangent_cursor.png rename to src/app/valentina/share/resources/toolcursor/dark/point_from_circle_and_tangent_cursor.png diff --git a/src/app/valentina/share/resources/cursor/dark/point_from_circle_and_tangent_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/dark/point_from_circle_and_tangent_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/point_from_circle_and_tangent_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/dark/point_from_circle_and_tangent_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/dark/point_of_contact_cursor.png b/src/app/valentina/share/resources/toolcursor/dark/point_of_contact_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/point_of_contact_cursor.png rename to src/app/valentina/share/resources/toolcursor/dark/point_of_contact_cursor.png diff --git a/src/app/valentina/share/resources/cursor/dark/point_of_contact_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/dark/point_of_contact_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/point_of_contact_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/dark/point_of_contact_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/dark/point_of_intersection_arcs_cursor.png b/src/app/valentina/share/resources/toolcursor/dark/point_of_intersection_arcs_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/point_of_intersection_arcs_cursor.png rename to src/app/valentina/share/resources/toolcursor/dark/point_of_intersection_arcs_cursor.png diff --git a/src/app/valentina/share/resources/cursor/dark/point_of_intersection_arcs_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/dark/point_of_intersection_arcs_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/point_of_intersection_arcs_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/dark/point_of_intersection_arcs_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/dark/point_of_intersection_circles_cursor.png b/src/app/valentina/share/resources/toolcursor/dark/point_of_intersection_circles_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/point_of_intersection_circles_cursor.png rename to src/app/valentina/share/resources/toolcursor/dark/point_of_intersection_circles_cursor.png diff --git a/src/app/valentina/share/resources/cursor/dark/point_of_intersection_circles_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/dark/point_of_intersection_circles_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/point_of_intersection_circles_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/dark/point_of_intersection_circles_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/dark/point_of_intersection_cursor.png b/src/app/valentina/share/resources/toolcursor/dark/point_of_intersection_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/point_of_intersection_cursor.png rename to src/app/valentina/share/resources/toolcursor/dark/point_of_intersection_cursor.png diff --git a/src/app/valentina/share/resources/cursor/dark/point_of_intersection_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/dark/point_of_intersection_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/point_of_intersection_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/dark/point_of_intersection_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/dark/rotation_cursor.png b/src/app/valentina/share/resources/toolcursor/dark/rotation_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/rotation_cursor.png rename to src/app/valentina/share/resources/toolcursor/dark/rotation_cursor.png diff --git a/src/app/valentina/share/resources/cursor/dark/rotation_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/dark/rotation_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/rotation_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/dark/rotation_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/dark/segment_cursor.png b/src/app/valentina/share/resources/toolcursor/dark/segment_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/segment_cursor.png rename to src/app/valentina/share/resources/toolcursor/dark/segment_cursor.png diff --git a/src/app/valentina/share/resources/cursor/dark/segment_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/dark/segment_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/segment_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/dark/segment_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/dark/shoulder_cursor.png b/src/app/valentina/share/resources/toolcursor/dark/shoulder_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/shoulder_cursor.png rename to src/app/valentina/share/resources/toolcursor/dark/shoulder_cursor.png diff --git a/src/app/valentina/share/resources/cursor/dark/shoulder_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/dark/shoulder_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/shoulder_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/dark/shoulder_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/dark/splinePath_cursor.png b/src/app/valentina/share/resources/toolcursor/dark/splinePath_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/splinePath_cursor.png rename to src/app/valentina/share/resources/toolcursor/dark/splinePath_cursor.png diff --git a/src/app/valentina/share/resources/cursor/dark/splinePath_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/dark/splinePath_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/splinePath_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/dark/splinePath_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/dark/splinePath_cut_point_cursor.png b/src/app/valentina/share/resources/toolcursor/dark/splinePath_cut_point_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/splinePath_cut_point_cursor.png rename to src/app/valentina/share/resources/toolcursor/dark/splinePath_cut_point_cursor.png diff --git a/src/app/valentina/share/resources/cursor/dark/splinePath_cut_point_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/dark/splinePath_cut_point_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/splinePath_cut_point_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/dark/splinePath_cut_point_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/dark/spline_cursor.png b/src/app/valentina/share/resources/toolcursor/dark/spline_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/spline_cursor.png rename to src/app/valentina/share/resources/toolcursor/dark/spline_cursor.png diff --git a/src/app/valentina/share/resources/cursor/dark/spline_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/dark/spline_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/spline_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/dark/spline_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/dark/spline_cut_point_cursor.png b/src/app/valentina/share/resources/toolcursor/dark/spline_cut_point_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/spline_cut_point_cursor.png rename to src/app/valentina/share/resources/toolcursor/dark/spline_cut_point_cursor.png diff --git a/src/app/valentina/share/resources/cursor/dark/spline_cut_point_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/dark/spline_cut_point_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/spline_cut_point_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/dark/spline_cut_point_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/dark/triangle_cursor.png b/src/app/valentina/share/resources/toolcursor/dark/triangle_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/triangle_cursor.png rename to src/app/valentina/share/resources/toolcursor/dark/triangle_cursor.png diff --git a/src/app/valentina/share/resources/cursor/dark/triangle_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/dark/triangle_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/triangle_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/dark/triangle_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/dark/true_darts_cursor.png b/src/app/valentina/share/resources/toolcursor/dark/true_darts_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/true_darts_cursor.png rename to src/app/valentina/share/resources/toolcursor/dark/true_darts_cursor.png diff --git a/src/app/valentina/share/resources/cursor/dark/true_darts_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/dark/true_darts_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/true_darts_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/dark/true_darts_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/dark/union_cursor.png b/src/app/valentina/share/resources/toolcursor/dark/union_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/union_cursor.png rename to src/app/valentina/share/resources/toolcursor/dark/union_cursor.png diff --git a/src/app/valentina/share/resources/cursor/dark/union_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/dark/union_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/dark/union_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/dark/union_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/light/along_line_cursor.png b/src/app/valentina/share/resources/toolcursor/light/along_line_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/along_line_cursor.png rename to src/app/valentina/share/resources/toolcursor/light/along_line_cursor.png diff --git a/src/app/valentina/share/resources/cursor/light/along_line_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/light/along_line_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/along_line_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/light/along_line_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/light/arc_cursor.png b/src/app/valentina/share/resources/toolcursor/light/arc_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/arc_cursor.png rename to src/app/valentina/share/resources/toolcursor/light/arc_cursor.png diff --git a/src/app/valentina/share/resources/cursor/light/arc_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/light/arc_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/arc_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/light/arc_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/light/arc_cut_cursor.png b/src/app/valentina/share/resources/toolcursor/light/arc_cut_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/arc_cut_cursor.png rename to src/app/valentina/share/resources/toolcursor/light/arc_cut_cursor.png diff --git a/src/app/valentina/share/resources/cursor/light/arc_cut_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/light/arc_cut_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/arc_cut_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/light/arc_cut_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/light/arc_intersect_axis_cursor.png b/src/app/valentina/share/resources/toolcursor/light/arc_intersect_axis_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/arc_intersect_axis_cursor.png rename to src/app/valentina/share/resources/toolcursor/light/arc_intersect_axis_cursor.png diff --git a/src/app/valentina/share/resources/cursor/light/arc_intersect_axis_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/light/arc_intersect_axis_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/arc_intersect_axis_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/light/arc_intersect_axis_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/light/arc_with_length_cursor.png b/src/app/valentina/share/resources/toolcursor/light/arc_with_length_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/arc_with_length_cursor.png rename to src/app/valentina/share/resources/toolcursor/light/arc_with_length_cursor.png diff --git a/src/app/valentina/share/resources/cursor/light/arc_with_length_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/light/arc_with_length_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/arc_with_length_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/light/arc_with_length_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/light/bisector_cursor.png b/src/app/valentina/share/resources/toolcursor/light/bisector_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/bisector_cursor.png rename to src/app/valentina/share/resources/toolcursor/light/bisector_cursor.png diff --git a/src/app/valentina/share/resources/cursor/light/bisector_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/light/bisector_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/bisector_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/light/bisector_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/light/cubic_bezier_cursor.png b/src/app/valentina/share/resources/toolcursor/light/cubic_bezier_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/cubic_bezier_cursor.png rename to src/app/valentina/share/resources/toolcursor/light/cubic_bezier_cursor.png diff --git a/src/app/valentina/share/resources/cursor/light/cubic_bezier_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/light/cubic_bezier_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/cubic_bezier_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/light/cubic_bezier_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/light/cubic_bezier_path_cursor.png b/src/app/valentina/share/resources/toolcursor/light/cubic_bezier_path_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/cubic_bezier_path_cursor.png rename to src/app/valentina/share/resources/toolcursor/light/cubic_bezier_path_cursor.png diff --git a/src/app/valentina/share/resources/cursor/light/cubic_bezier_path_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/light/cubic_bezier_path_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/cubic_bezier_path_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/light/cubic_bezier_path_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/light/curve_intersect_axis_cursor.png b/src/app/valentina/share/resources/toolcursor/light/curve_intersect_axis_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/curve_intersect_axis_cursor.png rename to src/app/valentina/share/resources/toolcursor/light/curve_intersect_axis_cursor.png diff --git a/src/app/valentina/share/resources/cursor/light/curve_intersect_axis_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/light/curve_intersect_axis_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/curve_intersect_axis_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/light/curve_intersect_axis_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/light/duplicate_detail_cursor.png b/src/app/valentina/share/resources/toolcursor/light/duplicate_detail_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/duplicate_detail_cursor.png rename to src/app/valentina/share/resources/toolcursor/light/duplicate_detail_cursor.png diff --git a/src/app/valentina/share/resources/cursor/light/duplicate_detail_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/light/duplicate_detail_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/duplicate_detail_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/light/duplicate_detail_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/light/el_arc_cursor.png b/src/app/valentina/share/resources/toolcursor/light/el_arc_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/el_arc_cursor.png rename to src/app/valentina/share/resources/toolcursor/light/el_arc_cursor.png diff --git a/src/app/valentina/share/resources/cursor/light/el_arc_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/light/el_arc_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/el_arc_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/light/el_arc_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/light/flipping_axis_cursor.png b/src/app/valentina/share/resources/toolcursor/light/flipping_axis_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/flipping_axis_cursor.png rename to src/app/valentina/share/resources/toolcursor/light/flipping_axis_cursor.png diff --git a/src/app/valentina/share/resources/cursor/light/flipping_axis_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/light/flipping_axis_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/flipping_axis_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/light/flipping_axis_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/light/flipping_line_cursor.png b/src/app/valentina/share/resources/toolcursor/light/flipping_line_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/flipping_line_cursor.png rename to src/app/valentina/share/resources/toolcursor/light/flipping_line_cursor.png diff --git a/src/app/valentina/share/resources/cursor/light/flipping_line_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/light/flipping_line_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/flipping_line_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/light/flipping_line_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/light/group_plus_cursor.png b/src/app/valentina/share/resources/toolcursor/light/group_plus_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/group_plus_cursor.png rename to src/app/valentina/share/resources/toolcursor/light/group_plus_cursor.png diff --git a/src/app/valentina/share/resources/cursor/light/group_plus_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/light/group_plus_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/group_plus_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/light/group_plus_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/light/height_cursor.png b/src/app/valentina/share/resources/toolcursor/light/height_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/height_cursor.png rename to src/app/valentina/share/resources/toolcursor/light/height_cursor.png diff --git a/src/app/valentina/share/resources/cursor/light/height_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/light/height_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/height_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/light/height_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/light/insert_node_cursor.png b/src/app/valentina/share/resources/toolcursor/light/insert_node_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/insert_node_cursor.png rename to src/app/valentina/share/resources/toolcursor/light/insert_node_cursor.png diff --git a/src/app/valentina/share/resources/cursor/light/insert_node_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/light/insert_node_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/insert_node_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/light/insert_node_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/light/intersect_cursor.png b/src/app/valentina/share/resources/toolcursor/light/intersect_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/intersect_cursor.png rename to src/app/valentina/share/resources/toolcursor/light/intersect_cursor.png diff --git a/src/app/valentina/share/resources/cursor/light/intersect_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/light/intersect_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/intersect_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/light/intersect_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/light/intersection_curves_cursor.png b/src/app/valentina/share/resources/toolcursor/light/intersection_curves_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/intersection_curves_cursor.png rename to src/app/valentina/share/resources/toolcursor/light/intersection_curves_cursor.png diff --git a/src/app/valentina/share/resources/cursor/light/intersection_curves_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/light/intersection_curves_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/intersection_curves_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/light/intersection_curves_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/light/line_cursor.png b/src/app/valentina/share/resources/toolcursor/light/line_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/line_cursor.png rename to src/app/valentina/share/resources/toolcursor/light/line_cursor.png diff --git a/src/app/valentina/share/resources/cursor/light/line_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/light/line_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/line_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/light/line_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/light/line_intersect_axis_cursor.png b/src/app/valentina/share/resources/toolcursor/light/line_intersect_axis_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/line_intersect_axis_cursor.png rename to src/app/valentina/share/resources/toolcursor/light/line_intersect_axis_cursor.png diff --git a/src/app/valentina/share/resources/cursor/light/line_intersect_axis_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/light/line_intersect_axis_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/line_intersect_axis_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/light/line_intersect_axis_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/light/midpoint_cursor.png b/src/app/valentina/share/resources/toolcursor/light/midpoint_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/midpoint_cursor.png rename to src/app/valentina/share/resources/toolcursor/light/midpoint_cursor.png diff --git a/src/app/valentina/share/resources/cursor/light/midpoint_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/light/midpoint_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/midpoint_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/light/midpoint_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/light/move_cursor.png b/src/app/valentina/share/resources/toolcursor/light/move_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/move_cursor.png rename to src/app/valentina/share/resources/toolcursor/light/move_cursor.png diff --git a/src/app/valentina/share/resources/cursor/light/move_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/light/move_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/move_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/light/move_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/light/new_detail_cursor.png b/src/app/valentina/share/resources/toolcursor/light/new_detail_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/new_detail_cursor.png rename to src/app/valentina/share/resources/toolcursor/light/new_detail_cursor.png diff --git a/src/app/valentina/share/resources/cursor/light/new_detail_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/light/new_detail_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/new_detail_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/light/new_detail_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/light/normal_cursor.png b/src/app/valentina/share/resources/toolcursor/light/normal_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/normal_cursor.png rename to src/app/valentina/share/resources/toolcursor/light/normal_cursor.png diff --git a/src/app/valentina/share/resources/cursor/light/normal_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/light/normal_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/normal_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/light/normal_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/light/path_cursor.png b/src/app/valentina/share/resources/toolcursor/light/path_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/path_cursor.png rename to src/app/valentina/share/resources/toolcursor/light/path_cursor.png diff --git a/src/app/valentina/share/resources/cursor/light/path_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/light/path_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/path_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/light/path_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/light/pin_cursor.png b/src/app/valentina/share/resources/toolcursor/light/pin_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/pin_cursor.png rename to src/app/valentina/share/resources/toolcursor/light/pin_cursor.png diff --git a/src/app/valentina/share/resources/cursor/light/pin_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/light/pin_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/pin_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/light/pin_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/light/place_label_cursor.png b/src/app/valentina/share/resources/toolcursor/light/place_label_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/place_label_cursor.png rename to src/app/valentina/share/resources/toolcursor/light/place_label_cursor.png diff --git a/src/app/valentina/share/resources/cursor/light/place_label_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/light/place_label_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/place_label_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/light/place_label_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/light/point_from_arc_and_tangent_cursor.png b/src/app/valentina/share/resources/toolcursor/light/point_from_arc_and_tangent_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/point_from_arc_and_tangent_cursor.png rename to src/app/valentina/share/resources/toolcursor/light/point_from_arc_and_tangent_cursor.png diff --git a/src/app/valentina/share/resources/cursor/light/point_from_arc_and_tangent_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/light/point_from_arc_and_tangent_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/point_from_arc_and_tangent_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/light/point_from_arc_and_tangent_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/light/point_from_circle_and_tangent_cursor.png b/src/app/valentina/share/resources/toolcursor/light/point_from_circle_and_tangent_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/point_from_circle_and_tangent_cursor.png rename to src/app/valentina/share/resources/toolcursor/light/point_from_circle_and_tangent_cursor.png diff --git a/src/app/valentina/share/resources/cursor/light/point_from_circle_and_tangent_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/light/point_from_circle_and_tangent_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/point_from_circle_and_tangent_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/light/point_from_circle_and_tangent_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/light/point_of_contact_cursor.png b/src/app/valentina/share/resources/toolcursor/light/point_of_contact_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/point_of_contact_cursor.png rename to src/app/valentina/share/resources/toolcursor/light/point_of_contact_cursor.png diff --git a/src/app/valentina/share/resources/cursor/light/point_of_contact_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/light/point_of_contact_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/point_of_contact_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/light/point_of_contact_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/light/point_of_intersection_arcs_cursor.png b/src/app/valentina/share/resources/toolcursor/light/point_of_intersection_arcs_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/point_of_intersection_arcs_cursor.png rename to src/app/valentina/share/resources/toolcursor/light/point_of_intersection_arcs_cursor.png diff --git a/src/app/valentina/share/resources/cursor/light/point_of_intersection_arcs_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/light/point_of_intersection_arcs_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/point_of_intersection_arcs_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/light/point_of_intersection_arcs_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/light/point_of_intersection_circles_cursor.png b/src/app/valentina/share/resources/toolcursor/light/point_of_intersection_circles_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/point_of_intersection_circles_cursor.png rename to src/app/valentina/share/resources/toolcursor/light/point_of_intersection_circles_cursor.png diff --git a/src/app/valentina/share/resources/cursor/light/point_of_intersection_circles_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/light/point_of_intersection_circles_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/point_of_intersection_circles_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/light/point_of_intersection_circles_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/light/point_of_intersection_cursor.png b/src/app/valentina/share/resources/toolcursor/light/point_of_intersection_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/point_of_intersection_cursor.png rename to src/app/valentina/share/resources/toolcursor/light/point_of_intersection_cursor.png diff --git a/src/app/valentina/share/resources/cursor/light/point_of_intersection_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/light/point_of_intersection_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/point_of_intersection_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/light/point_of_intersection_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/light/rotation_cursor.png b/src/app/valentina/share/resources/toolcursor/light/rotation_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/rotation_cursor.png rename to src/app/valentina/share/resources/toolcursor/light/rotation_cursor.png diff --git a/src/app/valentina/share/resources/cursor/light/rotation_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/light/rotation_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/rotation_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/light/rotation_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/light/segment_cursor.png b/src/app/valentina/share/resources/toolcursor/light/segment_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/segment_cursor.png rename to src/app/valentina/share/resources/toolcursor/light/segment_cursor.png diff --git a/src/app/valentina/share/resources/cursor/light/segment_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/light/segment_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/segment_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/light/segment_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/light/shoulder_cursor.png b/src/app/valentina/share/resources/toolcursor/light/shoulder_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/shoulder_cursor.png rename to src/app/valentina/share/resources/toolcursor/light/shoulder_cursor.png diff --git a/src/app/valentina/share/resources/cursor/light/shoulder_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/light/shoulder_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/shoulder_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/light/shoulder_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/light/splinePath_cursor.png b/src/app/valentina/share/resources/toolcursor/light/splinePath_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/splinePath_cursor.png rename to src/app/valentina/share/resources/toolcursor/light/splinePath_cursor.png diff --git a/src/app/valentina/share/resources/cursor/light/splinePath_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/light/splinePath_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/splinePath_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/light/splinePath_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/light/splinePath_cut_point_cursor.png b/src/app/valentina/share/resources/toolcursor/light/splinePath_cut_point_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/splinePath_cut_point_cursor.png rename to src/app/valentina/share/resources/toolcursor/light/splinePath_cut_point_cursor.png diff --git a/src/app/valentina/share/resources/cursor/light/splinePath_cut_point_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/light/splinePath_cut_point_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/splinePath_cut_point_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/light/splinePath_cut_point_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/light/spline_cursor.png b/src/app/valentina/share/resources/toolcursor/light/spline_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/spline_cursor.png rename to src/app/valentina/share/resources/toolcursor/light/spline_cursor.png diff --git a/src/app/valentina/share/resources/cursor/light/spline_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/light/spline_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/spline_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/light/spline_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/light/spline_cut_point_cursor.png b/src/app/valentina/share/resources/toolcursor/light/spline_cut_point_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/spline_cut_point_cursor.png rename to src/app/valentina/share/resources/toolcursor/light/spline_cut_point_cursor.png diff --git a/src/app/valentina/share/resources/cursor/light/spline_cut_point_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/light/spline_cut_point_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/spline_cut_point_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/light/spline_cut_point_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/light/triangle_cursor.png b/src/app/valentina/share/resources/toolcursor/light/triangle_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/triangle_cursor.png rename to src/app/valentina/share/resources/toolcursor/light/triangle_cursor.png diff --git a/src/app/valentina/share/resources/cursor/light/triangle_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/light/triangle_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/triangle_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/light/triangle_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/light/true_darts_cursor.png b/src/app/valentina/share/resources/toolcursor/light/true_darts_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/true_darts_cursor.png rename to src/app/valentina/share/resources/toolcursor/light/true_darts_cursor.png diff --git a/src/app/valentina/share/resources/cursor/light/true_darts_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/light/true_darts_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/true_darts_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/light/true_darts_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/light/union_cursor.png b/src/app/valentina/share/resources/toolcursor/light/union_cursor.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/union_cursor.png rename to src/app/valentina/share/resources/toolcursor/light/union_cursor.png diff --git a/src/app/valentina/share/resources/cursor/light/union_cursor@2x.png b/src/app/valentina/share/resources/toolcursor/light/union_cursor@2x.png similarity index 100% rename from src/app/valentina/share/resources/cursor/light/union_cursor@2x.png rename to src/app/valentina/share/resources/toolcursor/light/union_cursor@2x.png diff --git a/src/app/valentina/share/resources/cursor/svg/README.txt b/src/app/valentina/share/resources/toolcursor/svg/README.txt similarity index 100% rename from src/app/valentina/share/resources/cursor/svg/README.txt rename to src/app/valentina/share/resources/toolcursor/svg/README.txt diff --git a/src/app/valentina/share/resources/toolcursor/svg/dark/along_line_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/dark/along_line_cursor.svg new file mode 100644 index 000000000..6fd476552 --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/dark/along_line_cursor.svg @@ -0,0 +1,78 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/dark/arc_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/dark/arc_cursor.svg new file mode 100644 index 000000000..3a1523d13 --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/dark/arc_cursor.svg @@ -0,0 +1,78 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/dark/arc_cut_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/dark/arc_cut_cursor.svg new file mode 100644 index 000000000..c51508e86 --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/dark/arc_cut_cursor.svg @@ -0,0 +1,78 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/dark/arc_intersect_axis_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/dark/arc_intersect_axis_cursor.svg new file mode 100644 index 000000000..56e741c41 --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/dark/arc_intersect_axis_cursor.svg @@ -0,0 +1,78 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/dark/arc_with_length_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/dark/arc_with_length_cursor.svg new file mode 100644 index 000000000..4db916258 --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/dark/arc_with_length_cursor.svg @@ -0,0 +1,78 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/dark/bisector_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/dark/bisector_cursor.svg new file mode 100644 index 000000000..6569a5b46 --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/dark/bisector_cursor.svg @@ -0,0 +1,78 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/dark/cubic_bezier_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/dark/cubic_bezier_cursor.svg new file mode 100644 index 000000000..8972c79c6 --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/dark/cubic_bezier_cursor.svg @@ -0,0 +1,78 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/dark/cubic_bezier_path_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/dark/cubic_bezier_path_cursor.svg new file mode 100644 index 000000000..a089d3e08 --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/dark/cubic_bezier_path_cursor.svg @@ -0,0 +1,78 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/dark/curve_intersect_axis_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/dark/curve_intersect_axis_cursor.svg new file mode 100644 index 000000000..061811ff9 --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/dark/curve_intersect_axis_cursor.svg @@ -0,0 +1,78 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/dark/duplicate_detail_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/dark/duplicate_detail_cursor.svg new file mode 100644 index 000000000..c0405a6e6 --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/dark/duplicate_detail_cursor.svg @@ -0,0 +1,78 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/dark/el_arc_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/dark/el_arc_cursor.svg new file mode 100644 index 000000000..19a836e3f --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/dark/el_arc_cursor.svg @@ -0,0 +1,78 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/dark/flipping_axis_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/dark/flipping_axis_cursor.svg new file mode 100644 index 000000000..2a22162f4 --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/dark/flipping_axis_cursor.svg @@ -0,0 +1,78 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/dark/flipping_line_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/dark/flipping_line_cursor.svg new file mode 100644 index 000000000..b88dd4f05 --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/dark/flipping_line_cursor.svg @@ -0,0 +1,78 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/dark/group_plus_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/dark/group_plus_cursor.svg new file mode 100644 index 000000000..07fa38a43 --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/dark/group_plus_cursor.svg @@ -0,0 +1,78 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/dark/height_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/dark/height_cursor.svg new file mode 100644 index 000000000..919893f90 --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/dark/height_cursor.svg @@ -0,0 +1,78 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/dark/insert_node_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/dark/insert_node_cursor.svg new file mode 100644 index 000000000..e061e1b72 --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/dark/insert_node_cursor.svg @@ -0,0 +1,78 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/dark/intersect_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/dark/intersect_cursor.svg new file mode 100644 index 000000000..4d3849f57 --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/dark/intersect_cursor.svg @@ -0,0 +1,78 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/dark/intersection_curves_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/dark/intersection_curves_cursor.svg new file mode 100644 index 000000000..79470eda8 --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/dark/intersection_curves_cursor.svg @@ -0,0 +1,78 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/dark/line_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/dark/line_cursor.svg new file mode 100644 index 000000000..3bdaa91c9 --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/dark/line_cursor.svg @@ -0,0 +1,78 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/dark/line_intersect_axis_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/dark/line_intersect_axis_cursor.svg new file mode 100644 index 000000000..c8fe6a727 --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/dark/line_intersect_axis_cursor.svg @@ -0,0 +1,78 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/dark/midpoint_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/dark/midpoint_cursor.svg new file mode 100644 index 000000000..13886f091 --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/dark/midpoint_cursor.svg @@ -0,0 +1,78 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/dark/move_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/dark/move_cursor.svg new file mode 100644 index 000000000..ae10ae7c5 --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/dark/move_cursor.svg @@ -0,0 +1,78 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/dark/new_detail_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/dark/new_detail_cursor.svg new file mode 100644 index 000000000..0ba1482be --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/dark/new_detail_cursor.svg @@ -0,0 +1,78 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/dark/normal_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/dark/normal_cursor.svg new file mode 100644 index 000000000..bfe3f9555 --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/dark/normal_cursor.svg @@ -0,0 +1,78 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/dark/path_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/dark/path_cursor.svg new file mode 100644 index 000000000..084181c0e --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/dark/path_cursor.svg @@ -0,0 +1,78 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/dark/pin_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/dark/pin_cursor.svg new file mode 100644 index 000000000..487d52116 --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/dark/pin_cursor.svg @@ -0,0 +1,78 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/dark/place_label_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/dark/place_label_cursor.svg new file mode 100644 index 000000000..e270eb2dd --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/dark/place_label_cursor.svg @@ -0,0 +1,78 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/dark/point_from_arc_and_tangent_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/dark/point_from_arc_and_tangent_cursor.svg new file mode 100644 index 000000000..83739815a --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/dark/point_from_arc_and_tangent_cursor.svg @@ -0,0 +1,78 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/dark/point_from_circle_and_tangent_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/dark/point_from_circle_and_tangent_cursor.svg new file mode 100644 index 000000000..17a5508f1 --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/dark/point_from_circle_and_tangent_cursor.svg @@ -0,0 +1,78 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/dark/point_of_contact_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/dark/point_of_contact_cursor.svg new file mode 100644 index 000000000..b3e159a05 --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/dark/point_of_contact_cursor.svg @@ -0,0 +1,78 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/dark/point_of_intersection_arcs_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/dark/point_of_intersection_arcs_cursor.svg new file mode 100644 index 000000000..c6afbdae1 --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/dark/point_of_intersection_arcs_cursor.svg @@ -0,0 +1,78 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/dark/point_of_intersection_circles_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/dark/point_of_intersection_circles_cursor.svg new file mode 100644 index 000000000..e5ca0de3f --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/dark/point_of_intersection_circles_cursor.svg @@ -0,0 +1,78 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/dark/point_of_intersection_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/dark/point_of_intersection_cursor.svg new file mode 100644 index 000000000..2ee925579 --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/dark/point_of_intersection_cursor.svg @@ -0,0 +1,78 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/dark/rotation_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/dark/rotation_cursor.svg new file mode 100644 index 000000000..0e9f6769b --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/dark/rotation_cursor.svg @@ -0,0 +1,78 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/dark/segment_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/dark/segment_cursor.svg new file mode 100644 index 000000000..64f20691d --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/dark/segment_cursor.svg @@ -0,0 +1,78 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/dark/shoulder_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/dark/shoulder_cursor.svg new file mode 100644 index 000000000..b983b073a --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/dark/shoulder_cursor.svg @@ -0,0 +1,78 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/dark/splinePath_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/dark/splinePath_cursor.svg new file mode 100644 index 000000000..2cdbd1a10 --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/dark/splinePath_cursor.svg @@ -0,0 +1,78 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/dark/splinePath_cut_point_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/dark/splinePath_cut_point_cursor.svg new file mode 100644 index 000000000..067794c54 --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/dark/splinePath_cut_point_cursor.svg @@ -0,0 +1,78 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/dark/spline_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/dark/spline_cursor.svg new file mode 100644 index 000000000..02d6f2918 --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/dark/spline_cursor.svg @@ -0,0 +1,78 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/dark/spline_cut_point_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/dark/spline_cut_point_cursor.svg new file mode 100644 index 000000000..27581ddbd --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/dark/spline_cut_point_cursor.svg @@ -0,0 +1,78 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/dark/triangle_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/dark/triangle_cursor.svg new file mode 100644 index 000000000..61c806d44 --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/dark/triangle_cursor.svg @@ -0,0 +1,78 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/dark/true_darts_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/dark/true_darts_cursor.svg new file mode 100644 index 000000000..5c9f64906 --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/dark/true_darts_cursor.svg @@ -0,0 +1,78 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/dark/union_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/dark/union_cursor.svg new file mode 100644 index 000000000..4fd2d308b --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/dark/union_cursor.svg @@ -0,0 +1,78 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/light/along_line_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/light/along_line_cursor.svg new file mode 100644 index 000000000..b17b3c83b --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/light/along_line_cursor.svg @@ -0,0 +1,75 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/light/arc_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/light/arc_cursor.svg new file mode 100644 index 000000000..96b2352fb --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/light/arc_cursor.svg @@ -0,0 +1,75 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/light/arc_cut_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/light/arc_cut_cursor.svg new file mode 100644 index 000000000..1cb22edae --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/light/arc_cut_cursor.svg @@ -0,0 +1,75 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/light/arc_intersect_axis_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/light/arc_intersect_axis_cursor.svg new file mode 100644 index 000000000..0174caf87 --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/light/arc_intersect_axis_cursor.svg @@ -0,0 +1,75 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/light/arc_with_length_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/light/arc_with_length_cursor.svg new file mode 100644 index 000000000..068a9a4f1 --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/light/arc_with_length_cursor.svg @@ -0,0 +1,75 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/light/bisector_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/light/bisector_cursor.svg new file mode 100644 index 000000000..ab16d2da8 --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/light/bisector_cursor.svg @@ -0,0 +1,75 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/light/cubic_bezier_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/light/cubic_bezier_cursor.svg new file mode 100644 index 000000000..4cf79e7f9 --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/light/cubic_bezier_cursor.svg @@ -0,0 +1,75 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/light/cubic_bezier_path_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/light/cubic_bezier_path_cursor.svg new file mode 100644 index 000000000..72e1ee004 --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/light/cubic_bezier_path_cursor.svg @@ -0,0 +1,75 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/light/curve_intersect_axis_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/light/curve_intersect_axis_cursor.svg new file mode 100644 index 000000000..db26bc231 --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/light/curve_intersect_axis_cursor.svg @@ -0,0 +1,75 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/light/duplicate_detail_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/light/duplicate_detail_cursor.svg new file mode 100644 index 000000000..c1f0a64c6 --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/light/duplicate_detail_cursor.svg @@ -0,0 +1,75 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/light/el_arc_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/light/el_arc_cursor.svg new file mode 100644 index 000000000..cd8382675 --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/light/el_arc_cursor.svg @@ -0,0 +1,75 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/light/flipping_axis_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/light/flipping_axis_cursor.svg new file mode 100644 index 000000000..b34a160ea --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/light/flipping_axis_cursor.svg @@ -0,0 +1,75 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/light/flipping_line_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/light/flipping_line_cursor.svg new file mode 100644 index 000000000..098146cbe --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/light/flipping_line_cursor.svg @@ -0,0 +1,75 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/light/group_plus_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/light/group_plus_cursor.svg new file mode 100644 index 000000000..76bb976b4 --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/light/group_plus_cursor.svg @@ -0,0 +1,75 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/light/height_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/light/height_cursor.svg new file mode 100644 index 000000000..2bfb6a370 --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/light/height_cursor.svg @@ -0,0 +1,75 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/light/insert_node_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/light/insert_node_cursor.svg new file mode 100644 index 000000000..a95829522 --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/light/insert_node_cursor.svg @@ -0,0 +1,75 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/light/intersect_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/light/intersect_cursor.svg new file mode 100644 index 000000000..118743366 --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/light/intersect_cursor.svg @@ -0,0 +1,75 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/light/intersection_curves_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/light/intersection_curves_cursor.svg new file mode 100644 index 000000000..cca55bb9e --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/light/intersection_curves_cursor.svg @@ -0,0 +1,75 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/light/line_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/light/line_cursor.svg new file mode 100644 index 000000000..d642dbd26 --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/light/line_cursor.svg @@ -0,0 +1,75 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/light/line_intersect_axis_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/light/line_intersect_axis_cursor.svg new file mode 100644 index 000000000..a34cc6cb9 --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/light/line_intersect_axis_cursor.svg @@ -0,0 +1,75 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/light/midpoint_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/light/midpoint_cursor.svg new file mode 100644 index 000000000..bca357e26 --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/light/midpoint_cursor.svg @@ -0,0 +1,75 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/light/move_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/light/move_cursor.svg new file mode 100644 index 000000000..6e9d136b3 --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/light/move_cursor.svg @@ -0,0 +1,75 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/light/new_detail_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/light/new_detail_cursor.svg new file mode 100644 index 000000000..f2e7df598 --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/light/new_detail_cursor.svg @@ -0,0 +1,75 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/light/normal_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/light/normal_cursor.svg new file mode 100644 index 000000000..4aa4360c0 --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/light/normal_cursor.svg @@ -0,0 +1,75 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/light/path_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/light/path_cursor.svg new file mode 100644 index 000000000..229808641 --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/light/path_cursor.svg @@ -0,0 +1,75 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/light/pin_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/light/pin_cursor.svg new file mode 100644 index 000000000..182e4736a --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/light/pin_cursor.svg @@ -0,0 +1,75 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/light/place_label_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/light/place_label_cursor.svg new file mode 100644 index 000000000..210046c8e --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/light/place_label_cursor.svg @@ -0,0 +1,75 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/light/point_from_arc_and_tangent_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/light/point_from_arc_and_tangent_cursor.svg new file mode 100644 index 000000000..c3f62b894 --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/light/point_from_arc_and_tangent_cursor.svg @@ -0,0 +1,75 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/light/point_from_circle_and_tangent_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/light/point_from_circle_and_tangent_cursor.svg new file mode 100644 index 000000000..1136380de --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/light/point_from_circle_and_tangent_cursor.svg @@ -0,0 +1,75 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/light/point_of_contact_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/light/point_of_contact_cursor.svg new file mode 100644 index 000000000..b23165d3b --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/light/point_of_contact_cursor.svg @@ -0,0 +1,75 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/light/point_of_intersection_arcs_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/light/point_of_intersection_arcs_cursor.svg new file mode 100644 index 000000000..ea23ed18d --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/light/point_of_intersection_arcs_cursor.svg @@ -0,0 +1,75 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/light/point_of_intersection_circles_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/light/point_of_intersection_circles_cursor.svg new file mode 100644 index 000000000..001e8f7b5 --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/light/point_of_intersection_circles_cursor.svg @@ -0,0 +1,75 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/light/point_of_intersection_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/light/point_of_intersection_cursor.svg new file mode 100644 index 000000000..252e23ba6 --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/light/point_of_intersection_cursor.svg @@ -0,0 +1,75 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/light/rotation_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/light/rotation_cursor.svg new file mode 100644 index 000000000..4524456b9 --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/light/rotation_cursor.svg @@ -0,0 +1,75 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/light/segment_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/light/segment_cursor.svg new file mode 100644 index 000000000..0eaae3373 --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/light/segment_cursor.svg @@ -0,0 +1,75 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/light/shoulder_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/light/shoulder_cursor.svg new file mode 100644 index 000000000..4f3fa2f10 --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/light/shoulder_cursor.svg @@ -0,0 +1,75 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/light/splinePath_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/light/splinePath_cursor.svg new file mode 100644 index 000000000..5aecc8c92 --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/light/splinePath_cursor.svg @@ -0,0 +1,75 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/light/splinePath_cut_point_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/light/splinePath_cut_point_cursor.svg new file mode 100644 index 000000000..31e65c84c --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/light/splinePath_cut_point_cursor.svg @@ -0,0 +1,75 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/light/spline_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/light/spline_cursor.svg new file mode 100644 index 000000000..3ec295fa3 --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/light/spline_cursor.svg @@ -0,0 +1,75 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/light/spline_cut_point_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/light/spline_cut_point_cursor.svg new file mode 100644 index 000000000..2492e17dc --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/light/spline_cut_point_cursor.svg @@ -0,0 +1,75 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/light/triangle_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/light/triangle_cursor.svg new file mode 100644 index 000000000..f88ec8e7a --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/light/triangle_cursor.svg @@ -0,0 +1,75 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/light/true_darts_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/light/true_darts_cursor.svg new file mode 100644 index 000000000..7c01f8195 --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/light/true_darts_cursor.svg @@ -0,0 +1,75 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/src/app/valentina/share/resources/toolcursor/svg/light/union_cursor.svg b/src/app/valentina/share/resources/toolcursor/svg/light/union_cursor.svg new file mode 100644 index 000000000..a8124fa15 --- /dev/null +++ b/src/app/valentina/share/resources/toolcursor/svg/light/union_cursor.svg @@ -0,0 +1,75 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/src/app/valentina/share/resources/cursor/svg/template_cursor_dark.svg b/src/app/valentina/share/resources/toolcursor/svg/template_cursor_dark.svg similarity index 100% rename from src/app/valentina/share/resources/cursor/svg/template_cursor_dark.svg rename to src/app/valentina/share/resources/toolcursor/svg/template_cursor_dark.svg diff --git a/src/app/valentina/share/resources/cursor/svg/template_cursor_light.svg b/src/app/valentina/share/resources/toolcursor/svg/template_cursor_light.svg similarity index 100% rename from src/app/valentina/share/resources/cursor/svg/template_cursor_light.svg rename to src/app/valentina/share/resources/toolcursor/svg/template_cursor_light.svg diff --git a/src/app/valentina/valentina.pro b/src/app/valentina/valentina.pro index 5289d8dac..cd4aa5332 100644 --- a/src/app/valentina/valentina.pro +++ b/src/app/valentina/valentina.pro @@ -75,7 +75,7 @@ include(valentina.pri) # Resource files. This files will be included in binary. RESOURCES += \ - share/resources/cursor.qrc \ # Tools cursor icons. + share/resources/toolcursor.qrc \ # Tools cursor icons. share/resources/toolicon.qrc # Compilation will fail without this files after we added them to this section. diff --git a/src/app/valentina/valentina.qbs b/src/app/valentina/valentina.qbs index ff0fe98fc..fa9f1a1d6 100644 --- a/src/app/valentina/valentina.qbs +++ b/src/app/valentina/valentina.qbs @@ -172,7 +172,7 @@ VToolApp { name: "Resources" prefix: "share/resources/" files: [ - "cursor.qrc", // Tools cursor icons + "toolcursor.qrc", // Tools cursor icons "toolicon.qrc", ] } diff --git a/src/libs/vmisc/share/resources/cursor.qrc b/src/libs/vmisc/share/resources/cursor.qrc new file mode 100644 index 000000000..9375c4f90 --- /dev/null +++ b/src/libs/vmisc/share/resources/cursor.qrc @@ -0,0 +1,6 @@ + + + cursor/cursor-arrow-closehand.png + cursor/cursor-arrow-openhand.png + + diff --git a/src/app/valentina/share/resources/cursor/cursor-arrow-closehand.png b/src/libs/vmisc/share/resources/cursor/cursor-arrow-closehand.png similarity index 100% rename from src/app/valentina/share/resources/cursor/cursor-arrow-closehand.png rename to src/libs/vmisc/share/resources/cursor/cursor-arrow-closehand.png diff --git a/src/app/valentina/share/resources/cursor/cursor-arrow-openhand.png b/src/libs/vmisc/share/resources/cursor/cursor-arrow-openhand.png similarity index 100% rename from src/app/valentina/share/resources/cursor/cursor-arrow-openhand.png rename to src/libs/vmisc/share/resources/cursor/cursor-arrow-openhand.png diff --git a/src/libs/vmisc/vmisc.pro b/src/libs/vmisc/vmisc.pro index de9cb5d54..bbad6261d 100644 --- a/src/libs/vmisc/vmisc.pro +++ b/src/libs/vmisc/vmisc.pro @@ -50,6 +50,7 @@ RESOURCES += \ share/resources/flags.qrc \ share/resources/breezethemes/breeze.qrc \ share/resources/scenestyle.qrc \ + share/resources/cursor.qrc \ share/resources/win_light_theme.qrc \ share/resources/win_dark_theme.qrc diff --git a/src/libs/vmisc/vmisc.qbs b/src/libs/vmisc/vmisc.qbs index bcc0f84a5..43b72726a 100644 --- a/src/libs/vmisc/vmisc.qbs +++ b/src/libs/vmisc/vmisc.qbs @@ -195,6 +195,7 @@ VLib { "flags.qrc", "breezethemes/breeze.qrc", "scenestyle.qrc", + "cursor.qrc", ] }