<?xml version="1.0" encoding="UTF-8"?>
<!--
    SPDX-License-Identifier: CC0-1.0
    SPDX-FileNotice: Part of the Addon Academy "Preferences Page" demo.
-->
<ui version="4.0">
 <class>Gui::Dialog::DlgSettingsTransmogrifier</class>
 <widget class="QWidget" name="Gui::Dialog::DlgSettingsTransmogrifier">
  <property name="geometry">
   <rect>
    <x>0</x>
    <y>0</y>
    <width>480</width>
    <height>400</height>
   </rect>
  </property>
  <property name="windowTitle">
   <string>General settings</string>
  </property>
  <layout class="QVBoxLayout" name="mainLayout">

   <item>
    <widget class="QGroupBox" name="targetGroup">
     <property name="title">
      <string>Target</string>
     </property>
     <layout class="QFormLayout" name="targetLayout">
      <item row="0" column="0">
       <widget class="QLabel" name="labelTargetForm">
        <property name="text">
         <string>Default target form</string>
        </property>
       </widget>
      </item>
      <item row="0" column="1">
       <widget class="Gui::PrefComboBox" name="targetForm">
        <property name="prefEntry" stdset="0">
         <cstring>DefaultTargetForm</cstring>
        </property>
        <property name="prefPath" stdset="0">
         <cstring>Mod/Transmogrifier</cstring>
        </property>
        <item><property name="text"><string>Tiger</string></property></item>
        <item><property name="text"><string>Dinosaur</string></property></item>
        <item><property name="text"><string>Worm</string></property></item>
        <item><property name="text"><string>Owl</string></property></item>
        <item><property name="text"><string>Octopus</string></property></item>
        <item><property name="text"><string>Robot</string></property></item>
        <item><property name="text"><string>Susie Derkins</string></property></item>
       </widget>
      </item>
      <item row="1" column="0">
       <widget class="QLabel" name="labelOperator">
        <property name="text">
         <string>Operator name</string>
        </property>
       </widget>
      </item>
      <item row="1" column="1">
       <widget class="Gui::PrefLineEdit" name="operatorName">
        <property name="prefEntry" stdset="0">
         <cstring>OperatorName</cstring>
        </property>
        <property name="prefPath" stdset="0">
         <cstring>Mod/Transmogrifier</cstring>
        </property>
       </widget>
      </item>
     </layout>
    </widget>
   </item>

   <item>
    <widget class="QGroupBox" name="powerGroup">
     <property name="title">
      <string>Power and timing</string>
     </property>
     <layout class="QFormLayout" name="powerLayout">
      <item row="0" column="0">
       <widget class="QLabel" name="labelPower">
        <property name="text">
         <string>Power output (W)</string>
        </property>
       </widget>
      </item>
      <item row="0" column="1">
       <widget class="Gui::PrefSpinBox" name="powerOutput">
        <property name="minimum"><number>1</number></property>
        <property name="maximum"><number>100</number></property>
        <property name="value"><number>50</number></property>
        <property name="prefEntry" stdset="0">
         <cstring>PowerOutput</cstring>
        </property>
        <property name="prefPath" stdset="0">
         <cstring>Mod/Transmogrifier</cstring>
        </property>
       </widget>
      </item>
      <item row="1" column="0">
       <widget class="QLabel" name="labelCooldown">
        <property name="text">
         <string>Cooldown duration (s)</string>
        </property>
       </widget>
      </item>
      <item row="1" column="1">
       <widget class="Gui::PrefDoubleSpinBox" name="cooldownDuration">
        <property name="decimals"><number>1</number></property>
        <property name="minimum"><double>0.0</double></property>
        <property name="maximum"><double>3600.0</double></property>
        <property name="value"><double>5.0</double></property>
        <property name="prefEntry" stdset="0">
         <cstring>CooldownDuration</cstring>
        </property>
        <property name="prefPath" stdset="0">
         <cstring>Mod/Transmogrifier</cstring>
        </property>
       </widget>
      </item>
     </layout>
    </widget>
   </item>

   <item>
    <widget class="QGroupBox" name="safetyGroup">
     <property name="title">
      <string>Safety</string>
     </property>
     <layout class="QVBoxLayout" name="safetyLayout">
      <item>
       <widget class="Gui::PrefCheckBox" name="safetyInterlock">
        <property name="text">
         <string>Engage safety interlock</string>
        </property>
        <property name="checked"><bool>true</bool></property>
        <property name="prefEntry" stdset="0">
         <cstring>SafetyInterlock</cstring>
        </property>
        <property name="prefPath" stdset="0">
         <cstring>Mod/Transmogrifier</cstring>
        </property>
       </widget>
      </item>
      <item>
       <widget class="Gui::PrefCheckBox" name="reverseMode">
        <property name="text">
         <string>Reverse mode</string>
        </property>
        <property name="prefEntry" stdset="0">
         <cstring>ReverseMode</cstring>
        </property>
        <property name="prefPath" stdset="0">
         <cstring>Mod/Transmogrifier</cstring>
        </property>
       </widget>
      </item>
     </layout>
    </widget>
   </item>

   <item>
    <spacer name="verticalSpacer">
     <property name="orientation"><enum>Qt::Vertical</enum></property>
     <property name="sizeHint" stdset="0">
      <size><width>20</width><height>40</height></size>
     </property>
    </spacer>
   </item>

  </layout>
 </widget>

 <customwidgets>
  <customwidget>
   <class>Gui::PrefComboBox</class>
   <extends>QComboBox</extends>
   <header>Gui/PrefWidgets.h</header>
  </customwidget>
  <customwidget>
   <class>Gui::PrefLineEdit</class>
   <extends>QLineEdit</extends>
   <header>Gui/PrefWidgets.h</header>
  </customwidget>
  <customwidget>
   <class>Gui::PrefSpinBox</class>
   <extends>QSpinBox</extends>
   <header>Gui/PrefWidgets.h</header>
  </customwidget>
  <customwidget>
   <class>Gui::PrefDoubleSpinBox</class>
   <extends>QDoubleSpinBox</extends>
   <header>Gui/PrefWidgets.h</header>
  </customwidget>
  <customwidget>
   <class>Gui::PrefCheckBox</class>
   <extends>QCheckBox</extends>
   <header>Gui/PrefWidgets.h</header>
  </customwidget>
 </customwidgets>

 <resources/>
 <connections/>
</ui>
