/////////////////////////////////////////////////////////////////////////// // Copyright (c) 2016 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 javax.swing.JOptionPane; import org.eclipse.swt.SWT; import org.eclipse.swt.graphics.Point; import org.eclipse.swt.layout.GridData; import org.eclipse.swt.layout.GridLayout; import org.eclipse.swt.widgets.Composite; import org.eclipse.swt.widgets.Control; 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.AddTrustedStaticLib; public class AddTrustedStaticLibFileDialog extends SGXDialogBase { private Text fileNameField; private AddTrustedStaticLib addHandler; private boolean generateApp = false; public AddTrustedStaticLibFileDialog(Shell shell, AddTrustedStaticLib addHandler) { super(shell); this.addHandler = addHandler; this.shell = shell; // setShellStyle(SWT.RESIZE | SWT.TITLE); } public boolean generateApp() { return generateApp; } @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); addLabel(container, "Enter the name of the Static Trusted Library."); addLabel(container, "Make sure the name is unique within the hosting application."); final Label fileNameLabel = new Label(container, SWT.NONE); fileNameLabel.setText("Static Trusted Library Name:"); fileNameLabel.setLayoutData(new GridData(GridData.BEGINNING,GridData.CENTER, false, false)); fileNameField = new Text(container,SWT.SINGLE | SWT.BORDER); GridData textGridData1 = new GridData(GridData.FILL_HORIZONTAL); textGridData1.minimumWidth = 400; textGridData1.grabExcessHorizontalSpace = true; fileNameField.setLayoutData(textGridData1); composite.layout(); return composite; } @Override protected void configureShell(Shell newShell) { super.configureShell(newShell); newShell.setText("Add New SGX Static Trusted Library Dialog"); } @Override protected void okPressed(){ addHandler.edlFilename = fileNameField.getText(); if(!fileNameField.getText().isEmpty() ){ if(Character.isDigit(fileNameField.getText().charAt(0))) { JOptionPane.showMessageDialog(null, "Enclave names starting with digits are not allowed.", "Error", JOptionPane.ERROR_MESSAGE); } else super.okPressed(); } } @Override protected Point getInitialSize(){ return new Point(675,200); } public String getFileName() { return fileNameField.getText(); } }