Added custom about dialog.

This commit is contained in:
Jim Evins
2016-04-11 23:17:47 -04:00
parent 50e52d6675
commit 642739a1ff
7 changed files with 299 additions and 16 deletions
+168
View File
@@ -0,0 +1,168 @@
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>AboutDialog</class>
<widget class="QDialog" name="AboutDialog">
<property name="windowModality">
<enum>Qt::WindowModal</enum>
</property>
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>379</width>
<height>317</height>
</rect>
</property>
<property name="sizePolicy">
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="windowTitle">
<string>About gLabels</string>
</property>
<property name="modal">
<bool>true</bool>
</property>
<layout class="QVBoxLayout" name="verticalLayout" stretch="0,1,0">
<item>
<widget class="QLabel" name="Icon">
<property name="text">
<string/>
</property>
<property name="pixmap">
<pixmap resource="../images.qrc">:/images/glabels-logo.png</pixmap>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
</widget>
</item>
<item>
<widget class="QLabel" name="aboutLabel">
<property name="text">
<string/>
</property>
<property name="textFormat">
<enum>Qt::RichText</enum>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
<property name="margin">
<number>10</number>
</property>
</widget>
</item>
<item>
<layout class="QHBoxLayout" name="horizontalLayout">
<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="licenseButton">
<property name="text">
<string>&amp;License</string>
</property>
</widget>
</item>
<item>
<widget class="QPushButton" name="websiteButton">
<property name="text">
<string>&amp;Website</string>
</property>
</widget>
</item>
<item>
<widget class="QPushButton" name="closeButton">
<property name="text">
<string>&amp;Close</string>
</property>
</widget>
</item>
<item>
<spacer name="horizontalSpacer_2">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>40</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
</layout>
</item>
</layout>
</widget>
<resources>
<include location="../images.qrc"/>
</resources>
<connections>
<connection>
<sender>closeButton</sender>
<signal>clicked()</signal>
<receiver>AboutDialog</receiver>
<slot>accept()</slot>
<hints>
<hint type="sourcelabel">
<x>322</x>
<y>306</y>
</hint>
<hint type="destinationlabel">
<x>340</x>
<y>316</y>
</hint>
</hints>
</connection>
<connection>
<sender>websiteButton</sender>
<signal>clicked()</signal>
<receiver>AboutDialog</receiver>
<slot>onWebsiteButtonClicked()</slot>
<hints>
<hint type="sourcelabel">
<x>202</x>
<y>296</y>
</hint>
<hint type="destinationlabel">
<x>211</x>
<y>312</y>
</hint>
</hints>
</connection>
<connection>
<sender>licenseButton</sender>
<signal>clicked()</signal>
<receiver>AboutDialog</receiver>
<slot>onLicenseButtonClicked()</slot>
<hints>
<hint type="sourcelabel">
<x>110</x>
<y>294</y>
</hint>
<hint type="destinationlabel">
<x>116</x>
<y>313</y>
</hint>
</hints>
</connection>
</connections>
<slots>
<slot>onWebsiteButtonClicked()</slot>
<slot>onLicenseButtonClicked()</slot>
</slots>
</ui>