blob: 235bafdb60e7c1b4dbc1089c7d20e1a9cbb91c82 (
plain) (
tree)
|
|
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>LyricsWindow</class>
<widget class="QWidget" name="LyricsWindow">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>513</width>
<height>420</height>
</rect>
</property>
<property name="windowTitle">
<string>Lyrics Plugin</string>
</property>
<layout class="QGridLayout" name="gridLayout">
<property name="leftMargin">
<number>6</number>
</property>
<property name="rightMargin">
<number>6</number>
</property>
<property name="bottomMargin">
<number>6</number>
</property>
<item row="1" column="0" colspan="2">
<widget class="QTextBrowser" name="textBrowser">
<property name="openExternalLinks">
<bool>true</bool>
</property>
</widget>
</item>
<item row="2" column="0">
<widget class="QLabel" name="stateLabel">
<property name="text">
<string>No connection</string>
</property>
</widget>
</item>
<item row="0" column="0" colspan="2">
<layout class="QHBoxLayout" name="horizontalLayout">
<item>
<widget class="QLabel" name="label">
<property name="text">
<string>Artist:</string>
</property>
</widget>
</item>
<item>
<widget class="QLineEdit" name="artistLineEdit"/>
</item>
<item>
<widget class="QLabel" name="label_2">
<property name="text">
<string>Title:</string>
</property>
</widget>
</item>
<item>
<widget class="QLineEdit" name="titleLineEdit"/>
</item>
<item>
<widget class="QPushButton" name="searchPushButton">
<property name="text">
<string>Search</string>
</property>
</widget>
</item>
</layout>
</item>
<item row="2" column="1">
<widget class="QDialogButtonBox" name="buttonBox">
<property name="standardButtons">
<set>QDialogButtonBox::Close</set>
</property>
</widget>
</item>
</layout>
</widget>
<resources/>
<connections>
<connection>
<sender>buttonBox</sender>
<signal>rejected()</signal>
<receiver>LyricsWindow</receiver>
<slot>close()</slot>
<hints>
<hint type="sourcelabel">
<x>465</x>
<y>405</y>
</hint>
<hint type="destinationlabel">
<x>513</x>
<y>391</y>
</hint>
</hints>
</connection>
</connections>
</ui>
|