Package org.eclipse.wb.internal.core.model.property.editor

Examples of org.eclipse.wb.internal.core.model.property.editor.StringComboPropertyEditor


        }
      }

      private Property createDirectionProperty(final WidgetInfo widget) throws Exception {
        PropertyEditor propertyEditor =
            new StringComboPropertyEditor("NORTH",
                "SOUTH",
                "WEST",
                "EAST",
                "CENTER",
                "LINE_START",
View Full Code Here


            new StringComboBoxPropertyEditor(FontProperty.SIZE_VALUES)),
        new StyleSimpleValueProperty(accessor,
            styleName,
            "font.style",
            "style",
            new StringComboPropertyEditor(FontProperty.STYLES)),
        new StyleSimpleValueProperty(accessor,
            styleName,
            "font.stretch",
            "stretch",
            new StringComboPropertyEditor(FontProperty.STRETCH_VALUES)),
        new StyleSimpleValueProperty(accessor,
            styleName,
            "font.variant",
            "variant",
            new StringComboPropertyEditor(FontProperty.VARIANTS)),
        new StyleSimpleValueProperty(accessor,
            styleName,
            "font.weight",
            "weight",
            new StringComboPropertyEditor(FontProperty.WEIGHT_VALUES)),});
  }
View Full Code Here

        new Property[]{
            new StyleSimpleValueProperty(accessor,
                styleName,
                valueObjectPath + ".top",
                "top",
                new StringComboPropertyEditor(items)),
            new StyleSimpleValueProperty(accessor,
                styleName,
                valueObjectPath + ".right",
                "right",
                new StringComboPropertyEditor(items)),
            new StyleSimpleValueProperty(accessor,
                styleName,
                valueObjectPath + ".bottom",
                "bottom",
                new StringComboPropertyEditor(items)),
            new StyleSimpleValueProperty(accessor,
                styleName,
                valueObjectPath + ".left",
                "left",
                new StringComboPropertyEditor(items))});
  }
View Full Code Here

                      StringPropertyEditor.INSTANCE),
                  new StyleSimpleValueProperty(accessor,
                      styleName,
                      "background.repeat",
                      "repeat",
                      new StringComboPropertyEditor("",
                          "repeat",
                          "repeat-x",
                          "repeat-y",
                          "no-repeat")),
                  new StyleSimpleValueProperty(accessor,
                      styleName,
                      "background.attachment",
                      "attachment",
                      new StringComboPropertyEditor("", "scroll", "fixed"))}),
          new StyleBorderProperty(accessor, styleName),
          new StyleFontProperty(accessor, styleName),
          new StyleTextProperty(accessor, styleName),
          new StyleLengthSidedProperty(accessor, styleName, "margin", "margin"),
          new StyleLengthSidedProperty(accessor, styleName, "padding", "padding"),};
View Full Code Here

            new StringComboBoxPropertyEditor(TextProperty.INDENT_VALUES)),
        new StyleSimpleValueProperty(accessor,
            styleName,
            "text.align",
            "align",
            new StringComboPropertyEditor(TextProperty.ALIGN_H_VALUES)),
        new StyleLengthValueProperty(accessor,
            styleName,
            "text.verticalAlign",
            "vertical-align",
            new StringComboBoxPropertyEditor(TextProperty.ALIGN_V_VALUES)),
        new StyleLengthValueProperty(accessor,
            styleName,
            "text.letterSpacing",
            "letter-spacing",
            new StringComboBoxPropertyEditor(TextProperty.SPACE_VALUES)),
        new StyleLengthValueProperty(accessor,
            styleName,
            "text.wordSpacing",
            "word-spacing",
            new StringComboBoxPropertyEditor(TextProperty.SPACE_VALUES)),
        new StyleLengthValueProperty(accessor,
            styleName,
            "text.lineHeight",
            "line-height",
            new StringComboBoxPropertyEditor(TextProperty.LINE_VALUES)),
        new StyleSimpleValueProperty(accessor,
            styleName,
            "text.decoration",
            "decoration",
            new StyleSetPropertyEditor(TextProperty.DECORATION_VALUES)),
        new StyleSimpleValueProperty(accessor,
            styleName,
            "text.transform",
            "transform",
            new StringComboPropertyEditor(TextProperty.TRANSFORM_VALUES)),
        new StyleSimpleValueProperty(accessor,
            styleName,
            "text.direction",
            "direction",
            new StringComboPropertyEditor(TextProperty.DIRECTION_VALUES)),
        new StyleSimpleValueProperty(accessor,
            styleName,
            "text.whiteSpace",
            "white-space",
            new StringComboBoxPropertyEditor(TextProperty.WHITE_VALUES)),});
View Full Code Here

TOP

Related Classes of org.eclipse.wb.internal.core.model.property.editor.StringComboPropertyEditor

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.