blob: 836ac45e5364069690ce0c11cdd4694ac2a502bd [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="Scripts diagnostic messages" maximized="true"
bxml:id="window"
xmlns:bxml="http://pivot.apache.org/bxml"
xmlns="org.apache.pivot.wtk"
>
<bxml:script src="scripts_diagnostic_messages.js"/>
<TablePane styles="{horizontalSpacing:4, verticalSpacing:4}">
<columns>
<TablePane.Column width="1*"/>
<TablePane.Column width="1*"/>
<TablePane.Column width="1*"/>
</columns>
<TablePane.Row height="-1">
<BoxPane orientation="vertical" styles="{fill:true}">
<BoxPane styles="{horizontalAlignment:'center'}">
<Label text="Alerts: "/>
<PushButton buttonData="Alert using .alert" ButtonPressListener.buttonPressed="alert1()"/>
<PushButton buttonData="Alert using constructor" ButtonPressListener.buttonPressed="alert2()"/>
</BoxPane>
</BoxPane>
<BoxPane styles="{horizontalAlignment:'center', verticalAlignment:'center'}">
<Label text="Prompts: "/>
<PushButton buttonData="Prompt using .prompt" ButtonPressListener.buttonPressed="prompt1()"/>
<PushButton buttonData="Prompt using constructor" ButtonPressListener.buttonPressed="prompt2()"/>
</BoxPane>
<BoxPane styles="{horizontalAlignment:'center', verticalAlignment:'center'}">
<Label text="Log using System.out/err: "/>
<PushButton buttonData="Log message" ButtonPressListener.buttonPressed="logDirectMessage()"/>
<PushButton buttonData="Log error" ButtonPressListener.buttonPressed="logDirectError()"/>
<Label text=" - "/>
<Label text="Log using Console: "/>
<PushButton buttonData="Log message" ButtonPressListener.buttonPressed="logConsoleMessage()"/>
<PushButton buttonData="Log error" ButtonPressListener.buttonPressed="logConsoleError()"/>
</BoxPane>
</TablePane.Row>
</TablePane>
</Window>