<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>ConsoleDialog</class>
<widget class="QDialog" name="ConsoleDialog">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>419</width>
<height>607</height>
</rect>
</property>
<property name="windowTitle">
<string>Dialog</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout_2">
<item>
<layout class="QVBoxLayout" name="verticalLayout">
<item>
<widget class="QSplitter" name="splitter">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<property name="childrenCollapsible">
<bool>false</bool>
</property>
<widget class="QPlainTextEdit" name="outputEdit">
<property name="sizePolicy">
<sizepolicy hsizetype="Expanding" vsizetype="Maximum">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="baseSize">
<size>
<width>0</width>
<height>0</height>
</size>
</property>
<property name="readOnly">
<bool>true</bool>
</property>
</widget>
<widget class="QPlainTextEdit" name="inputEdit">
<property name="sizePolicy">
<sizepolicy hsizetype="Expanding" vsizetype="Expanding">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="minimumSize">
<size>
<width>0</width>
<height>40</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>16777215</width>
<height>16777215</height>
</size>
</property>
<property name="baseSize">
<size>
<width>0</width>
<height>0</height>
</size>
</property>
<property name="toolTip">
<string>Enter javascript here then press Evaluate</string>
</property>
</widget>
</widget>
</item>
<item>
<layout class="QHBoxLayout" name="horizontalLayout">
<item>
<widget class="QPushButton" name="clearButton">
<property name="text">
<string>Clear</string>
</property>
</widget>
</item>
<item>
<spacer name="horizontalSpacer">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>40</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
<item>
<widget class="QPushButton" name="closeButton">
<property name="toolTip">
<string>Save and Close</string>
</property>
<property name="text">
<string>Close</string>
</property>
</widget>
</item>
<item>
<widget class="QPushButton" name="evalButton">
<property name="toolTip">
<string>Evaluate Expression (Ctrl+Enter)</string>
</property>
<property name="text">
<string>Evaluate</string>
</property>
<property name="default">
<bool>true</bool>
</property>
</widget>
</item>
</layout>
</item>
</layout>
</item>
</layout>
</widget>
<tabstops>
<tabstop>inputEdit</tabstop>
<tabstop>evalButton</tabstop>
<tabstop>closeButton</tabstop>
<tabstop>outputEdit</tabstop>
</tabstops>
<resources/>
<connections>
<connection>
<sender>closeButton</sender>
<signal>clicked()</signal>
<receiver>ConsoleDialog</receiver>
<slot>accept()</slot>
<hints>
<hint type="sourcelabel">
<x>302</x>
<y>589</y>
</hint>
<hint type="destinationlabel">
<x>786</x>
<y>805</y>
</hint>
</hints>
</connection>
<connection>
<sender>evalButton</sender>
<signal>clicked()</signal>
<receiver>ConsoleDialog</receiver>
<slot>evaluate()</slot>
<hints>
<hint type="sourcelabel">
<x>367</x>
<y>586</y>
</hint>
<hint type="destinationlabel">
<x>374</x>
<y>607</y>
</hint>
</hints>
</connection>
<connection>
<sender>clearButton</sender>
<signal>clicked()</signal>
<receiver>outputEdit</receiver>
<slot>clear()</slot>
<hints>
<hint type="sourcelabel">
<x>32</x>
<y>580</y>
</hint>
<hint type="destinationlabel">
<x>101</x>
<y>266</y>
</hint>
</hints>
</connection>
</connections>
<slots>
<slot>evaluate()</slot>
</slots>
</ui>