/////////////////////////////////////////////////////////////////////////// // Copyright (c) 2018 Intel Corporation. // // // // All rights reserved. This program and the accompanying materials // // are made available under the terms of the Eclipse Public License v1.0 // // which accompanies this distribution, and is available at // // http://www.eclipse.org/legal/epl-v10.html // // // // Contributors: // // Intel Corporation - initial implementation and documentation // /////////////////////////////////////////////////////////////////////////// package com.intel.sgx.dialogs; import org.eclipse.jface.dialogs.Dialog; import org.eclipse.swt.SWT; import org.eclipse.swt.events.SelectionEvent; import org.eclipse.swt.events.SelectionListener; import org.eclipse.swt.graphics.Point; import org.eclipse.swt.layout.GridData; import org.eclipse.swt.layout.GridLayout; import org.eclipse.swt.widgets.Button; import org.eclipse.swt.widgets.Composite; import org.eclipse.swt.widgets.Control; import org.eclipse.swt.widgets.DirectoryDialog; //import org.eclipse.swt.widgets.FileDialog; import org.eclipse.swt.widgets.Group; import org.eclipse.swt.widgets.Label; import org.eclipse.swt.widgets.Shell; import org.eclipse.swt.widgets.Text; import com.intel.sgx.handlers.RemoveEnclave; public class RemoveEnclaveFileDialog extends Dialog{ private Text fileNameField; private Shell shell; private RemoveEnclave removeHandler; public RemoveEnclaveFileDialog(Shell shell, RemoveEnclave removeHandler) { super(shell); this.removeHandler = removeHandler; this.shell = shell; setShellStyle(SWT.RESIZE | SWT.TITLE); } @Override protected Control createDialogArea(Composite parent) { Composite composite = (Composite) super.createDialogArea(parent); final GridLayout gridLayout = new GridLayout(1,false); composite.setLayout(gridLayout); final Group container = new Group(composite, SWT.None); container.setLayout(new GridLayout(3,false)); GridData innergrid1 = new GridData(GridData.FILL_HORIZONTAL); innergrid1.horizontalSpan = 3; container.setLayoutData(innergrid1); container.setText("Path to Enclave directory:"); final Label messageLabel = new Label(container, SWT.NONE); messageLabel.setLayoutData(new GridData(GridData.BEGINNING, GridData.CENTER, false, false, 3, 1)); messageLabel.setText("Enter the name of the Enclave Or Navigate to the Enclave folder to be removed from the host."); final Label fileNameLabel = new Label(container, SWT.NONE); fileNameLabel.setLayoutData(new GridData(GridData.BEGINNING,GridData.CENTER, false, false)); fileNameLabel.setText("Enclave Name:"); fileNameField = new Text(container, SWT.SINGLE | SWT.BORDER); GridData textGridData1 = new GridData(GridData.FILL_HORIZONTAL); textGridData1.minimumWidth = 400; textGridData1.grabExcessHorizontalSpace = true; fileNameField.setLayoutData(textGridData1); final Button browseButton = new Button(container, SWT.PUSH); browseButton.setText("Browse"); GridData buttonGridData1 = new GridData(GridData.END); buttonGridData1.horizontalAlignment = SWT.RIGHT; buttonGridData1.horizontalSpan = 1; buttonGridData1.minimumWidth = 120; browseButton.setLayoutData(buttonGridData1); browseButton.addSelectionListener(new SelectionListener() { @Override public void widgetSelected(SelectionEvent event) { String result = fileNameField.getText(); DirectoryDialog dialog = new DirectoryDialog(shell, SWT.OPEN); dialog.setMessage("Select the Enclave Directory to remove."); dialog.setFilterPath(""); result = dialog.open(); fileNameField.setText(result); } @Override public void widgetDefaultSelected(SelectionEvent e) { } }); return container; } @Override protected void configureShell(Shell newShell) { super.configureShell(newShell); newShell.setText("Remove an Imported Enclave"); } @Override protected void okPressed(){ removeHandler.edlFilename = fileNameField.getText(); if(!fileNameField.getText().isEmpty()) super.okPressed(); } @Override protected Point getInitialSize(){ return new Point(675,205); } public String getFileName() { return fileNameField.getText(); } }