Audio plugin host https://kx.studio/carla
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

187 lines
4.8KB

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <ui version="4.0">
  3. <class>JuceAboutW</class>
  4. <widget class="QDialog" name="JuceAboutW">
  5. <property name="geometry">
  6. <rect>
  7. <x>0</x>
  8. <y>0</y>
  9. <width>463</width>
  10. <height>244</height>
  11. </rect>
  12. </property>
  13. <property name="windowTitle">
  14. <string>About JUCE</string>
  15. </property>
  16. <layout class="QGridLayout" name="gridLayout">
  17. <item row="0" column="0">
  18. <layout class="QVBoxLayout" name="verticalLayout">
  19. <item>
  20. <widget class="QLabel" name="icon">
  21. <property name="minimumSize">
  22. <size>
  23. <width>48</width>
  24. <height>48</height>
  25. </size>
  26. </property>
  27. <property name="maximumSize">
  28. <size>
  29. <width>48</width>
  30. <height>48</height>
  31. </size>
  32. </property>
  33. <property name="text">
  34. <string/>
  35. </property>
  36. <property name="pixmap">
  37. <pixmap resource="../resources.qrc">:/48x48/juce.png</pixmap>
  38. </property>
  39. </widget>
  40. </item>
  41. <item>
  42. <spacer name="verticalSpacer">
  43. <property name="orientation">
  44. <enum>Qt::Vertical</enum>
  45. </property>
  46. <property name="sizeHint" stdset="0">
  47. <size>
  48. <width>20</width>
  49. <height>40</height>
  50. </size>
  51. </property>
  52. </spacer>
  53. </item>
  54. </layout>
  55. </item>
  56. <item row="0" column="1">
  57. <layout class="QVBoxLayout" name="verticalLayout_2">
  58. <item>
  59. <widget class="QLabel" name="l_text1">
  60. <property name="font">
  61. <font>
  62. <pointsize>8</pointsize>
  63. </font>
  64. </property>
  65. <property name="text">
  66. <string>&lt;b&gt;About JUCE&lt;/b&gt;</string>
  67. </property>
  68. </widget>
  69. </item>
  70. <item>
  71. <spacer name="verticalSpacer_3">
  72. <property name="orientation">
  73. <enum>Qt::Vertical</enum>
  74. </property>
  75. <property name="sizeType">
  76. <enum>QSizePolicy::Fixed</enum>
  77. </property>
  78. <property name="sizeHint" stdset="0">
  79. <size>
  80. <width>10</width>
  81. <height>10</height>
  82. </size>
  83. </property>
  84. </spacer>
  85. </item>
  86. <item>
  87. <widget class="QLabel" name="l_text2">
  88. <property name="text">
  89. <string>This program uses JUCE version 3.x.x.</string>
  90. </property>
  91. </widget>
  92. </item>
  93. <item>
  94. <spacer name="verticalSpacer_4">
  95. <property name="orientation">
  96. <enum>Qt::Vertical</enum>
  97. </property>
  98. <property name="sizeType">
  99. <enum>QSizePolicy::Fixed</enum>
  100. </property>
  101. <property name="sizeHint" stdset="0">
  102. <size>
  103. <width>10</width>
  104. <height>10</height>
  105. </size>
  106. </property>
  107. </spacer>
  108. </item>
  109. <item>
  110. <widget class="QLabel" name="l_text3">
  111. <property name="text">
  112. <string>JUCE (Jules' Utility Class Extensions) is an all-encompassing C++ class library for developing cross-platform software.
  113. It contains pretty much everything you're likely to need to create most applications, and is particularly well-suited for building highly-customised GUIs, and for handling graphics and sound.
  114. Most JUCE modules are shared under the GNU Public Licence (GPLv2, v3, and the AGPLv3).
  115. One module (the juce_core module) is permissively licensed under the ISC.</string>
  116. </property>
  117. <property name="wordWrap">
  118. <bool>true</bool>
  119. </property>
  120. </widget>
  121. </item>
  122. <item>
  123. <spacer name="verticalSpacer_2">
  124. <property name="orientation">
  125. <enum>Qt::Vertical</enum>
  126. </property>
  127. <property name="sizeType">
  128. <enum>QSizePolicy::Expanding</enum>
  129. </property>
  130. </spacer>
  131. </item>
  132. </layout>
  133. </item>
  134. <item row="1" column="0" colspan="2">
  135. <widget class="QDialogButtonBox" name="buttonBox">
  136. <property name="orientation">
  137. <enum>Qt::Horizontal</enum>
  138. </property>
  139. <property name="standardButtons">
  140. <set>QDialogButtonBox::Ok</set>
  141. </property>
  142. </widget>
  143. </item>
  144. </layout>
  145. </widget>
  146. <resources>
  147. <include location="../resources.qrc"/>
  148. <include location="../resources.qrc"/>
  149. </resources>
  150. <connections>
  151. <connection>
  152. <sender>buttonBox</sender>
  153. <signal>accepted()</signal>
  154. <receiver>JuceAboutW</receiver>
  155. <slot>accept()</slot>
  156. <hints>
  157. <hint type="sourcelabel">
  158. <x>248</x>
  159. <y>254</y>
  160. </hint>
  161. <hint type="destinationlabel">
  162. <x>157</x>
  163. <y>274</y>
  164. </hint>
  165. </hints>
  166. </connection>
  167. <connection>
  168. <sender>buttonBox</sender>
  169. <signal>rejected()</signal>
  170. <receiver>JuceAboutW</receiver>
  171. <slot>reject()</slot>
  172. <hints>
  173. <hint type="sourcelabel">
  174. <x>316</x>
  175. <y>260</y>
  176. </hint>
  177. <hint type="destinationlabel">
  178. <x>286</x>
  179. <y>274</y>
  180. </hint>
  181. </hints>
  182. </connection>
  183. </connections>
  184. </ui>