blob: 1d7c7f02943c285bd775745c6f2eb49192cd7498 [file] [log] [blame]
/**
* Copyright (c) 2011, 2016 - Loetz GmbH&Co.KG (69115 Heidelberg, Germany)
*
* 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:
* Christophe Loetz (Loetz GmbH&Co.KG) - initial implementation
*
*
* This copyright notice shows up in the generated Java code
*/
package org.eclipse.osbp.xtext.blip.ui.contentassist;
import org.eclipse.osbp.fork.mihalis.opal.widgets.ImageSelectorDialog;
import org.eclipse.swt.layout.FillLayout;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.xtext.ui.editor.contentassist.ConfigurableCompletionProposal;
import org.eclipse.xtext.ui.editor.contentassist.ContentAssistContext;
import org.eclipse.xtext.ui.editor.contentassist.ReplacementTextApplier;
@SuppressWarnings("all")
public class ImageFileNameTextApplier extends ReplacementTextApplier {
private ContentAssistContext context;
private String[] extensions;
public ContentAssistContext setContext(final ContentAssistContext context) {
return this.context = context;
}
public String[] setExtensions(final String[] fileExtensions) {
return this.extensions = fileExtensions;
}
@Override
public String getActualReplacementString(final ConfigurableCompletionProposal proposal) {
Display display = this.context.getViewer().getTextWidget().getDisplay();
Shell shell = new Shell(display);
FillLayout _fillLayout = new FillLayout();
shell.setLayout(_fillLayout);
ImageSelectorDialog imageSelectorDialog = new ImageSelectorDialog(shell, 16);
imageSelectorDialog.setFilterExtensions(this.extensions);
String imageFileName = imageSelectorDialog.open();
return "\"".concat(imageFileName).concat("\"");
}
}