src/actions.h

changeset 667
31540c1f22ea
parent 666
c595cfb4791c
parent 626
f3c01a033e9e
child 668
6a05c4969074
equal deleted inserted replaced
666:c595cfb4791c 667:31540c1f22ea
1 /*
2 * LDForge: LDraw parts authoring CAD
3 * Copyright (C) 2013 Santeri Piippo
4 *
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */
18
19 act (New)
20 act (NewFile)
21 act (Open)
22 act (DownloadFrom)
23 act (Save)
24 act (SaveAs)
25 act (SaveAll)
26 act (Close)
27 act (CloseAll)
28 act (InsertFrom)
29 act (ExportTo)
30 act (Settings)
31 act (SetLDrawPath)
32 act (ScanPrimitives)
33 act (Exit)
34 act (ResetView)
35 act (Axes)
36 act (Wireframe)
37 act (BFCView)
38 act (SetOverlay)
39 act (ClearOverlay)
40 act (Screenshot)
41 act (InsertRaw)
42 act (NewSubfile)
43 act (NewLine)
44 act (NewTriangle)
45 act (NewQuad)
46 act (NewCLine)
47 act (NewComment)
48 act (NewBFC)
49 act (NewVertex)
50 act (Undo)
51 act (Redo)
52 act (Cut)
53 act (Copy)
54 act (Paste)
55 act (Delete)
56 act (SelectAll)
57 act (SelectByColor)
58 act (SelectByType)
59 act (ModeDraw)
60 act (ModeSelect)
61 act (ModeCircle)
62 act (SetDrawDepth)
63 act (SetColor)
64 act (Autocolor)
65 act (Uncolorize)
66 act (Inline)
67 act (InlineDeep)
68 act (Invert)
69 act (MakePrimitive)
70 act (SplitQuads)
71 act (EditRaw)
72 act (Borders)
73 act (CornerVerts)
74 act (RoundCoordinates)
75 act (VisibilityHide)
76 act (VisibilityReveal)
77 act (VisibilityToggle)
78 act (ReplaceCoords)
79 act (Flip)
80 act (Demote)
81 act (Ytruder)
82 act (Rectifier)
83 act (Intersector)
84 act (Isecalc)
85 act (Coverer)
86 act (Edger2)
87 act (Help)
88 act (About)
89 act (AboutQt)
90 act (GridCoarse)
91 act (GridMedium)
92 act (GridFine)
93 act (Edit)
94 act (MoveUp)
95 act (MoveDown)
96 act (MoveXNeg)
97 act (MoveXPos)
98 act (MoveYNeg)
99 act (MoveYPos)
100 act (MoveZNeg)
101 act (MoveZPos)
102 act (RotateXNeg)
103 act (RotateXPos)
104 act (RotateYNeg)
105 act (RotateYPos)
106 act (RotateZNeg)
107 act (RotateZPos)
108 act (RotationPoint)
109 act (AddHistoryLine)
110 act (JumpTo)
111
112 #undef act

mercurial