| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| | #include <QObject> |
| |
|
| | #include "rs.h" |
| |
|
| | class QString; |
| |
|
| | struct LC_CommandItem { |
| | std::vector<std::pair<QString, QString>> const fullCmdList; |
| | std::vector<std::pair<QString, QString>> const shortCmdList; |
| | RS2::ActionType actionType; |
| | }; |
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| | const LC_CommandItem g_commandList[] = { |
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | { |
| | {{"cnlayer", QObject::tr("cnlayer")}}, |
| | {{"cnly", QObject::tr("cnly")}}, |
| | RS2::ActionLayersAddCmd |
| | }, |
| | { |
| | {{"cslayer", QObject::tr("cslayer")}}, |
| | {{"csly", QObject::tr("csly")}}, |
| | RS2::ActionLayersActivateCmd |
| | }, |
| | |
| | |
| | { |
| | {{"line2p", QObject::tr("line2p", "draw line")}}, |
| | {{"li", QObject::tr("li", "draw line")}, |
| | {"line", QObject::tr("line", "draw line")}, |
| | {"l", QObject::tr("l", "draw line")}}, |
| | RS2::ActionDrawLine |
| | }, |
| | |
| | { |
| | {{"sline", QObject::tr("sline", "draw snake line")}}, |
| | {{"sli", QObject::tr("sli", "draw snake line")}, |
| | {"sl", QObject::tr("sl", "draw snake line")}}, |
| | RS2::ActionDrawSnakeLine |
| | }, |
| | |
| | { |
| | {{"slinex", QObject::tr("slinex", "draw snake line (X)")}}, |
| | {{"slix", QObject::tr("slix", "draw snake line (X)")}, |
| | {"slx", QObject::tr("rlx", "draw snake line (X)")}}, |
| | RS2::ActionDrawSnakeLineX |
| | }, |
| | |
| | { |
| | {{"sliney", QObject::tr("sliney", "draw snake line (Y)")}}, |
| | {{"sliy", QObject::tr("sliy", "draw snake line (Y)")}, |
| | {"sly", QObject::tr("rly", "draw snake line (Y)")}}, |
| | RS2::ActionDrawSnakeLineY |
| | }, |
| | |
| | { |
| | {{"lineang", QObject::tr("lineang", "angled line")}}, |
| | {{"la", QObject::tr("la", "angled line")}}, |
| | RS2::ActionDrawLineAngle |
| | }, |
| | |
| | { |
| | {{"linehor", QObject::tr("linehor", "horizontal line")}}, |
| | {{"lh", QObject::tr("lh", "horizontal line")}}, |
| | RS2::ActionDrawLineHorizontal |
| | }, |
| | |
| | { |
| | {{"linever", QObject::tr("linever", "vertical line")}}, |
| | {{"lv", QObject::tr("lv", "vertical line")}}, |
| | RS2::ActionDrawLineVertical |
| | }, |
| | |
| | { |
| | {{"linerec", QObject::tr("linerec", "draw rectangle")}}, |
| | {{"re", QObject::tr("re", "draw rectangle")}, |
| | {"rect", QObject::tr("rect", "draw rectangle")}}, |
| | RS2::ActionDrawLineRectangle |
| | }, |
| | |
| | { |
| | {{"rect1", QObject::tr("rect1", "draw rectangle (1 Point)")}}, |
| | {{"re1", QObject::tr("re1", "draw rectangle (1 Point)")}}, |
| | RS2::ActionDrawRectangle1Point |
| | }, |
| | |
| | { |
| | {{"rect2", QObject::tr("rect2", "draw rectangle (2 Points)")}}, |
| | {{"re2", QObject::tr("re2", "draw rectangle (2 Points)")}}, |
| | RS2::ActionDrawRectangle2Points |
| | }, |
| | |
| | { |
| | {{"rect3", QObject::tr("rect3", "draw rectangle (3 Points)")}}, |
| | {{"re3", QObject::tr("re3", "draw rectangle (3 Points)")}}, |
| | RS2::ActionDrawRectangle3Points |
| | }, |
| | |
| | { |
| | {{"slicel", QObject::tr("slicel", "slice/divide line")}}, |
| | {{"sll", QObject::tr("sll", "slice/divide line")}}, |
| | RS2::ActionDrawSliceDivideLine |
| | }, |
| | |
| | { |
| | {{"slicec", QObject::tr("slicec", "slice/divide circle/arc")}}, |
| | {{"slc", QObject::tr("slc", "slice/divide circle/arc")}}, |
| | RS2::ActionDrawSliceDivideCircle |
| | }, |
| | |
| | { |
| | {{"star", QObject::tr("star", "draw star")}}, |
| | {{"st", QObject::tr("st", "draw star")}}, |
| | RS2::ActionDrawStar |
| | }, |
| | |
| | { |
| | {{"cross", QObject::tr("cross", "draw cross for circle")}}, |
| | {{"cx", QObject::tr("cx", "draw cross for circle")}}, |
| | RS2::ActionDrawCross |
| | }, |
| | { |
| | {{"bbox", QObject::tr("bbox", "draw bound box")}}, |
| | {{"bb", QObject::tr("bb", "draw bound box")}}, |
| | RS2::ActionDrawBoundingBox |
| | }, |
| | { |
| | {{"midline", QObject::tr("midline", "draw middle line")}}, |
| | {{"ml", QObject::tr("ml", "draw mid line")}}, |
| | RS2::ActionDrawLineMiddle |
| | }, |
| | |
| | { |
| | {{"linepoints", QObject::tr("linepoints", "draw line of points")}}, |
| | {{"lpoints", QObject::tr("lpoints", "draw line of points")}}, |
| | RS2::ActionDrawLinePoints |
| | }, |
| | { |
| | {{"midpoint", QObject::tr("midpoint", "draw middle points")}}, |
| | {{"mpoint", QObject::tr("mpoint", "draw middle of points")}}, |
| | RS2::ActionDrawPointsMiddle |
| | }, |
| | |
| | { |
| | {{"circlebyarc", QObject::tr("criclebyarc", "draw circle by arc")}}, |
| | {{"cba", QObject::tr("cba", "draw circle by arc")}}, |
| | RS2::ActionDrawCircleByArc |
| | }, |
| | |
| | { |
| | {{"duplicate", QObject::tr("duplicate", "duplicate entity")}}, |
| | {{"dup", QObject::tr("dup", "duplicate entity")}}, |
| | RS2::ActionModifyDuplicate |
| | }, |
| | |
| | { |
| | {{"align", QObject::tr("align", "align entities")}}, |
| | {{"al", QObject::tr("al", "align entities")}}, |
| | RS2::ActionModifyAlign |
| | }, |
| | |
| | { |
| | {{"align1", QObject::tr("align1", "align entities")}}, |
| | {{"al1", QObject::tr("al1", "align entities")}}, |
| | RS2::ActionModifyAlignOne |
| | }, |
| | { |
| | {{"alignref", QObject::tr("alignref", "align references")}}, |
| | {{"alr", QObject::tr("alr", "align references")}}, |
| | RS2::ActionModifyAlignRef |
| | }, |
| | |
| | { |
| | {{"linejoin", QObject::tr("linejoin", "lines join")}}, |
| | {{"lj", QObject::tr("lj", "lines join")}}, |
| | RS2::ActionModifyLineJoin |
| | }, |
| | |
| | { |
| | {{"breakdivide", QObject::tr("breakdivide", "break or divide entity")}}, |
| | {{"bd", QObject::tr("bd", "break or divide entity")}}, |
| | RS2::ActionModifyBreakDivide |
| | }, |
| | |
| | { |
| | {{"gapline", QObject::tr("gapline", "line gap")}}, |
| | {{"gl", QObject::tr("gl", "line gap")}}, |
| | RS2::ActionModifyBreakDivide |
| | }, |
| | |
| | { |
| | {{"linepar", QObject::tr("linepar", "create parallel")}, |
| | {"parallel", QObject::tr("parallel", "create parallel")}, |
| | {"lineoff", QObject::tr("lineoff", "create parallel")}}, |
| | {{"pa", QObject::tr("pa", "create parallel")}, |
| | {"ll", QObject::tr("ll", "create parallel")}}, |
| | RS2::ActionDrawLineParallel |
| | }, |
| | |
| | { |
| | {{"lineparthro", QObject::tr("lineparthro", "parallel through point")}}, |
| | {{"lp", QObject::tr("lp", "parallel through point")}, |
| | {"ptp", QObject::tr("ptp", "parallel through point")}}, |
| | RS2::ActionDrawLineParallelThrough |
| | }, |
| | |
| | { |
| | {{"linebisect", QObject::tr("linebisect", "angle bisector")}}, |
| | {{"bi", QObject::tr("bi", "angle bisector")}, |
| | {"bisect", QObject::tr("bisect", "angle bisector")}}, |
| | RS2::ActionDrawLineBisector |
| | }, |
| | |
| | { |
| | {{"linetancp", QObject::tr("linetancp", "tangent point and circle")}}, |
| | {{"lt", QObject::tr("lt", "tangent point and circle")}, |
| | {"tanpc", QObject::tr("tanpc", "tangent point and circle")}}, |
| | RS2::ActionDrawLineTangent1 |
| | }, |
| | |
| | { |
| | {{"linetan2c", QObject::tr("linetan2c", "tangent two circles")}}, |
| | {{"lc", QObject::tr("lc", "tangent two circles")}}, |
| | RS2::ActionDrawLineTangent2 |
| | }, |
| | |
| | { |
| | {{"linetancper", QObject::tr("linetancper", "tangent line and circle")}}, |
| | {{"or", QObject::tr("or", "tangent line and circle")}}, |
| | RS2::ActionDrawLineOrthTan |
| | }, |
| | |
| | { |
| | {{"lineperp", QObject::tr("lineperp", "perpendicular line")}}, |
| | {{"lo", QObject::tr("lo", "perpendicular line")}, |
| | {"ortho", QObject::tr("ortho", "perpendicular line")}}, |
| | RS2::ActionDrawLineOrthogonal |
| | }, |
| | |
| | { |
| | {{"linerelang", QObject::tr("linerelang", "relative line")}}, |
| | {{"lr", QObject::tr("lr", "relative line")}}, |
| | RS2::ActionDrawLineRelAngle |
| | }, |
| | |
| | { |
| | {{"polygoncencor", QObject::tr("polygoncencor", "polygon centre point")}}, |
| | {{"pp", QObject::tr("pp", "polygon centre point")}, |
| | {"polycp", QObject::tr("polycp", "polygon centre point")}, |
| | {"pcp", QObject::tr("pcp", "polygon centre point")}}, |
| | RS2::ActionDrawLinePolygonCenCor |
| | }, |
| | |
| | { |
| | {{"polygoncentan", QObject::tr("polygoncentan", "polygon centre vertex")}}, |
| | {{"pv", QObject::tr("pv", "polygon centre vertex")}, |
| | {"polyct", QObject::tr("polyct", "polygon centre vertex")}}, |
| | RS2::ActionDrawLinePolygonCenTan |
| | }, |
| | |
| | { |
| | {{"polygonvv", QObject::tr("polygonvv", "polygon vertex vertex")}}, |
| | {{"pvv", QObject::tr("pvv", "polygon vertex vertex")}}, |
| | RS2::ActionDrawLinePolygonSideSide |
| | }, |
| | |
| | { |
| | {{"polygon2v", QObject::tr("polygon2v", "polygon by 2 vertices")}}, |
| | {{"p2", QObject::tr("p2", "polygon by 2 vertices")}, |
| | {"poly2", QObject::tr("poly2", "polygon by 2 vertices")}}, |
| | RS2::ActionDrawLinePolygonCorCor |
| | }, |
| |
|
| | |
| | |
| | { |
| | {{"circle", QObject::tr("circle", "draw circle")}}, |
| | {{"ci", QObject::tr("ci", "draw circle")}, |
| | {"c", QObject::tr("c", "draw circle")}}, |
| | RS2::ActionDrawCircle |
| | }, |
| | |
| | { |
| | {{"circle2p", QObject::tr("circle2p", "circle 2 points")}}, |
| | {{"c2", QObject::tr("c2", "circle 2 points")}, |
| | {"c2p", QObject::tr("c2p", "circle 2 points")}}, |
| | RS2::ActionDrawCircle2P |
| | }, |
| | |
| | { |
| | {{"circle2pr", QObject::tr("circle2pr", "circle 2 points radius")}}, |
| | {{"cc", QObject::tr("cc", "circle 2 points radius")}}, |
| | RS2::ActionDrawCircle2PR |
| | }, |
| | |
| | { |
| | {{"circle3p", QObject::tr("circle3p", "circle 3 points")}}, |
| | {{"c3", QObject::tr("c3", "circle 3 points")}, |
| | {"c3p", QObject::tr("c3p", "circle 3 points")}}, |
| | RS2::ActionDrawCircle3P |
| | }, |
| | |
| | { |
| | {{"circlecr", QObject::tr("circlecr", "circle point radius")}}, |
| | {{"cr", QObject::tr("cr", "circle point radius")}, |
| | {"ccr", QObject::tr("ccr", "circle point radius")}}, |
| | RS2::ActionDrawCircleCR |
| | }, |
| |
|
| | |
| | { |
| | {{"circletan2cp", QObject::tr("circletan2cp", "circle 2 tangent point")}}, |
| | {{"tr", QObject::tr("tr", "circle 2 tangent point")}}, |
| | RS2::ActionDrawCircleTan2_1P |
| | }, |
| | |
| | { |
| | {{"circletan2p", QObject::tr("circletan2p", "circle tangent 2 points")}}, |
| | {{"td", QObject::tr("td", "circle tangent 2 points")}}, |
| | RS2::ActionDrawCircleTan1_2P |
| | }, |
| | |
| | { |
| | {{"circletan2cr", QObject::tr("circletan2cr", "circle 2 tangent radius")}}, |
| | {{"tc", QObject::tr("tc", "circle 2 tangent radius")}}, |
| | RS2::ActionDrawCircleTan2 |
| | }, |
| |
|
| | |
| | { |
| | {{"circletan3", QObject::tr("circletan3", "circle tangent to 3")}}, |
| | {{"t3", QObject::tr("t3", "circle tangent to 3")}, |
| | {"ct3", QObject::tr("ct3", "circle tangent to 3")}, |
| | {"tan3", QObject::tr("tan3", "circle tangent to 3")}}, |
| | RS2::ActionDrawCircleTan3 |
| | }, |
| |
|
| | |
| | |
| | { |
| | {{"arc", QObject::tr("arc", "arc point radius")}}, |
| | {{"ar", QObject::tr("ar", "arc point radius")}, |
| | {"a", QObject::tr("a", "arc point radius")}}, |
| | RS2::ActionDrawArc |
| | }, |
| | |
| | { |
| | {{"arc3p", QObject::tr("arc3p", "draw 3pt arc")}}, |
| | {{"a3", QObject::tr("a3", "draw 3pt arc")}}, |
| | RS2::ActionDrawArc3P |
| | }, |
| | |
| | { |
| | {{"arctan", QObject::tr("arctan", "arc tangent")}}, |
| | {{"at", QObject::tr("at", "arc tangent")}}, |
| | RS2::ActionDrawArcTangential |
| | }, |
| | |
| | { |
| | {{"arc2pr", QObject::tr("arc2p3", "draw 2pt arc radius")}}, |
| | {{"a2r", QObject::tr("a2r", "draw 2pt arc radius")}}, |
| | RS2::ActionDrawArc2PRadius |
| | }, |
| | |
| | { |
| | {{"arc2pl", QObject::tr("arc2pl", "draw 2pt arc length")}}, |
| | {{"a2l", QObject::tr("a2l", "draw 2pt arc length")}}, |
| | RS2::ActionDrawArc2PLength |
| | }, |
| | |
| | { |
| | {{"arc2ph", QObject::tr("arc2ph", "draw 2pt arc height")}}, |
| | {{"a2h", QObject::tr("a2h", "draw 2pt arc height")}}, |
| | RS2::ActionDrawArc2PHeight |
| | }, |
| | |
| | { |
| | {{"arc2pa", QObject::tr("arc2pa", "draw 2pt arc angle")}}, |
| | {{"a2a", QObject::tr("a2a", "draw 2pt arc angle")}}, |
| | RS2::ActionDrawArc2PAngle |
| | }, |
| |
|
| | |
| | { |
| | {{"spline", QObject::tr("spline", "draw spline")}}, |
| | {{"sf", QObject::tr("sf", "draw spline")}, |
| | {"spl", QObject::tr("spl", "draw spline")}}, |
| | RS2::ActionDrawSpline |
| | }, |
| | |
| | { |
| | {{"spline2", QObject::tr("spline2", "spline through points")}}, |
| | {{"sp", QObject::tr("sp", "spline through points")}, |
| | {"stp", QObject::tr("stp", "spline through points")}}, |
| | RS2::ActionDrawSplinePoints |
| | }, |
| | |
| | { |
| | {{"arcellc2ax", QObject::tr("arcellc2ax", "arc ellipse")}}, |
| | {{"ae", QObject::tr("ae", "arc ellipse")}}, |
| | RS2::ActionDrawEllipseArcAxis |
| | }, |
| | { |
| | {{"arcellc1ax", QObject::tr("arcellc1ax", "arc ellipse 1 point")}}, |
| | {{"ae1", QObject::tr("ae1", "arc ellipse 1 point")}}, |
| | RS2::ActionDrawEllipseArc1Point |
| | }, |
| | |
| | { |
| | {{"parabola4p", QObject::tr("parabola4p", "Parabola 4 points")}}, |
| | {{"pl4", QObject::tr("pl4", "Parabola 4 points")}}, |
| | RS2::ActionDrawParabola4Points |
| | }, |
| | |
| | { |
| | {{"parabolafd", QObject::tr("parabolafd", "Parabola focus directrix")}}, |
| | {{"plfd", QObject::tr("plfd", "Parabola focus directrix")}}, |
| | RS2::ActionDrawParabolaFD |
| | }, |
| | |
| | { |
| | {{"free", QObject::tr("free", "draw freehand line")}}, |
| | {{"fh", QObject::tr("fh", "draw freehand line")}, |
| | {"fhl", QObject::tr("fhl", "draw freehand line")}}, |
| | RS2::ActionDrawLineFree |
| | }, |
| |
|
| | |
| | |
| | { |
| | {{"ellipsec2p", QObject::tr("ellipsec2p", "ellipse axis")}}, |
| | {{"ea", QObject::tr("ea", "ellipse axis")}}, |
| | RS2::ActionDrawEllipseAxis |
| | }, |
| | { |
| | {{"ellipsec1p", QObject::tr("ellipsec1p", "ellipse 1 point")}}, |
| | {{"ea1", QObject::tr("ea1", "ellipse 1 point")}}, |
| | RS2::ActionDrawEllipse1Point |
| | }, |
| | |
| | { |
| | {{"ellipse3p", QObject::tr("ellipse3p", "ellipse foci")}}, |
| | {{"ef", QObject::tr("ef", "ellipse foci")}}, |
| | RS2::ActionDrawEllipseFociPoint |
| | }, |
| | |
| | { |
| | {{"ellipse4p", QObject::tr("ellipse4p", "ellipse 4 point")}}, |
| | {{"e4", QObject::tr("e4", "ellipse 4 point")}}, |
| | RS2::ActionDrawEllipse4Points |
| | }, |
| | |
| | { |
| | {{"ellipsec3p", QObject::tr("ellipsec3p", "ellipse center 3 point")}}, |
| | {{"e3", QObject::tr("e3", "ellipse center 3 point")}}, |
| | RS2::ActionDrawEllipseCenter3Points |
| | }, |
| | |
| | { |
| | {{"ellipseinscribed", QObject::tr("ellipseinscribed", "inscribed ellipse")}}, |
| | {{"ei", QObject::tr("ei", "inscribed ellipse")}, |
| | {"ie", QObject::tr("ie", "inscribed ellipse")}}, |
| | RS2::ActionDrawEllipseInscribe |
| | }, |
| |
|
| | |
| | |
| | { |
| | {{"polyline", QObject::tr("polyline", "draw polyline")}}, |
| | {{"pl", QObject::tr("pl", "draw polyline")}}, |
| | RS2::ActionDrawPolyline |
| | }, |
| | |
| | { |
| | {{"angleline", QObject::tr("angleline", "draw angle from line")}}, |
| | {{"aline", QObject::tr("aline", "draw angle from line")}}, |
| | RS2::ActionDrawLineAngleRel |
| | }, |
| | |
| | { |
| | {{"ortline", QObject::tr("rortoline", "draw orthogonal")}}, |
| | {{"oline", QObject::tr("rort", "draw orthogonal")}}, |
| | RS2::ActionDrawLineOrthogonalRel |
| | }, |
| | |
| | { |
| | {{"point2line", QObject::tr("point2line", "draw line from point to line")}}, |
| | {{"p2l", QObject::tr("p2l", "draw line from point to line")}}, |
| | RS2::ActionDrawLineFromPointToLine |
| | }, |
| |
|
| | |
| | { |
| | {{"plineadd", QObject::tr("plineadd", "pl add node")}}, |
| | {{"pi", QObject::tr("pi", "pl add node")}}, |
| | RS2::ActionPolylineAdd |
| | }, |
| | |
| | { |
| | {{"plineapp", QObject::tr("plineapp", "pl append node")}}, |
| | {{"pn", QObject::tr("pn", "pl append node")}}, |
| | RS2::ActionPolylineAppend |
| | }, |
| | |
| | { |
| | {{"plinedel", QObject::tr("plinedel", "pl delete node")}}, |
| | {{"pd", QObject::tr("pd", "pl delete node")}}, |
| | RS2::ActionPolylineDel |
| | }, |
| | |
| | { |
| | {{"plinedeltwn", QObject::tr("plinedeltwn", "pl del between nodes")}}, |
| | {{"pr", QObject::tr("pr", "pl del between nodes")}}, |
| | RS2::ActionPolylineDelBetween |
| | }, |
| | |
| | { |
| | {{"plinetrm", QObject::tr("plinetrm", "pl trim segments")}}, |
| | {{"pt", QObject::tr("pt", "pl trim segments")}}, |
| | RS2::ActionPolylineTrim |
| | }, |
| | |
| | { |
| | {{"plinepar", QObject::tr("plinepar", "pl equidistant")}}, |
| | {{"pe", QObject::tr("pe", "pl equidistant")}}, |
| | RS2::ActionPolylineEquidistant |
| | }, |
| | |
| | { |
| | {{"plinejoin", QObject::tr("plinejoin", "pl join")}}, |
| | {{"pj", QObject::tr("pj", "pl join")}}, |
| | RS2::ActionPolylineSegment |
| | }, |
| |
|
| | |
| | |
| | { |
| | {{"selectall", QObject::tr("selectall", "Select all entities")}}, |
| | {{"sa", QObject::tr("sa", "Select all entities")}}, |
| | RS2::ActionSelectAll |
| | }, |
| | |
| | { |
| | {{"deselectall", QObject::tr("deselectall", "deselect all entities")}}, |
| | {{"sx", QObject::tr("sx", "deselect all entities")}, |
| | {"tn", QObject::tr("tn", "deselect all entities")}}, |
| | RS2::ActionDeselectAll |
| | }, |
| | |
| | { |
| | {{"invertselect", QObject::tr("invertselect", "invert select")}}, |
| | {{"is", QObject::tr("is", "invert select")}}, |
| | RS2::ActionSelectInvert |
| | }, |
| | |
| |
|
| | |
| | |
| | { |
| | {{"dimaligned", QObject::tr("dimaligned", "dimension - aligned")}}, |
| | {{"ds", QObject::tr("ds", "dimension - aligned")}}, |
| | RS2::ActionDimAligned |
| | }, |
| | |
| | { |
| | {{"dimlinear", QObject::tr("dimlinear", "dimension - linear")}}, |
| | {{"dl", QObject::tr("dl", "dimension - linear")}}, |
| | RS2::ActionDimLinear |
| | }, |
| | |
| | { |
| | {{"dimord", QObject::tr("dimord", "dimension - ordinate")}}, |
| | {{"do", QObject::tr("do", "dimension - ordinate")}}, |
| | RS2::ActionDimOrdinate |
| | }, |
| | { |
| | {{"dimordrebase", QObject::tr("dimordrebase", "dimension - ordinate")}}, |
| | {{"dor", QObject::tr("dor", "dimension - ordinate")}}, |
| | RS2::ActionDimOrdRebase |
| | }, |
| | |
| | { |
| | {{"dimhorizontal", QObject::tr("dimhorizontal", "dimension - horizontal")}}, |
| | {{"dh", QObject::tr("dh", "dimension - horizontal")}}, |
| | RS2::ActionDimLinearHor |
| | }, |
| | |
| | { |
| | {{"dimvertical", QObject::tr("dimvertical", "dimension - vertical")}}, |
| | {{"dv", QObject::tr("dv", "dimension - vertical")}}, |
| | RS2::ActionDimLinearVer |
| | }, |
| | |
| | { |
| | {{"dimradius", QObject::tr("dimradius", "dimension - radial")}, |
| | {"dimradial", QObject::tr("dimradial", "dimension - radial")}}, |
| | {{"dr", QObject::tr("dr", "dimension - radial")}}, |
| | RS2::ActionDimRadial |
| | }, |
| | |
| | { |
| | {{"dimdiameter", QObject::tr("dimdiameter", "dimension - diametric")}}, |
| | {{"dd", QObject::tr("dd", "dimension - diametric")}, |
| | {"dimdiametric", QObject::tr("dimdiametric", "dimension - diametric")}}, |
| | RS2::ActionDimDiametric |
| | }, |
| | |
| | { |
| | {{"dimangular", QObject::tr("dimangular", "dimension - angular")}}, |
| | {{"da", QObject::tr("da", "dimension - angular")}, |
| | {"dan", QObject::tr("dan", "dimension - angular")}}, |
| | RS2::ActionDimAngular |
| | }, |
| | |
| | { |
| | {{"dimleader", QObject::tr("dimleader", "dimension - leader")}}, |
| | {{"ld", QObject::tr("ld", "dimension - leader")}}, |
| | RS2::ActionDimLeader |
| | }, |
| | |
| | { |
| | {{"dimregen", QObject::tr("dimregen", "dimension - regenerate")}}, |
| | {{"dg", QObject::tr("dg", "dimension - regenerate")}}, |
| | RS2::ActionDimRegenerate |
| | }, |
| |
|
| | |
| | |
| | { |
| | {{"modmove", QObject::tr("modmove", "modify - move (copy)")}}, |
| | {{"mv", QObject::tr("mv", "modify - move (copy)")}}, |
| | RS2::ActionModifyMove |
| | }, |
| | |
| | { |
| | {{"modrotate", QObject::tr("modrotate", "modify - rotate")}}, |
| | {{"ro", QObject::tr("ro", "modify - rotate")}}, |
| | RS2::ActionModifyRotate |
| | }, |
| | |
| | { |
| | {{"modscale", QObject::tr("modscale", "modify - scale")}}, |
| | {{"sz", QObject::tr("sz", "modify - scale")}}, |
| | RS2::ActionModifyScale |
| | }, |
| | |
| | { |
| | {{"modmirror", QObject::tr("modmirror", "modify - mirror")}}, |
| | {{"mi", QObject::tr("mi", "modify - mirror")}}, |
| | RS2::ActionModifyMirror |
| | }, |
| | |
| | { |
| | {{"modmovrot", QObject::tr("modmovrot", "modify - move rotate")}}, |
| | {{"mr", QObject::tr("mr", "modify - move rotate")}}, |
| | RS2::ActionModifyMoveRotate |
| | }, |
| | |
| | { |
| | {{"mod2rot", QObject::tr("mod2rot", "modify - rotate2")}}, |
| | {{"r2", QObject::tr("r2", "modify - rotate2")}}, |
| | RS2::ActionModifyRotate2 |
| | }, |
| | |
| | { |
| | {{"modrevert", QObject::tr("modrevert", "modify - revert direction")}}, |
| | {{"md", QObject::tr("md", "modify - revert direction")}, |
| | {"rev", QObject::tr("rev", "modify - revert direction")}}, |
| | RS2::ActionModifyRevertDirection |
| | }, |
| | |
| | { |
| | {{"modtrim", QObject::tr("modtrim", "modify - trim (extend)")}}, |
| | {{"tm", QObject::tr("tm", "modify - trim (extend)")}}, |
| | RS2::ActionModifyTrim |
| | }, |
| | |
| | { |
| | {{"modtrim2", QObject::tr("modtrim2", "modify - multi trim (extend)")}}, |
| | {{"t2", QObject::tr("t2", "modify - multi trim (extend)")}, |
| | {"tm2", QObject::tr("tm2", "modify - multi trim (extend)")}}, |
| | RS2::ActionModifyTrim2 |
| | }, |
| | |
| | { |
| | {{"modlengthen", QObject::tr("modlengthen", "modify - lengthen")}}, |
| | {{"le", QObject::tr("le", "modify - lengthen")}}, |
| | RS2::ActionModifyTrimAmount |
| | }, |
| | |
| | { |
| | {{"modoffset", QObject::tr("modoffset", "modify - offset")}, |
| | {"offset", QObject::tr("offset", "modify - offset")} |
| | }, |
| | {{"mo", QObject::tr("mo", "modify - offset")}, |
| | {"moff", QObject::tr("moff", "modify - offset")}}, |
| | RS2::ActionModifyOffset |
| | }, |
| | |
| | { |
| | {{"modbevel", QObject::tr("modbevel", "modify - bevel")}}, |
| | {{"bev", QObject::tr("bev", "modify - bevel")}, |
| | {"ch", QObject::tr("ch", "modify - bevel")}}, |
| | RS2::ActionModifyBevel |
| | }, |
| | |
| | { |
| | {{"modfillet", QObject::tr("modfillet", "modify - fillet")}}, |
| | {{"fi", QObject::tr("fi", "modify - fillet")}, |
| | {"fillet", QObject::tr("fillet", "modify - fillet")}, |
| | {"bevel", QObject::tr("bevel", "modify - fillet")}}, |
| | RS2::ActionModifyRound |
| | }, |
| | |
| | { |
| | {{"moddivide", QObject::tr("moddivide", "modify - divide (cut)")}, |
| | {"cut", QObject::tr("cut", "modify - divide (cut)")}}, |
| | {{"div", QObject::tr("div", "modify - divide (cut)")}, |
| | {"di", QObject::tr("di", "modify - divide (cut)")}}, |
| | RS2::ActionModifyCut |
| | }, |
| | |
| | { |
| | {{"modstretch", QObject::tr("modstretch", "modify - stretch")}}, |
| | {{"ss", QObject::tr("ss", "modify - stretch")}}, |
| | RS2::ActionModifyStretch |
| | }, |
| | |
| | { |
| | {{"modproperties", QObject::tr("modproperties", "modify properties")}}, |
| | {{"prop", QObject::tr("prop", "modify properties")}, |
| | {"mp", QObject::tr("mp", "modify properties")}}, |
| | RS2::ActionModifyEntity |
| | }, |
| | |
| | { |
| | {{"modattr", QObject::tr("modattr", "modify attribute")}}, |
| | {{"attr", QObject::tr("attr", "modify attribute")}, |
| | {"ma", QObject::tr("ma", "modify attribute")}}, |
| | RS2::ActionModifyAttributes |
| | }, |
| | |
| | { |
| | {{"modexpltext", QObject::tr("modexpltext", "explode text strings")}}, |
| | {{"xt", QObject::tr("xt", "explode text strings")}}, |
| | RS2::ActionModifyExplodeText |
| | }, |
| | |
| | { |
| | {{"modexplode", QObject::tr("modexplode", "explode block/polyline into entities")}}, |
| | {{"xp", QObject::tr("xp", "explode block/polyline into entities")}}, |
| | RS2::ActionBlocksExplode |
| | }, |
| | |
| | { |
| | {{"moddelete", QObject::tr("moddelete", "modify - delete (erase)")}}, |
| | {{"er", QObject::tr("er", "modify - delete (erase)")}, |
| | {"del", QObject::tr("del", "modify - delete (erase)")}}, |
| | RS2::ActionModifyDelete |
| | }, |
| |
|
| | |
| | |
| | { |
| | {{"infodistance", QObject::tr("infodistance", "distance point to point")}}, |
| | {{"id", QObject::tr("id", "distance point to point")}, |
| | {"dist", QObject::tr("dist", "distance point to point")}, |
| | {"dpp", QObject::tr("dpp", "distance point to point")}}, |
| | RS2::ActionInfoDistPoint2Point |
| | }, |
| | |
| | { |
| | {{"infodistep", QObject::tr("infodistep", "distance entity to point")}}, |
| | {{"ii", QObject::tr("ii", "distance entity to point")}, |
| | {"dep", QObject::tr("dep", "distance entity to point")}}, |
| | RS2::ActionInfoDistEntity2Point |
| | }, |
| | |
| | { |
| | {{"infoangle", QObject::tr("infoangle", "measure angle")}}, |
| | {{"ia", QObject::tr("ia", "measure angle")}, |
| | {"ang", QObject::tr("ang", "measure angle")}}, |
| | RS2::ActionInfoAngle |
| | }, |
| | |
| | { |
| | {{"infoarea", QObject::tr("infoarea", "measure area")}}, |
| | {{"aa", QObject::tr("aa", "measure area")}}, |
| | RS2::ActionInfoArea |
| | }, |
| |
|
| | |
| | |
| | { |
| | {{"mtext", QObject::tr("mtext", "draw mtext")}}, |
| | {{"mt", QObject::tr("mt", "draw mtext")}, |
| | {"mtxt", QObject::tr("mtxt", "draw mtext")}}, |
| | RS2::ActionDrawMText |
| | }, |
| | |
| | { |
| | {{"text", QObject::tr("text", "draw text")}}, |
| | {{"tx", QObject::tr("tx", "draw text")}, |
| | {"txt", QObject::tr("txt", "draw text")}}, |
| | RS2::ActionDrawText |
| | }, |
| | |
| | { |
| | {{"hatch", QObject::tr("hatch", "draw hatch")}}, |
| | {{"ha", QObject::tr("ha", "draw hatch")}}, |
| | RS2::ActionDrawHatch |
| | }, |
| | |
| | { |
| | {{"point", QObject::tr("point", "draw point")}}, |
| | {{"po", QObject::tr("po", "draw point")}}, |
| | RS2::ActionDrawPoint |
| | }, |
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | { |
| | {{"snapfree", QObject::tr("snapfree", "snap - free")}}, |
| | {{"so", QObject::tr("so", "snap - free")}, |
| | {"os", QObject::tr("os", "snap - free")}}, |
| | RS2::ActionSnapFree |
| | }, |
| | |
| | { |
| | {{"snapcenter", QObject::tr("snapcenter", "snap - center")}}, |
| | {{"sc", QObject::tr("sc", "snap - center")}}, |
| | RS2::ActionSnapCenter |
| | }, |
| | |
| | { |
| | {{"snapdist", QObject::tr("snapdist", "snap - distance to endpoints")}}, |
| | {{"sd", QObject::tr("sd", "snap - distance to endpoints")}}, |
| | RS2::ActionSnapDist |
| | }, |
| | |
| | { |
| | {{"snapend", QObject::tr("snapend", "snap - end points")}}, |
| | {{"se", QObject::tr("se", "snap - end points")}}, |
| | RS2::ActionSnapEndpoint |
| | }, |
| | |
| | { |
| | {{"snapgrid", QObject::tr("snapgrid", "snap - grid")}}, |
| | {{"sg", QObject::tr("sg", "snap - grid")}}, |
| | RS2::ActionSnapGrid |
| | }, |
| | |
| | { |
| | {{"snapintersection", QObject::tr("snapintersection", "snap - intersection")}}, |
| | {{"si", QObject::tr("si", "snap - intersection")}}, |
| | RS2::ActionSnapIntersection |
| | }, |
| | |
| | { |
| | {{"snapmiddle", QObject::tr("snapmiddle", "snap - middle points")}}, |
| | {{"sm", QObject::tr("sm", "snap - middle points")}}, |
| | RS2::ActionSnapMiddle |
| | }, |
| | |
| | { |
| | {{"snaponentity", QObject::tr("snaponentity", "snap - on entity")}}, |
| | {{"sn", QObject::tr("sn", "snap - on entity")}, |
| | {"np", QObject::tr("np", "snap - on entity")}}, |
| | RS2::ActionSnapOnEntity |
| | }, |
| |
|
| | |
| | { |
| | |
| | {{"snapmiddlemanual", QObject::tr("snapmiddlemanual", "snap middle manual")}}, |
| | {{"snapmanual", QObject::tr("snapmanual", "snap middle manual")}, |
| | {"smm", QObject::tr("smm", "snap middle manual")}}, |
| |
|
| | RS2::ActionSnapMiddleManual |
| | }, |
| |
|
| | |
| | { |
| | {{"setrelativezero", QObject::tr("setrelativezero", "set relative zero position")}}, |
| | {{"rz", QObject::tr("rz", "set relative zero position")}}, |
| | RS2::ActionSetRelativeZero |
| | }, |
| | |
| | { |
| | {{"restrictnothing", QObject::tr("restrictnothing", "restrict - nothing")}}, |
| | {{"rn", QObject::tr("rn", "restrict - nothing")}}, |
| | RS2::ActionRestrictNothing |
| | }, |
| | |
| | { |
| | {{"restrictorthogonal", QObject::tr("restrictorthogonal", "restrict - orthogonal")}}, |
| | {{"rr", QObject::tr("rr", "restrict - orthogonal")}}, |
| | RS2::ActionRestrictOrthogonal |
| | }, |
| | |
| | { |
| | {{"restricthorizontal", QObject::tr("restricthorizontal", "restrict - horizontal")}}, |
| | {{"rh", QObject::tr("rh", "restrict - horizontal")}}, |
| | RS2::ActionRestrictHorizontal |
| | }, |
| | |
| | { |
| | {{"restrictvertical", QObject::tr("restrictvertical", "restrict - vertical")}}, |
| | {{"rv", QObject::tr("rv", "restrict - vertical")}}, |
| | RS2::ActionRestrictVertical |
| | }, |
| |
|
| | |
| | |
| | |
| | { |
| | {{"kill", QObject::tr("kill", "kill all actions")}}, |
| | {{"ki", QObject::tr("ki", "kill all actions")}, |
| | {"k", QObject::tr("k", "kill all actions")}}, |
| | RS2::ActionEditKillAllActions |
| | }, |
| | |
| | { |
| | {{"undo", QObject::tr("undo", "undo cycle")}}, |
| | {{"un", QObject::tr("un", "undo cycle")}, |
| | {"u", QObject::tr("u", "undo cycle")}}, |
| | RS2::ActionEditUndo |
| | }, |
| | |
| | { |
| | {{"redo", QObject::tr("redo", "redo cycle")}}, |
| | {{"rd", QObject::tr("rd", "redo cycle")}, |
| | {"r", QObject::tr("r", "redo cycle")}}, |
| | RS2::ActionEditRedo |
| | }, |
| |
|
| | |
| | |
| | { |
| | {{"drawpref", QObject::tr("drawpref", "drawing preferences")}}, |
| | {{"dp", QObject::tr("dp", "drawing preferences")}}, |
| | RS2::ActionOptionsDrawing |
| | }, |
| |
|
| | |
| | |
| | { |
| | {{"regen", QObject::tr("regen", "zoom - redraw")}, |
| | {"redraw", QObject::tr("redraw", "zoom - redraw")}}, |
| | {{"rg", QObject::tr("rg", "zoom - redraw")}, |
| | {"zr", QObject::tr("zr", "zoom - redraw")}}, |
| | RS2::ActionZoomRedraw |
| | }, |
| | |
| | { |
| | {{"zoomin", QObject::tr("zoomin", "zoom - in")}}, |
| | {{"zi", QObject::tr("zi", "zoom - in")}}, |
| | RS2::ActionZoomIn |
| | }, |
| | |
| | { |
| | {{"zoomout", QObject::tr("zoomout", "zoom - out")}}, |
| | {{"zo", QObject::tr("zo", "zoom - out")}}, |
| | RS2::ActionZoomOut |
| | }, |
| | |
| | { |
| | {{"zoomauto", QObject::tr("zoomauto", "zoom - auto")}}, |
| | {{"za", QObject::tr("za", "zoom - auto")}}, |
| | RS2::ActionZoomAuto |
| | }, |
| | |
| | { |
| | {{"zoomprevious", QObject::tr("zoomprevious", "zoom - previous")}}, |
| | {{"zv", QObject::tr("zv", "zoom - previous")}}, |
| | RS2::ActionZoomPrevious |
| | }, |
| | |
| | { |
| | {{"zoomwindow", QObject::tr("zoomwindow", "zoom - window")}}, |
| | {{"zw", QObject::tr("zw", "zoom - window")}}, |
| | RS2::ActionZoomWindow |
| | }, |
| | |
| | { |
| | {{"zoompan", QObject::tr("zoompan", "zoom - pan")}}, |
| | {{"zp", QObject::tr("zp", "zoom - pan")}}, |
| | RS2::ActionZoomPan |
| | } |
| | }; |
| |
|
| | |
| | std::vector<std::pair<QString, QString>> g_transList={ |
| | {"angle",QObject::tr("angle")}, |
| | {"angle1",QObject::tr("angle1")}, |
| | {"angle2",QObject::tr("angle2")}, |
| | {"dpi",QObject::tr("dpi")}, |
| | {"close",QObject::tr("close")}, |
| | {"chordlen",QObject::tr("chordlen")}, |
| | {"columns",QObject::tr("columns")}, |
| | {"columnspacing",QObject::tr("columnspacing")}, |
| | {"equation",QObject::tr("equation")}, |
| | {"factor",QObject::tr("factor")}, |
| | {"length",QObject::tr("length")}, |
| | {"length1",QObject::tr("length1", "bevel/fillet length1")}, |
| | {"length2",QObject::tr("length2", "bevel/fillet length2")}, |
| | {"number",QObject::tr("number")}, |
| | {"radius",QObject::tr("radius")}, |
| | {"rows",QObject::tr("rows")}, |
| | {"rowspacing",QObject::tr("rowspacing")}, |
| | {"through",QObject::tr("through")}, |
| | {"trim",QObject::tr("trim")}, |
| |
|
| | |
| | {"x",QObject::tr("x")}, |
| | {"y",QObject::tr("y")}, |
| | {"p",QObject::tr("p")}, |
| | {"anglerel",QObject::tr("anglerel")}, |
| | {"start",QObject::tr("start")}, |
| |
|
| | |
| | {"offset",QObject::tr("offset")}, |
| | {"linesnap",QObject::tr("linesnap")}, |
| | {"ticksnap",QObject::tr("ticksnap")}, |
| |
|
| | |
| | {"width",QObject::tr("width")}, |
| | {"height",QObject::tr("height")}, |
| | {"pos",QObject::tr("pos")}, |
| | {"size",QObject::tr("size")}, |
| | {"bevels",QObject::tr("bevels")}, |
| | {"nopoly",QObject::tr("nopoly")}, |
| | {"usepoly",QObject::tr("usepoly")}, |
| | {"corners",QObject::tr("corners")}, |
| | {"str",QObject::tr("str")}, |
| | {"round",QObject::tr("round")}, |
| | {"bevels",QObject::tr("bevels")}, |
| | {"snap1",QObject::tr("snap1")}, |
| | {"topl",QObject::tr("topl")}, |
| | {"top",QObject::tr("top")}, |
| | {"topr",QObject::tr("topr")}, |
| | {"left",QObject::tr("left")}, |
| | {"middle",QObject::tr("middle")}, |
| | {"right",QObject::tr("right")}, |
| | {"bottoml",QObject::tr("bottoml")}, |
| | {"bottom",QObject::tr("bottom")}, |
| | {"bottomr",QObject::tr("bottomr")}, |
| | {"snapcorner",QObject::tr("snapcorner")}, |
| | {"snapshift",QObject::tr("snapshift")}, |
| | {"sizein",QObject::tr("sizein")}, |
| | {"sizeout",QObject::tr("sizeout")}, |
| | {"hor",QObject::tr("hor")}, |
| | {"vert",QObject::tr("vert")}, |
| |
|
| | |
| | {"snap2",QObject::tr("snap2")}, |
| | {"corner",QObject::tr("corner")}, |
| | {"mid-vert",QObject::tr("mid-vert")}, |
| | {"mid-hor",QObject::tr("mid-hor")}, |
| | |
| | {"quad",QObject::tr("quad")}, |
| | {"noquad",QObject::tr("noquad")}, |
| | {"angle_inner",QObject::tr("angle_inner")}, |
| |
|
| | |
| | {"edges",QObject::tr("edges")}, |
| | {"edge-none",QObject::tr("edge-none")}, |
| | {"edge-both",QObject::tr("edge-both")}, |
| | {"edge-start",QObject::tr("edge-start")}, |
| | {"edge-end",QObject::tr("edge-end")}, |
| | {"end",QObject::tr("end")}, |
| | {"both",QObject::tr("both")}, |
| | {"none",QObject::tr("none")}, |
| | {"fit",QObject::tr("fit")}, |
| | {"nofit",QObject::tr("nofit")}, |
| | {"dist_fixed",QObject::tr("dist_fixed")}, |
| | {"dist_flex",QObject::tr("dist_flex")}, |
| | {"distance",QObject::tr("distance")}, |
| |
|
| |
|
| | |
| | {"sym",QObject::tr("sym")}, |
| | {"nosym",QObject::tr("nosym")}, |
| | |
| |
|
| | |
| | |
| | |
| | {QObject::tr("angle"),"angle"}, |
| | {QObject::tr("angle1"),"angle1"}, |
| | {QObject::tr("angle2"),"angle2"}, |
| | {QObject::tr("ang", "angle"),"angle"}, |
| | {QObject::tr("an", "angle"),"angle"}, |
| |
|
| | {QObject::tr("center"),"center"}, |
| | {QObject::tr("cen", "center"),"center"}, |
| | {QObject::tr("ce", "center"),"center"}, |
| |
|
| | {QObject::tr("chordlen"),"chordlen"}, |
| | |
| | {QObject::tr("cl", "chordlen"),"chordlen"}, |
| |
|
| | {QObject::tr("close"),"close"}, |
| | {QObject::tr("c", "close"),"close"}, |
| |
|
| | {QObject::tr("columns"),"columns"}, |
| | {QObject::tr("cols", "columns"),"columns"}, |
| | {QObject::tr("co", "columns"),"columns"}, |
| |
|
| | {QObject::tr("columnspacing", "columnspacing for inserts"),"columnspacing"}, |
| | {QObject::tr("colspacing", "columnspacing for inserts"),"columnspacing"}, |
| | {QObject::tr("cs", "columnspacing for inserts"),"columnspacing"}, |
| |
|
| | {QObject::tr("factor"),"factor"}, |
| | {QObject::tr("fact", "factor"),"factor"}, |
| | {QObject::tr("f", "factor"),"factor"}, |
| |
|
| | {QObject::tr("equation"),"equation"}, |
| | {QObject::tr("eqn", "equation"),"equation"}, |
| | {QObject::tr("eq", "equation"),"equation"}, |
| |
|
| | {QObject::tr("help"),"help"}, |
| | {QObject::tr("?", "help"),"help"}, |
| |
|
| | {QObject::tr("length","length"),"length"}, |
| | {QObject::tr("len","length"),"length"}, |
| | {QObject::tr("l","length"),"length"}, |
| |
|
| | {QObject::tr("length1","length1"),"length1"}, |
| | {QObject::tr("len1","length1"),"length1"}, |
| | {QObject::tr("l1","length1"),"length1"}, |
| |
|
| | {QObject::tr("length2","length2"),"length2"}, |
| | {QObject::tr("len2","length2"),"length2"}, |
| | {QObject::tr("l2","length2"),"length2"}, |
| |
|
| | {QObject::tr("number","number"),"number"}, |
| | {QObject::tr("num","number"),"number"}, |
| | {QObject::tr("n","number"),"number"}, |
| |
|
| | {QObject::tr("radius"),"radius"}, |
| | {QObject::tr("ra","radius"),"radius"}, |
| |
|
| | {QObject::tr("reversed","reversed"),"reversed"}, |
| | {QObject::tr("rev","reversed"),"reversed"}, |
| | {QObject::tr("rev","reversed"),"reversed"}, |
| |
|
| | {QObject::tr("row", "row"),"row"}, |
| |
|
| | {QObject::tr("rowspacing", "rowspacing for inserts"),"rowspacing"}, |
| | {QObject::tr("rs","rowspacing for inserts"),"rowspacing"}, |
| |
|
| | {QObject::tr("text"),"text"}, |
| | {QObject::tr("t","text"),"text"}, |
| |
|
| | {QObject::tr("through"),"through"}, |
| | {QObject::tr("t","through"),"through"}, |
| |
|
| | {QObject::tr("undo"),"undo cycle"}, |
| | {QObject::tr("u","undo cycle"),"undo"}, |
| |
|
| | {QObject::tr("redo"),"redo cycle"}, |
| | {QObject::tr("r","redo redo cycle"),"redo"}, |
| |
|
| | {QObject::tr("back"),"back"}, |
| | {QObject::tr("b","back"),"back"}, |
| | |
| | {QObject::tr("bw"), "blackwhite"}, |
| | {QObject::tr("blackwhite"), "blackwhite"}, |
| | {QObject::tr("color"), "color"}, |
| | {QObject::tr("paperoffset"),"paperoffset"}, |
| | {QObject::tr("graphoffset"),"graphoffset"} |
| |
|
| | |
| | }; |
| |
|