Search in sources :

Example 1 with ExportAsDialog

use of com.centurylink.mdw.plugin.designer.dialogs.ExportAsDialog in project mdw-designer by CenturyLinkCloud.

the class WorkflowElementActionHandler method exportAs.

public void exportAs(WorkflowElement selection) {
    WorkflowProcess processVersion = (WorkflowProcess) selection;
    open(processVersion);
    ProcessEditor procEd = (ProcessEditor) findOpenEditor(processVersion);
    ExportAsDialog saveImageDialog = new ExportAsDialog(getShell(), processVersion, procEd.getProcessCanvasWrapper().getFlowchartPage());
    saveImageDialog.open();
}
Also used : ExportAsDialog(com.centurylink.mdw.plugin.designer.dialogs.ExportAsDialog) WorkflowProcess(com.centurylink.mdw.plugin.designer.model.WorkflowProcess) ProcessEditor(com.centurylink.mdw.plugin.designer.editors.ProcessEditor)

Example 2 with ExportAsDialog

use of com.centurylink.mdw.plugin.designer.dialogs.ExportAsDialog in project mdw-designer by CenturyLinkCloud.

the class ProcessCanvasWrapper method exportAs.

public void exportAs(Shell shell) {
    ExportAsDialog exportAsDialog = new ExportAsDialog(shell, getProcess(), flowchartPage);
    exportAsDialog.open();
}
Also used : ExportAsDialog(com.centurylink.mdw.plugin.designer.dialogs.ExportAsDialog)

Aggregations

ExportAsDialog (com.centurylink.mdw.plugin.designer.dialogs.ExportAsDialog)2 ProcessEditor (com.centurylink.mdw.plugin.designer.editors.ProcessEditor)1 WorkflowProcess (com.centurylink.mdw.plugin.designer.model.WorkflowProcess)1