]> source.dussan.org Git - gwtquery.git/commit
Refactoring of CSS part of GQuery. Add implementation of many css properties
authorJulien Dramaix <julien.dramaix@gmail.com>
Thu, 27 Jan 2011 00:13:16 +0000 (00:13 +0000)
committerJulien Dramaix <julien.dramaix@gmail.com>
Thu, 27 Jan 2011 00:13:16 +0000 (00:13 +0000)
commit8a45280e017a8724e8b49e4f5327512c3878d184
treeaa8e9e1b42cf871ac9c86489105902b08a0a5925
parent4be89bfb71069d8196871a00652bacb5282f871d
Refactoring of CSS part of GQuery. Add implementation of many css properties
58 files changed:
gwtquery-core/src/main/java/com/google/gwt/query/client/GQuery.java
gwtquery-core/src/main/java/com/google/gwt/query/client/LazyGQuery.java
gwtquery-core/src/main/java/com/google/gwt/query/client/css/AbstractCssProperty.java [new file with mode: 0644]
gwtquery-core/src/main/java/com/google/gwt/query/client/css/BackgroundAttachment.java [deleted file]
gwtquery-core/src/main/java/com/google/gwt/query/client/css/BackgroundAttachmentProperty.java [new file with mode: 0644]
gwtquery-core/src/main/java/com/google/gwt/query/client/css/BackgroundColor.java [deleted file]
gwtquery-core/src/main/java/com/google/gwt/query/client/css/BackgroundColorProperty.java [new file with mode: 0644]
gwtquery-core/src/main/java/com/google/gwt/query/client/css/BackgroundImageProperty.java [new file with mode: 0644]
gwtquery-core/src/main/java/com/google/gwt/query/client/css/BackgroundPositionProperty.java [new file with mode: 0644]
gwtquery-core/src/main/java/com/google/gwt/query/client/css/BackgroundProperty.java [new file with mode: 0644]
gwtquery-core/src/main/java/com/google/gwt/query/client/css/BackgroundRepeatProperty.java [new file with mode: 0644]
gwtquery-core/src/main/java/com/google/gwt/query/client/css/BorderColorProperty.java [new file with mode: 0644]
gwtquery-core/src/main/java/com/google/gwt/query/client/css/BorderProperty.java [new file with mode: 0644]
gwtquery-core/src/main/java/com/google/gwt/query/client/css/BorderStyleProperty.java [new file with mode: 0644]
gwtquery-core/src/main/java/com/google/gwt/query/client/css/BorderWidthProperty.java [new file with mode: 0644]
gwtquery-core/src/main/java/com/google/gwt/query/client/css/CSS.java
gwtquery-core/src/main/java/com/google/gwt/query/client/css/Color.java [deleted file]
gwtquery-core/src/main/java/com/google/gwt/query/client/css/ColorProperty.java [new file with mode: 0644]
gwtquery-core/src/main/java/com/google/gwt/query/client/css/CssProperty.java
gwtquery-core/src/main/java/com/google/gwt/query/client/css/CssProperty4.java [deleted file]
gwtquery-core/src/main/java/com/google/gwt/query/client/css/CssShorthandProperty3.java [new file with mode: 0644]
gwtquery-core/src/main/java/com/google/gwt/query/client/css/CssShorthandProperty5.java [new file with mode: 0644]
gwtquery-core/src/main/java/com/google/gwt/query/client/css/Cursor.java [deleted file]
gwtquery-core/src/main/java/com/google/gwt/query/client/css/CursorProperty.java [new file with mode: 0644]
gwtquery-core/src/main/java/com/google/gwt/query/client/css/Display.java [deleted file]
gwtquery-core/src/main/java/com/google/gwt/query/client/css/DisplayProperty.java [new file with mode: 0644]
gwtquery-core/src/main/java/com/google/gwt/query/client/css/Float.java [deleted file]
gwtquery-core/src/main/java/com/google/gwt/query/client/css/FloatProperty.java [new file with mode: 0644]
gwtquery-core/src/main/java/com/google/gwt/query/client/css/FontSizeProperty.java [new file with mode: 0644]
gwtquery-core/src/main/java/com/google/gwt/query/client/css/FontStyleProperty.java [new file with mode: 0644]
gwtquery-core/src/main/java/com/google/gwt/query/client/css/FontVariantProperty.java [new file with mode: 0644]
gwtquery-core/src/main/java/com/google/gwt/query/client/css/FontWeightProperty.java [new file with mode: 0644]
gwtquery-core/src/main/java/com/google/gwt/query/client/css/Height.java [deleted file]
gwtquery-core/src/main/java/com/google/gwt/query/client/css/HeightProperty.java [new file with mode: 0644]
gwtquery-core/src/main/java/com/google/gwt/query/client/css/ImageValue.java [new file with mode: 0644]
gwtquery-core/src/main/java/com/google/gwt/query/client/css/Inherit.java [deleted file]
gwtquery-core/src/main/java/com/google/gwt/query/client/css/Length.java
gwtquery-core/src/main/java/com/google/gwt/query/client/css/ListStyleImageProperty.java [new file with mode: 0644]
gwtquery-core/src/main/java/com/google/gwt/query/client/css/ListStylePositionProperty.java [new file with mode: 0644]
gwtquery-core/src/main/java/com/google/gwt/query/client/css/ListStyleProperty.java [new file with mode: 0644]
gwtquery-core/src/main/java/com/google/gwt/query/client/css/ListStyleTypeProperty.java [new file with mode: 0644]
gwtquery-core/src/main/java/com/google/gwt/query/client/css/MarginProperty.java [new file with mode: 0644]
gwtquery-core/src/main/java/com/google/gwt/query/client/css/PaddingProperty.java [new file with mode: 0644]
gwtquery-core/src/main/java/com/google/gwt/query/client/css/Percentage.java [deleted file]
gwtquery-core/src/main/java/com/google/gwt/query/client/css/RGBColor.java
gwtquery-core/src/main/java/com/google/gwt/query/client/css/TakeCssValue.java [new file with mode: 0644]
gwtquery-core/src/main/java/com/google/gwt/query/client/css/TakesLength.java
gwtquery-core/src/main/java/com/google/gwt/query/client/css/TakesPercentage.java [deleted file]
gwtquery-core/src/main/java/com/google/gwt/query/client/css/TextAlign.java [deleted file]
gwtquery-core/src/main/java/com/google/gwt/query/client/css/TextAlignProperty.java [new file with mode: 0644]
gwtquery-core/src/main/java/com/google/gwt/query/client/css/VerticalAlign.java [deleted file]
gwtquery-core/src/main/java/com/google/gwt/query/client/css/VerticalAlignProperty.java [new file with mode: 0644]
gwtquery-core/src/main/java/com/google/gwt/query/client/css/Visibility.java [deleted file]
gwtquery-core/src/main/java/com/google/gwt/query/client/css/VisibilityProperty.java [new file with mode: 0644]
gwtquery-core/src/main/java/com/google/gwt/query/client/css/Width.java [deleted file]
gwtquery-core/src/main/java/com/google/gwt/query/client/css/WidthProperty.java [new file with mode: 0644]
gwtquery-core/src/test/java/com/google/gwt/query/client/GQueryCssTest.java [new file with mode: 0644]
gwtquery-core/src/test/java/com/google/gwt/query/client/GQueryEventsTest.java