<!DOCTYPE UI><UI version="3.0" stdsetdef="1"> <class>LicenseDialog</class> <widget class="QDialog"> <property name="name"> <cstring>LicenseDialog</cstring> </property> <property name="geometry"> <rect> <x>0</x> <y>0</y> <width>582</width> <height>531</height> </rect> </property> <property name="sizePolicy"> <sizepolicy> <hsizetype>5</hsizetype> <vsizetype>5</vsizetype> <horstretch>0</horstretch> <verstretch>0</verstretch> </sizepolicy> </property> <property name="caption"> <string>License Agreement</string> </property> <property name="sizeGripEnabled"> <bool>true</bool> </property> <vbox> <property name="name"> <cstring>unnamed</cstring> </property> <property name="margin"> <number>11</number> </property> <property name="spacing"> <number>6</number> </property> <widget class="QTextView"> <property name="name"> <cstring>licenseText</cstring> </property> <property name="text"> <string>License text goes here</string> </property> </widget> <widget class="QLayoutWidget"> <property name="name"> <cstring>Layout1</cstring> </property> <hbox> <property name="name"> <cstring>unnamed</cstring> </property> <property name="margin"> <number>0</number> </property> <property name="spacing"> <number>6</number> </property> <spacer> <property name="name" stdset="0"> <cstring>Horizontal Spacing2</cstring> </property> <property name="orientation"> <enum>Horizontal</enum> </property> <property name="sizeType"> <enum>Expanding</enum> </property> <property name="sizeHint"> <size> <width>20</width> <height>20</height> </size> </property> </spacer> <widget class="QPushButton"> <property name="name"> <cstring>buttonReject</cstring> </property> <property name="text"> <string>Reject</string> </property> <property name="accel"> <number>0</number> </property> <property name="autoDefault"> <bool>true</bool> </property> <property name="default"> <bool>true</bool> </property> </widget> <widget class="QPushButton"> <property name="name"> <cstring>buttonAccept</cstring> </property> <property name="text"> <string>Accept</string> </property> <property name="accel"> <number>0</number> </property> <property name="autoDefault"> <bool>true</bool> </property> </widget> </hbox> </widget> </vbox> </widget> <connections> <connection> <sender>buttonReject</sender> <signal>pressed()</signal> <receiver>LicenseDialog</receiver> <slot>reject()</slot> </connection> <connection> <sender>buttonAccept</sender> <signal>clicked()</signal> <receiver>LicenseDialog</receiver> <slot>reject()</slot> </connection> <connection> <sender>buttonAccept</sender> <signal>pressed()</signal> <receiver>LicenseDialog</receiver> <slot>accept()</slot> </connection> </connections> <layoutdefaults spacing="6" margin="11"/> </UI>