/******************************************************************************* * Copyright (c) 2012, 2015 Original authors and others. * 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: * Original authors and others - initial API and implementation * Dirk Fauth <dirk.fauth@googlemail.com> - Bug 459029 ******************************************************************************/ package org.eclipse.nebula.widgets.nattable.export.config; import org.eclipse.nebula.widgets.nattable.config.IConfigRegistry; import org.eclipse.nebula.widgets.nattable.config.IConfiguration; import org.eclipse.nebula.widgets.nattable.export.ExportConfigAttributes; import org.eclipse.nebula.widgets.nattable.export.action.ExportAction; import org.eclipse.nebula.widgets.nattable.export.excel.DefaultExportFormatter; import org.eclipse.nebula.widgets.nattable.export.excel.ExcelExporter; import org.eclipse.nebula.widgets.nattable.layer.ILayer; import org.eclipse.nebula.widgets.nattable.ui.binding.UiBindingRegistry; import org.eclipse.nebula.widgets.nattable.ui.matcher.KeyEventMatcher; import org.eclipse.swt.SWT; public class DefaultExportBindings implements IConfiguration { @Override public void configureUiBindings(UiBindingRegistry uiBindingRegistry) { uiBindingRegistry.registerKeyBinding( new KeyEventMatcher(SWT.MOD1, 'e'), new ExportAction()); } @Override public void configureRegistry(IConfigRegistry configRegistry) { configRegistry.registerConfigAttribute( ExportConfigAttributes.EXPORTER, new ExcelExporter()); configRegistry.registerConfigAttribute( ExportConfigAttributes.EXPORT_FORMATTER, new DefaultExportFormatter()); configRegistry.registerConfigAttribute( ExportConfigAttributes.DATE_FORMAT, "m/d/yy h:mm"); //$NON-NLS-1$ } @Override public void configureLayer(ILayer layer) {} }