1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18 package org.vectomatic.client;
19
20 import com.google.gwt.i18n.client.Constants;
21
22
23
24
25 public interface UIConstants extends Constants {
26 String windowTitle();
27
28 String selectCommand();
29 String translateShapeCommand();
30 String scaleShapeCommand();
31 String rotateShapeCommand();
32 String newRectCommand();
33 String newEllipseCommand();
34 String newPolylineCommand();
35 String editPolylineCommand();
36 String newPathCommand();
37 String editPathCommand();
38 String insertVertexInPathCommand();
39 String removeVertexFromPathCommand();
40 String makeSegmentALineCommand();
41 String makeSegmentASplineCommand();
42 String cutPathAtSegmentCommand();
43 String breakPathAtVertexCommand();
44 String joinVertexWithSegmentCommand();
45 String joinVertexCommand();
46 String associateTangentsCommand();
47 String dissociateTangentsCommand();
48 String makeTangentsSymetricCommand();
49 String endPathEdition();
50 String undoCommand();
51 String redoCommand();
52 String groupCommand();
53 String ungroupCommand();
54 String saveCommand();
55 String resetViewCommand();
56 String copyCommand();
57 String cutCommand();
58 String pasteCommand();
59 String deleteShapeCommand();
60 String setAttributeCommand();
61 String bringToFrontCommand();
62 String sendToBackCommand();
63 String bringForwardCommand();
64 String sendBackwardCommand();
65 String resizeDrawingCommand();
66 String exportSVG11Command();
67 String exportSVG12Command();
68 String moveVertexCommand();
69 String deleteVertexCommand();
70 String helpCommand();
71 String aboutCommand();
72
73 String rectangleBaseName();
74 String ellipseBaseName();
75 String polylineBaseName();
76 String shapeGroupBaseName();
77 String editMenu();
78 String modifyMenu();
79 String helpMenu();
80
81 String colorEditorPanel();
82 String okButton();
83 String cancelButton();
84 String gradientsTab();
85 String valuesTab();
86
87 String paletteEditorPanel();
88 String newPaletteButton();
89 String clonePaletteButton();
90 String deletePaletteButton();
91 String editColorButton();
92 String newColorButton();
93 String deleteColorButton();
94 String closeButton();
95 String paletteNameLabel();
96 String paletteBaseName();
97 String copyOf();
98
99 String editPaletteButton();
100 String pickColorButton();
101 String transparencyLabel();
102
103 String lineLabel();
104 String fillLabel();
105
106 String plainItem();
107 String gradientItem();
108 String patternItem();
109 String noneItem();
110
111 String lineStyleAttribute();
112 String lineOpacityAttribute();
113 String linePatternAttribute();
114 String lineCapAttribute();
115 String lineWidthAttribute();
116 String fillStyleAttribute();
117 String fillOpacityAttribute();
118
119 String warning();
120 String error();
121
122 String lineWidthEditor();
123 String editLineWidth();
124
125 String dimensionsPanel();
126 String widthLabel();
127 String heightLabel();
128
129 String aboutPanel();
130 String aboutLabel1();
131 String aboutLabel2();
132 String aboutLabel3();
133 String aboutLabel4();
134 String aboutLabel5();
135 }
136