You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pivot.apache.org by gb...@apache.org on 2010/08/10 18:33:29 UTC

svn commit: r984110 - in /pivot/trunk/examples/src/org/apache/pivot/examples/effects: ./ BorderDecorator.java decorator_example.bxml

Author: gbrown
Date: Tue Aug 10 16:33:28 2010
New Revision: 984110

URL: http://svn.apache.org/viewvc?rev=984110&view=rev
Log:
Add a simple decorator example.

Added:
    pivot/trunk/examples/src/org/apache/pivot/examples/effects/
    pivot/trunk/examples/src/org/apache/pivot/examples/effects/BorderDecorator.java
    pivot/trunk/examples/src/org/apache/pivot/examples/effects/decorator_example.bxml

Added: pivot/trunk/examples/src/org/apache/pivot/examples/effects/BorderDecorator.java
URL: http://svn.apache.org/viewvc/pivot/trunk/examples/src/org/apache/pivot/examples/effects/BorderDecorator.java?rev=984110&view=auto
==============================================================================
--- pivot/trunk/examples/src/org/apache/pivot/examples/effects/BorderDecorator.java (added)
+++ pivot/trunk/examples/src/org/apache/pivot/examples/effects/BorderDecorator.java Tue Aug 10 16:33:28 2010
@@ -0,0 +1,53 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to you under the Apache License,
+ * Version 2.0 (the "License"); you may not use this file except in
+ * compliance with the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.pivot.examples.effects;
+
+import java.awt.BasicStroke;
+import java.awt.Color;
+import java.awt.Graphics2D;
+import java.awt.geom.AffineTransform;
+import java.awt.geom.Rectangle2D;
+
+import org.apache.pivot.wtk.Bounds;
+import org.apache.pivot.wtk.Component;
+import org.apache.pivot.wtk.effects.Decorator;
+
+public class BorderDecorator implements Decorator {
+    @Override
+    public Graphics2D prepare(Component component, Graphics2D graphics) {
+        graphics.setColor(Color.RED);
+        graphics.setStroke(new BasicStroke(1));
+        graphics.draw(new Rectangle2D.Double(-1, -1,
+            component.getWidth() + 1, component.getHeight() + 1));
+        return graphics;
+    }
+
+    @Override
+    public void update() {
+        // No-op
+    }
+
+    @Override
+    public Bounds getBounds(Component component) {
+        return new Bounds(-1, -1, component.getWidth() + 2, component.getHeight() + 2);
+    }
+
+    @Override
+    public AffineTransform getTransform(Component component) {
+        return new AffineTransform();
+    }
+}

Added: pivot/trunk/examples/src/org/apache/pivot/examples/effects/decorator_example.bxml
URL: http://svn.apache.org/viewvc/pivot/trunk/examples/src/org/apache/pivot/examples/effects/decorator_example.bxml?rev=984110&view=auto
==============================================================================
--- pivot/trunk/examples/src/org/apache/pivot/examples/effects/decorator_example.bxml (added)
+++ pivot/trunk/examples/src/org/apache/pivot/examples/effects/decorator_example.bxml Tue Aug 10 16:33:28 2010
@@ -0,0 +1,30 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Licensed to the Apache Software Foundation (ASF) under one or more
+contributor license agreements.  See the NOTICE file distributed with
+this work for additional information regarding copyright ownership.
+The ASF licenses this file to you under the Apache License,
+Version 2.0 (the "License"); you may not use this file except in
+compliance with the License.  You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+-->
+
+<Window title="Decorator Example" maximized="true"
+    xmlns:bxml="http://pivot.apache.org/bxml"
+    xmlns:effects="org.apache.pivot.examples.effects"
+    xmlns="org.apache.pivot.wtk">
+    <BoxPane styles="{padding:8}">
+        <Label text="Label with a red border decorator">
+            <decorators>
+                <effects:BorderDecorator/>
+            </decorators>
+        </Label>
+    </BoxPane>
+</Window>