01: /*
02: * Copyright (C) 2005 Jeff Tassin
03: *
04: * This library is free software; you can redistribute it and/or
05: * modify it under the terms of the GNU Lesser General Public
06: * License as published by the Free Software Foundation; either
07: * version 2.1 of the License, or (at your option) any later version.
08: *
09: * This library is distributed in the hope that it will be useful,
10: * but WITHOUT ANY WARRANTY; without even the implied warranty of
11: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12: * Lesser General Public License for more details.
13: *
14: * You should have received a copy of the GNU Lesser General Public
15: * License along with this library; if not, write to the Free Software
16: * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17: */
18:
19: package com.jeta.swingbuilder.gui.main;
20:
21: /**
22: *
23: * @author Jeff Tassin
24: */
25: public class FormEditorNames {
26: public static final String ID_INSERT_ROW_ABOVE = "form.editor.insert.row.above";
27: public static final String ID_INSERT_ROW_BELOW = "form.editor.insert.row.below";
28: public static final String ID_INSERT_COLUMN_LEFT = "form.editor.insert.column.left";
29: public static final String ID_INSERT_COLUMN_RIGHT = "form.editor.insert.column.right";
30:
31: public static final String ID_SET_AS_COLUMN_SEPARATOR = "form.editor.make.column.separator";
32: public static final String ID_SET_AS_BIG_COLUMN_SEPARATOR = "form.editor.make.big.column.separator";
33: public static final String ID_SET_AS_ROW_SEPARATOR = "form.editor.make.row.separator";
34: public static final String ID_SET_AS_BIG_ROW_SEPARATOR = "form.editor.make.big.row.separator";
35:
36: public static final String ID_EDIT_ROW_SPEC = "form.editor.edit.row.spec";
37: public static final String ID_EDIT_COLUMN_SPEC = "form.editor.edit.column.spec";
38: public static final String ID_EDIT_CELL_CONSTRAINTS = "form.editor.edit.cell.constraints";
39:
40: public static final String ID_COLUMN_PREFERRED_SIZE = "column.preferred.size";
41: public static final String ID_COLUMN_INCREASE_SPAN = "column.increase.span";
42: public static final String ID_COLUMN_DECREASE_SPAN = "column.decrease.span";
43: public static final String ID_COLUMN_RESIZE_GROW = "column.resize.grow";
44: public static final String ID_COLUMN_RESIZE_NONE = "column.resize.none";
45:
46: public static final String ID_ROW_PREFERRED_SIZE = "row.preferred.size";
47: public static final String ID_ROW_INCREASE_SPAN = "row.increase.span";
48: public static final String ID_ROW_DECREASE_SPAN = "row.decrease.span";
49: public static final String ID_ROW_RESIZE_GROW = "row.resize.grow";
50: public static final String ID_ROW_RESIZE_NONE = "row.resize.none";
51:
52: public static final String ID_DELETE_COMPONENT = "form.editor.delete.component";
53: public static final String ID_DELETE_ROW = "form.editor.delete.row";
54: public static final String ID_DELETE_COLUMN = "form.editor.delete.column";
55:
56: public static final String ID_PASTE_AS_EMBEDDED = "form.paste.as.embedded.";
57: public static final String ID_PASTE_SPECIAL = "form.paste.special";
58: public static final String ID_CANCEL_DRAG = "form.cancel.drag";
59:
60: public static final String ID_NAVIGATE_LEFT = "form.navigate.left";
61: public static final String ID_NAVIGATE_RIGHT = "form.navigate.right";
62: public static final String ID_NAVIGATE_UP = "form.navigate.up";
63: public static final String ID_NAVIGATE_DOWN = "form.navigate.down";
64:
65: public static final String ID_EDIT_COMPONENT_PROPERTIES = "edit.comp.properties";
66: public static final String ID_EDIT_COMPONENT_NAME = "edit.comp.name";
67: public static final String ID_SHOW_GRID = "form.view.grid";
68: public static final String ID_EXPORT_COMPONENT_NAMES = "form.export.component.names";
69:
70: public static final String ID_TRIM_COLUMNS = "trim.columns";
71: public static final String ID_TRIM_ROWS = "trim.rows";
72: }
|