blob: 691fc6a4316831ace551cd2110f35435cb582d11 [file] [log] [blame]
<?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 bxml:id="window"
title="TablePane Test2, with variable row height" maximized="true"
xmlns:bxml="http://pivot.apache.org/bxml"
xmlns:collections="org.apache.pivot.collections"
xmlns:content="org.apache.pivot.wtk.content"
xmlns="org.apache.pivot.wtk"
>
<bxml:script>
<![CDATA[
importPackage(java.net);
importPackage(org.apache.pivot.util);
importPackage(org.apache.pivot.wtk);
importPackage(org.apache.pivot.wtk.media);
var s = "ABCDE ABCDE ABCDE ABCDE";
var s2 = "First Line.\nSecond Line.";
var b = true;
var n = 100.25;
var d = new CalendarDate();
var location = new java.io.File("bin/" // add this to run from inside eclipse ...
+ "org/apache/pivot/tests" // current package, view as folders
// + "/go-home.png" // image name
).toURI().toURL();
java.lang.System.out.println("location for the image to load = \"" + location + "\"");
var i = Image.load(new URL(location, "go-home.png"));
java.lang.System.out.println("image = " + i);
]]>
</bxml:script>
<TablePane
styles="{padding:6, verticalSpacing:8}"
>
<columns>
<TablePane.Column width="1*" />
</columns>
<TablePane.Row height="-1">
<PushButton buttonData="Start"/>
</TablePane.Row>
<TablePane.Row height="-1">
<TableView>
<columns>
<TableView.Column name="value" width="-1">
<cellRenderer>
<content:TableViewMultiCellRenderer>
<bxml:define>
<!-- // multiline
<content:TableViewTextAreaCellRenderer bxml:id="multilineCellRenderer"/>
//-->
<!-- // no multiline
<content:TableViewMultiCellRenderer bxml:id="multilineCellRenderer"/>
//-->
<content:TableViewTextAreaCellRenderer bxml:id="multilineCellRenderer"/>
<content:TableViewBooleanCellRenderer bxml:id="booleanCellRenderer"/>
<content:TableViewNumberCellRenderer bxml:id="numberCellRenderer"/>
<content:TableViewDateCellRenderer bxml:id="dateCellRenderer"/>
<content:TableViewImageCellRenderer bxml:id="imageCellRenderer" preferredHeight="40"/>
</bxml:define>
<rendererMappings>
<!-- // no multiline
<content:TableViewMultiCellRenderer.RendererMapping valueClass="org.apache.pivot.wtk.TextArea"
cellRenderer="$multilineCellRenderer"/>
//-->
<!-- // multiline
<content:TableViewMultiCellRenderer.RendererMapping valueClass="java.lang.String"
cellRenderer="$multilineCellRenderer"/>
//-->
<content:TableViewMultiCellRenderer.RendererMapping valueClass="java.lang.String"
cellRenderer="$multilineCellRenderer"/>
<content:TableViewMultiCellRenderer.RendererMapping valueClass="java.lang.Boolean"
cellRenderer="$booleanCellRenderer"/>
<content:TableViewMultiCellRenderer.RendererMapping valueClass="java.lang.Number"
cellRenderer="$numberCellRenderer"/>
<content:TableViewMultiCellRenderer.RendererMapping valueClass="org.apache.pivot.util.CalendarDate"
cellRenderer="$dateCellRenderer"/>
<content:TableViewMultiCellRenderer.RendererMapping valueClass="org.apache.pivot.wtk.media.Image"
cellRenderer="$imageCellRenderer"/>
</rendererMappings>
</content:TableViewMultiCellRenderer>
</cellRenderer>
</TableView.Column>
<TableView.Column width="1*"/>
</columns>
<collections:HashMap value="$s"/>
<collections:HashMap value="$s2"/>
<collections:HashMap value="$b"/>
<collections:HashMap value="$n"/>
<collections:HashMap value="$d"/>
<collections:HashMap value="$i"/>
</TableView>
</TablePane.Row>
<TablePane.Row height="-1">
<PushButton buttonData="End"/>
</TablePane.Row>
</TablePane>
</Window>