blob: b8810e8b7612a17846ad1a1785e646bc953a0a6e [file] [log] [blame]
import ns ${{BASIC_PROJECT_NAME}}.model.functionlibrary.PerspectiveToolbar
import ns ${{BASIC_PROJECT_NAME}}.model.functionlibrary.TaskToolbar
package ${{MODEL_PROJECT_PACKAGE_NAME}} {
command newItem keyBinding "CTRL ALT N" icon "new" dialogAction New
command saveItem keyBinding "CTRL ALT S" icon "save" dialogAction Save
command saveAsNew keyBinding "CTRL ALT B" icon "dssave" dialogAction SaveAsNew
command saveAndNew keyBinding "CTRL ALT A" icon "dssaveandnew" dialogAction SaveAndNew
command deleteItem keyBinding "CTRL ALT D" icon "filter_except" dialogAction Delete
command cancelItem keyBinding "CTRL ALT Z" icon "dscancel" dialogAction Cancel
command databaseInfo describedBy "database info" keyBinding "CTRL ALT I" icon "dbinfo" userinterfaceAction Info
command print icon "print" reportAction PrintOnServer
command printDownload icon "xml" reportAction Download
command stop icon "task_action_stop" taskAction Stop
command release icon "task_action_release" taskAction Release
command suspend icon "task_action_suspend" taskAction Suspend
command complete icon "task_action_complete" taskAction Complete
command removeAllWorkloadItems icon "task_status_obsolete" selectWorkloadAction RemoveAll
command addAllSelectedItemsToTheWorkload icon "import" selectWorkloadAction AddAll
toolbar Dialog describedBy "Toolbar for Dialogs" items {
item newItem command newItem
spacer
spacer
item saveItem command saveItem
item saveAndNew command saveAndNew
spacer
item cancelItem command cancelItem
spacer
item databaseInfo command databaseInfo
spacer
state
}
toolbar Report describedBy "Toolbar for reports" items {
item printDownload command printDownload
item print command print
}
toolbar HandleTask describedBy "Toolbar for BPM oriented perspectives" items {
item stop command stop
item release command release
item suspend command suspend
item complete command complete
}
toolbar WorkloadSelect describedBy "Toolbar for Workload Selects" items {
item removeAllWorkloadItems command removeAllWorkloadItems
item addAllSelectedItemsToTheWorkload command addAllSelectedItemsToTheWorkload
}
}