blob: 330b54e7ab36b84e71f6b87a76f96497d634fb73 [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 title="Expander Test" maximized="true"
styles="{backgroundColor:'#c8c8bb'}"
xmlns:bxml="http://pivot.apache.org/bxml"
xmlns="org.apache.pivot.wtk"
>
<bxml:script>
<![CDATA[
// define a variable here to reuse it inside the same bxml, as a sample
var msg = "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.";
]]>
</bxml:script>
<TablePane styles="{padding:6, horizontalSpacing:6}">
<columns>
<TablePane.Column width="8*" />
<TablePane.Column width="5*" />
</columns>
<TablePane.Row height="1*">
<Expander title="Left Top Expander">
<Label text="Left" styles="{verticalAlignment:'center', horizontalAlignment:'center', wrapText:true}" />
</Expander>
<Expander title="Right Top Expander" collapsible="false">
<Label text="$msg" styles="{verticalAlignment:'center', horizontalAlignment:'center', wrapText:true}" />
</Expander>
</TablePane.Row>
<TablePane.Row height="1*">
<Expander title="Left Bottom Expander, disabled" enabled="false">
<Label text="Left" styles="{verticalAlignment:'center', horizontalAlignment:'center', wrapText:true}" />
</Expander>
<Expander title="Right Bottom Expander, disabled" collapsible="false" enabled="false">
<Label text="$msg" styles="{verticalAlignment:'center', horizontalAlignment:'center', wrapText:true}" />
</Expander>
</TablePane.Row>
</TablePane>
</Window>