blob: 109359a4e1351db5dd42fc5d4ac59128b8534b47 [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.chart.ui.contentassist;
import org.eclipse.jface.text.ITextViewer;
import org.eclipse.swt.custom.StyledText;
import org.eclipse.swt.graphics.RGB;
import org.eclipse.swt.widgets.ColorDialog;
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 MyReplacementTextApplier extends ReplacementTextApplier {
private ContentAssistContext context;
public ContentAssistContext setContext(final ContentAssistContext context) {
return this.context = context;
}
public String getActualReplacementString(final ConfigurableCompletionProposal proposal) {
ITextViewer _viewer = this.context.getViewer();
StyledText _textWidget = _viewer.getTextWidget();
Display display = _textWidget.getDisplay();
Shell _activeShell = display.getActiveShell();
ColorDialog colorDialog = new ColorDialog(_activeShell);
RGB newColor = colorDialog.open();
String _string = Integer.valueOf(newColor.red).toString();
String _concat = "\"".concat(_string);
String _concat_1 = _concat.concat(",");
String _string_1 = Integer.valueOf(newColor.green).toString();
String _concat_2 = _concat_1.concat(_string_1);
String _concat_3 = _concat_2.concat(",");
String _string_2 = Integer.valueOf(newColor.blue).toString();
String _concat_4 = _concat_3.concat(_string_2);
return _concat_4.concat("\"");
}
}