1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
|
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>PopulateDictionaryConfig</class>
<widget class="QWidget" name="PopulateDictionaryConfig">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>307</width>
<height>255</height>
</rect>
</property>
<property name="windowTitle">
<string notr="true">Form</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout">
<item>
<widget class="QGroupBox" name="fileGroup">
<property name="title">
<string>Dictionary file</string>
</property>
<layout class="QHBoxLayout" name="horizontalLayout">
<item>
<widget class="FileEdit" name="fileEdit" native="true">
<property name="cfg" stdset="0">
<string notr="true">PopulateDictionary.File</string>
</property>
<property name="dialogTitle" stdset="0">
<string>Pick dictionary file</string>
</property>
</widget>
</item>
</layout>
</widget>
</item>
<item>
<widget class="QGroupBox" name="separatorGroup">
<property name="title">
<string>Word separator</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout_2">
<item>
<widget class="ConfigRadioButton" name="whitespaceRadio">
<property name="text">
<string>Whitespace</string>
</property>
<property name="cfg" stdset="0">
<string notr="true">PopulateDictionary.Lines</string>
</property>
<property name="assignedValue" stdset="0">
<bool>false</bool>
</property>
</widget>
</item>
<item>
<widget class="ConfigRadioButton" name="libeBreakRadio">
<property name="text">
<string>Line break</string>
</property>
<property name="cfg" stdset="0">
<string notr="true">PopulateDictionary.Lines</string>
</property>
<property name="assignedValue" stdset="0">
<bool>true</bool>
</property>
</widget>
</item>
</layout>
</widget>
</item>
<item>
<widget class="QGroupBox" name="methodGroup">
<property name="title">
<string>Method of using words</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout_3">
<item>
<widget class="ConfigRadioButton" name="orderedRadio">
<property name="text">
<string>Ordered</string>
</property>
<property name="cfg" stdset="0">
<string notr="true">PopulateDictionary.Random</string>
</property>
<property name="assignedValue" stdset="0">
<bool>false</bool>
</property>
</widget>
</item>
<item>
<widget class="ConfigRadioButton" name="randomlyRadio">
<property name="text">
<string>Randomly</string>
</property>
<property name="cfg" stdset="0">
<string notr="true">PopulateDictionary.Random</string>
</property>
<property name="assignedValue" stdset="0">
<bool>true</bool>
</property>
</widget>
</item>
</layout>
</widget>
</item>
</layout>
</widget>
<customwidgets>
<customwidget>
<class>ConfigRadioButton</class>
<extends>QRadioButton</extends>
<header>common/configradiobutton.h</header>
</customwidget>
<customwidget>
<class>FileEdit</class>
<extends>QWidget</extends>
<header>common/fileedit.h</header>
<container>1</container>
</customwidget>
</customwidgets>
<resources/>
<connections/>
</ui>
|