View Javadoc

1   /**********************************************
2    * Copyright (C) 2009 Lukas Laag
3    * This file is part of Vectomatic.
4    * 
5    * Vectomatic 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   * Vectomatic 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 Vectomatic.  If not, see http://www.gnu.org/licenses/
17   **********************************************/
18  package org.vectomatic.client;
19  
20  import com.google.gwt.i18n.client.Constants;
21  
22  /**
23   * GWT NLS constants
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