diff options
author | Johannes Faltermeier | 2016-08-25 15:30:50 +0000 |
---|---|---|
committer | Johannes Faltermeier | 2016-08-25 17:59:09 +0000 |
commit | 7d98c6bf605f61702d17e04e29713c72cf1571c1 (patch) | |
tree | 23805b0bfd764dd24516f2827011f9a076ed5613 /features | |
parent | f4f68268a419d8212b7e58bc35353d03b4db8039 (diff) | |
download | org.eclipse.emf.ecp.core-7d98c6bf605f61702d17e04e29713c72cf1571c1.tar.gz org.eclipse.emf.ecp.core-7d98c6bf605f61702d17e04e29713c72cf1571c1.tar.xz org.eclipse.emf.ecp.core-7d98c6bf605f61702d17e04e29713c72cf1571c1.zip |
Bug 500174 - Enable Drag&Drop + Cut/Copy/Paste for TableRenderer
* added drag&drop to table viewer builder API
* added drag&drop to table control swt renderer
* removed some warnings for column builder
* created listener for enabling cut/copy/past
Change-Id: I9ea4e5d056452bb42b8c5e84b737373ed11fb0f0
Signed-off-by: Johannes Faltermeier <jfaltermeier@eclipsesource.com>
Diffstat (limited to 'features')
5 files changed, 69 insertions, 0 deletions
diff --git a/features/org.eclipse.emf.ecp.view.table.ui.rcp.feature/.project b/features/org.eclipse.emf.ecp.view.table.ui.rcp.feature/.project new file mode 100644 index 0000000000..df968172d6 --- /dev/null +++ b/features/org.eclipse.emf.ecp.view.table.ui.rcp.feature/.project @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="UTF-8"?> +<projectDescription> + <name>org.eclipse.emf.ecp.view.table.ui.rcp.feature</name> + <comment></comment> + <projects> + </projects> + <buildSpec> + <buildCommand> + <name>org.eclipse.pde.FeatureBuilder</name> + <arguments> + </arguments> + </buildCommand> + </buildSpec> + <natures> + <nature>org.eclipse.pde.FeatureNature</nature> + </natures> +</projectDescription> diff --git a/features/org.eclipse.emf.ecp.view.table.ui.rcp.feature/build.properties b/features/org.eclipse.emf.ecp.view.table.ui.rcp.feature/build.properties new file mode 100644 index 0000000000..b3a611b5c9 --- /dev/null +++ b/features/org.eclipse.emf.ecp.view.table.ui.rcp.feature/build.properties @@ -0,0 +1,2 @@ +bin.includes = feature.xml,\ + feature.properties diff --git a/features/org.eclipse.emf.ecp.view.table.ui.rcp.feature/feature.properties b/features/org.eclipse.emf.ecp.view.table.ui.rcp.feature/feature.properties new file mode 100644 index 0000000000..91dd68655b --- /dev/null +++ b/features/org.eclipse.emf.ecp.view.table.ui.rcp.feature/feature.properties @@ -0,0 +1,7 @@ +# Copyright (c) 2011-2014 EclipseSource Munich GmbH 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 + +description = EMF Forms Model for Tables. This Feature also contains the SWT renderer for this model element. diff --git a/features/org.eclipse.emf.ecp.view.table.ui.rcp.feature/feature.xml b/features/org.eclipse.emf.ecp.view.table.ui.rcp.feature/feature.xml new file mode 100644 index 0000000000..afc045d5f7 --- /dev/null +++ b/features/org.eclipse.emf.ecp.view.table.ui.rcp.feature/feature.xml @@ -0,0 +1,28 @@ +<?xml version="1.0" encoding="UTF-8"?> +<feature + id="org.eclipse.emf.ecp.view.table.ui.rcp.feature" + label="Feature" + version="1.10.0.qualifier" + license-feature="org.eclipse.emf.ecp.license.feature" + license-feature-version="1.10.0.qualifier"> + + <description> + %description + </description> + + <copyright url="%copyrightURL"> + %copyright + </copyright> + + <license url="%licenseURL"> + %license + </license> + + <plugin + id="org.eclipse.emf.ecp.view.table.ui.rcp" + download-size="0" + install-size="0" + version="0.0.0" + unpack="false"/> + +</feature> diff --git a/features/org.eclipse.emf.ecp.view.table.ui.rcp.feature/pom.xml b/features/org.eclipse.emf.ecp.view.table.ui.rcp.feature/pom.xml new file mode 100644 index 0000000000..3eb0482d09 --- /dev/null +++ b/features/org.eclipse.emf.ecp.view.table.ui.rcp.feature/pom.xml @@ -0,0 +1,15 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> + <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>org.eclipse.emf.ecp</groupId> + <artifactId>ecp-features-parent</artifactId> + <version>1.10.0-SNAPSHOT</version> + <relativePath>../../releng/org.eclipse.emf.ecp.releng.features/</relativePath> + </parent> + <groupId>org.eclipse.emf.ecp</groupId> + <artifactId>org.eclipse.emf.ecp.view.table.ui.rcp.feature</artifactId> + <version>1.10.0-SNAPSHOT</version> + <packaging>eclipse-feature</packaging> +</project> |