001: /*
002: The contents of this file are subject to the Common Public Attribution License
003: Version 1.0 (the "License"); you may not use this file except in compliance with
004: the License. You may obtain a copy of the License at
005: http://www.projity.com/license . The License is based on the Mozilla Public
006: License Version 1.1 but Sections 14 and 15 have been added to cover use of
007: software over a computer network and provide for limited attribution for the
008: Original Developer. In addition, Exhibit A has been modified to be consistent
009: with Exhibit B.
010:
011: Software distributed under the License is distributed on an "AS IS" basis,
012: WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the
013: specific language governing rights and limitations under the License. The
014: Original Code is OpenProj. The Original Developer is the Initial Developer and
015: is Projity, Inc. All portions of the code written by Projity are Copyright (c)
016: 2006, 2007. All Rights Reserved. Contributors Projity, Inc.
017:
018: Alternatively, the contents of this file may be used under the terms of the
019: Projity End-User License Agreeement (the Projity License), in which case the
020: provisions of the Projity License are applicable instead of those above. If you
021: wish to allow use of your version of this file only under the terms of the
022: Projity License and not to allow others to use your version of this file under
023: the CPAL, indicate your decision by deleting the provisions above and replace
024: them with the notice and other provisions required by the Projity License. If
025: you do not delete the provisions above, a recipient may use your version of this
026: file under either the CPAL or the Projity License.
027:
028: [NOTE: The text of this license may differ slightly from the text of the notices
029: in Exhibits A and B of the license at http://www.projity.com/license. You should
030: use the latest text at http://www.projity.com/license for your modifications.
031: You may not remove this license text from the source files.]
032:
033: Attribution Information: Attribution Copyright Notice: Copyright � 2006, 2007
034: Projity, Inc. Attribution Phrase (not exceeding 10 words): Powered by OpenProj,
035: an open source solution from Projity. Attribution URL: http://www.projity.com
036: Graphic Image as provided in the Covered Code as file: openproj_logo.png with
037: alternatives listed on http://www.projity.com/logo
038:
039: Display of Attribution Information is required in Larger Works which are defined
040: in the CPAL as a work which combines Covered Code or portions thereof with code
041: not governed by the terms of the CPAL. However, in addition to the other notice
042: obligations, all copies of the Covered Code in Executable and Source Code form
043: distributed must, as a form of attribution of the original author, include on
044: each user interface screen the "OpenProj" logo visible to all users. The
045: OpenProj logo should be located horizontally aligned with the menu bar and left
046: justified on the top left of the screen adjacent to the File menu. The logo
047: must be at least 100 x 25 pixels. When users click on the "OpenProj" logo it
048: must direct them back to http://www.projity.com.
049: */
050: package com.projity.menu;
051:
052: public interface MenuActionConstants {
053: public static final String ACTION_NEW_PROJECT = "NewProject";
054: public static final String ACTION_OPEN_PROJECT = "OpenProject";
055: public static final String ACTION_IMPORT_MSPROJECT = "ImportMSProject";
056: public static final String ACTION_EXPORT_MSPROJECT = "ExportMSProject";
057: public static final String ACTION_CLOSE_PROJECT = "CloseProject";
058: public static final String ACTION_SAVE_PROJECT = "SaveProject";
059: public static final String ACTION_SAVE_PROJECT_AS = "SaveProjectAs";
060: public static final String ACTION_PRINT = "Print";
061: public static final String ACTION_PRINT_PREVIEW = "PrintPreview";
062: public static final String ACTION_EXIT = "Exit";
063:
064: public static final String ACTION_UNDO = "Undo";
065: public static final String ACTION_REDO = "Redo";
066: public static final String ACTION_CUT = "Cut";
067: public static final String ACTION_COPY = "Copy";
068: public static final String ACTION_PASTE = "Paste";
069:
070: public static final String ACTION_FILL_DOWN = "FillDown";
071: public static final String ACTION_FILL_RIGHT = "FillRight";
072: public static final String ACTION_FILL_UP = "FillUp";
073: public static final String ACTION_FILL_LEFT = "FillLeft";
074:
075: public static final String ACTION_CLEAR_ALL = "ClearAll";
076: public static final String ACTION_CLEAR_FORMATS = "ClearFormats";
077: public static final String ACTION_CLEAR_CONTENTS = "ClearContents";
078: public static final String ACTION_CLEAR_NOTES = "ClearNotes";
079: public static final String ACTION_CLEAR_HYPERLINKS = "ClearHyperlinks";
080: public static final String ACTION_CLEAR_ENTIRE = "ClearEntire";
081: public static final String ACTION_DELETE = "Delete";
082:
083: public static final String ACTION_LINK = "Link";
084: public static final String ACTION_UNLINK = "Unlink";
085: public static final String ACTION_SPLIT = "Split";
086:
087: public static final String ACTION_FIND = "Find";
088: public static final String ACTION_REPLACE = "Replace";
089: public static final String ACTION_GOTO = "GoTo";
090:
091: public static final String ACTION_GANTT = "Gantt";
092: public static final String ACTION_TRACKING_GANTT = "TrackingGantt";
093: public static final String ACTION_TASK_USAGE_DETAIL = "TaskUsageDetail";
094: public static final String ACTION_RESOURCE_USAGE_DETAIL = "ResourceUsageDetail";
095: public static final String ACTION_NETWORK = "Network";
096: public static final String ACTION_WBS = "WBS";
097: public static final String ACTION_RBS = "RBS";
098: public static final String ACTION_REPORT = "Report";
099: public static final String ACTION_RESOURCES = "Resources";
100: public static final String ACTION_PROJECTS = "Projects";
101: public static final String ACTION_HISTOGRAM = "Histogram";
102: public static final String ACTION_CHARTS = "Charts";
103: public static final String ACTION_TASK_USAGE = "TaskUsage";
104: public static final String ACTION_RESOURCE_USAGE = "ResourceUsage";
105: public static final String ACTION_NO_SUB_WINDOW = "NoSubWindow";
106:
107: public static final String ACTION_ZOOM_IN = "ZoomIn";
108: public static final String ACTION_ZOOM_OUT = "ZoomOut";
109: public static final String ACTION_SCROLL_TO_TASK = "ScrollToTask";
110:
111: public static final String ACTION_INSERT_TASK = "InsertTask";
112: public static final String ACTION_INSERT_RESOURCE = "InsertResource";
113: public static final String ACTION_INSERT_RECURRING = "InsertRecurring";
114: public static final String ACTION_INSERT_PROJECT = "InsertProject";
115: public static final String ACTION_INSERT_COLUMN = "InsertColumn";
116: public static final String ACTION_INSERT_HYPERLINK = "InsertHyperlink";
117: public static final String ACTION_NEW = ACTION_INSERT_TASK;
118:
119: public static final String ACTION_FONT = "Font";
120: public static final String ACTION_BAR = "Bar";
121: public static final String ACTION_TIMESCALE = "Timescale";
122: public static final String ACTION_GRIDLINES = "Gridlines";
123: public static final String ACTION_TEXT_STYLES = "TextStyles";
124: public static final String ACTION_BAR_STYLES = "BarStyles";
125: public static final String ACTION_LAYOUT = "Layout";
126:
127: public static final String ACTION_CHANGE_WORKING_TIME = "ChangeWorkingTime";
128: public static final String ACTION_ASSIGN_RESOURCES = "AssignResources";
129: public static final String ACTION_LEVEL_RESOURCES = "LevelResources";
130: public static final String ACTION_TRACKING = "Tracking";
131: public static final String ACTION_ORGANIZER = "Organizer";
132: public static final String ACTION_CUSTOMIZE = "Customize";
133: public static final String ACTION_OPTIONS = "Options";
134:
135: public static final String ACTION_DELEGATE_TASKS = "DelegateTasks";
136: public static final String ACTION_UPDATE_TASKS = "UpdateTasks";
137: public static final String ACTION_UPDATE_PROJECT = "UpdateProject";
138: public static final String ACTION_SAVE_BASELINE = "SaveBaseline";
139: public static final String ACTION_CLEAR_BASELINE = "ClearBaseline";
140:
141: public static final String ACTION_SCHEDULE_OPTIONS = "ScheduleOptions";
142: public static final String ACTION_CALCULATION_OPTIONS = "CalculationOptions";
143: public static final String ACTION_CALENDAR_OPTIONS = "CalendarOptions";
144: public static final String ACTION_GENERAL_OPTIONS = "GeneralOptions";
145: public static final String ACTION_EDIT_OPTIONS = "EditOptions";
146:
147: public static final String ACTION_SORT = "Sort";
148: public static final String ACTION_FILTER = "Filter";
149: public static final String ACTION_GROUP = "Group";
150: public static final String ACTION_INFORMATION = "Information";
151: public static final String ACTION_NOTES = "Notes";
152: public static final String ACTION_PROJECT_INFORMATION = "ProjectInformation";
153: public static final String ACTION_TEAM_FILTER = "TeamFilter";
154: public static final String ACTION_ENTERPRISE_RESOURCES = "EnterpriseResources";
155: public static final String ACTION_DOCUMENTS = "Documents";
156:
157: public static final String ACTION_INDENT = "Indent";
158: public static final String ACTION_OUTDENT = "Outdent";
159: public static final String ACTION_EXPAND = "Expand";
160: public static final String ACTION_COLLAPSE = "Collapse";
161: public static final String ACTION_HIDE_ASSIGNMENTS = "HideAssignments";
162: public static final String ACTION_HIDE_OUTLINE_SYMBOLS = "HideOutlineSymbols";
163:
164: public static final String ACTION_ALL_CHILDREN = "AllChildren";
165: public static final String ACTION_LEVEL1 = "Level1";
166: public static final String ACTION_LEVEL2 = "Level2";
167: public static final String ACTION_LEVEL3 = "Level3";
168: public static final String ACTION_LEVEL4 = "Level4";
169: public static final String ACTION_LEVEL5 = "Level5";
170: public static final String ACTION_LEVEL6 = "Level6";
171: public static final String ACTION_LEVEL7 = "Level7";
172: public static final String ACTION_LEVEL8 = "Level8";
173: public static final String ACTION_LEVEL9 = "Level9";
174:
175: public static final String ACTION_DEFINE_CODE = "DefineCode";
176: public static final String ACTION_RENUMBER = "Renumber";
177:
178: public static final String ACTION_ABOUT_PROJITY = "AboutProjity";
179: public static final String ACTION_PROJITY_DOCUMENTATION = "ProjityDocumentation";
180: public static final String ACTION_TIP_OF_THE_DAY = "TipOfTheDay";
181: public static final String ACTION_OPENPROJ = "OpenProj";
182:
183: public static final String ACTION_CHOOSE_FILTER = "ChooseFilter";
184: public static final String ACTION_CHOOSE_SORT = "ChooseSort";
185: public static final String ACTION_CHOOSE_GROUP = "ChooseGroup";
186:
187: public static final String ACTION_PRINTPREVIEW_PRINT = "PrintPreviewPrint";
188: public static final String ACTION_PRINTPREVIEW_FORMAT = "PrintPreviewFormat";
189: public static final String ACTION_PRINTPREVIEW_BACK = "PrintPreviewBack";
190: public static final String ACTION_PRINTPREVIEW_FORWARD = "PrintPreviewForward";
191: public static final String ACTION_PRINTPREVIEW_UP = "PrintPreviewUp";
192: public static final String ACTION_PRINTPREVIEW_DOWN = "PrintPreviewDown";
193: public static final String ACTION_PRINTPREVIEW_FIRST = "PrintPreviewFirst";
194: public static final String ACTION_PRINTPREVIEW_LAST = "PrintPreviewLast";
195: public static final String ACTION_PRINTPREVIEW_ZOOMIN = "PrintPreviewZoomIn";
196: public static final String ACTION_PRINTPREVIEW_ZOOMOUT = "PrintPreviewZoomOut";
197: public static final String ACTION_PRINTPREVIEW_ZOOMRESET = "PrintPreviewZoomReset";
198: public static final String ACTION_PRINTPREVIEW_LEFT_VIEW = "PrintPreviewLeftView";
199: public static final String ACTION_PRINTPREVIEW_RIGHT_VIEW = "PrintPreviewRightView";
200:
201: public static final String ACTION_PALETTE = "Palette";
202: public static final String ACTION_LOOK_AND_FEEL = "LookAndFeel";
203: public static final String ACTION_FULL_SCREEN = "FullScreen";
204: public static final String ACTION_REFRESH = "Refresh";
205:
206: }
|