Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMélanie Bats2016-03-31 13:54:54 +0000
committerMélanie Bats2016-04-07 09:12:47 +0000
commitf9e41ebf561e225e05ea3d5e9afab6721606655c (patch)
tree9b66511a8f97be2cf7bfb6bc2272f60ba1cdc5fd /samples/org.eclipse.eef.sample.custom.widget.colorpicker
parentfcc2d51955a50e4dc06ede01410fd2f658daf862 (diff)
downloadorg.eclipse.eef-f9e41ebf561e225e05ea3d5e9afab6721606655c.tar.gz
org.eclipse.eef-f9e41ebf561e225e05ea3d5e9afab6721606655c.tar.xz
org.eclipse.eef-f9e41ebf561e225e05ea3d5e9afab6721606655c.zip
Contribute styling
Styles are available on : * the label common to all the widgets (text, label, button, checkbox, radio and select) * text widget * label widget Change-Id: I10e8f364d5f49d142cd08df3ccbf12c2db198b9b Signed-off-by: Mélanie Bats <melanie.bats@obeo.fr>
Diffstat (limited to 'samples/org.eclipse.eef.sample.custom.widget.colorpicker')
-rw-r--r--samples/org.eclipse.eef.sample.custom.widget.colorpicker/src/org/eclipse/eef/sample/custom/widget/colorpicker/ColorPickerLifecycleManager.java11
1 files changed, 11 insertions, 0 deletions
diff --git a/samples/org.eclipse.eef.sample.custom.widget.colorpicker/src/org/eclipse/eef/sample/custom/widget/colorpicker/ColorPickerLifecycleManager.java b/samples/org.eclipse.eef.sample.custom.widget.colorpicker/src/org/eclipse/eef/sample/custom/widget/colorpicker/ColorPickerLifecycleManager.java
index e4d217b94..717d70791 100644
--- a/samples/org.eclipse.eef.sample.custom.widget.colorpicker/src/org/eclipse/eef/sample/custom/widget/colorpicker/ColorPickerLifecycleManager.java
+++ b/samples/org.eclipse.eef.sample.custom.widget.colorpicker/src/org/eclipse/eef/sample/custom/widget/colorpicker/ColorPickerLifecycleManager.java
@@ -12,6 +12,7 @@ package org.eclipse.eef.sample.custom.widget.colorpicker;
import org.eclipse.eef.EEFCustomWidgetDescription;
import org.eclipse.eef.EEFWidgetDescription;
+import org.eclipse.eef.EEFWidgetStyle;
import org.eclipse.eef.common.ui.api.EEFWidgetFactory;
import org.eclipse.eef.common.ui.api.IEEFFormContainer;
import org.eclipse.eef.core.api.controllers.IConsumer;
@@ -117,6 +118,16 @@ public class ColorPickerLifecycleManager extends AbstractEEFWidgetLifecycleManag
/**
* {@inheritDoc}
*
+ * @see org.eclipse.eef.ide.ui.api.widgets.AbstractEEFWidgetLifecycleManager#getWidgetStyle()
+ */
+ @Override
+ protected EEFWidgetStyle getWidgetStyle() {
+ return null;
+ }
+
+ /**
+ * {@inheritDoc}
+ *
* @see org.eclipse.eef.ide.ui.api.widgets.AbstractEEFWidgetLifecycleManager#aboutToBeShown()
*/
@Override

Back to the top