-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpropertiespage.ui
108 lines (108 loc) · 3.09 KB
/
propertiespage.ui
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
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>PropertiesPage</class>
<widget class="QWizardPage" name="PropertiesPage">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>400</width>
<height>300</height>
</rect>
</property>
<property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Expanding">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="windowTitle">
<string>WizardPage</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout">
<item>
<widget class="QLabel" name="pageTitle">
<property name="font">
<font>
<pointsize>14</pointsize>
<weight>75</weight>
<bold>true</bold>
</font>
</property>
<property name="text">
<string>Set torrent properties</string>
</property>
</widget>
</item>
<item>
<widget class="QLabel" name="commentLabel">
<property name="text">
<string>Comment</string>
</property>
</widget>
</item>
<item>
<widget class="QLineEdit" name="comment"/>
</item>
<item>
<layout class="QHBoxLayout" name="horizontalLayout">
<item>
<widget class="QComboBox" name="pieceSize">
<property name="toolTip">
<string>If set to"auto," a piece size will be calculated such that the torrent file is roughly 40 kB.</string>
</property>
</widget>
</item>
<item>
<widget class="QLabel" name="pieceSizeLabel">
<property name="text">
<string>Piece size</string>
</property>
</widget>
</item>
</layout>
</item>
<item>
<widget class="QCheckBox" name="includeFileModTimes">
<property name="toolTip">
<string>This will include the file modification time as part of the torrent.
This is not enabled by default, as it might cause problems
when you create a torrent from separate files with the same content,
hoping to yield the same info-hash. If the files have different
modification times, with this option enabled, you would get
different info-hashes for the files.</string>
</property>
<property name="text">
<string>Include file modification times</string>
</property>
</widget>
</item>
<item>
<widget class="QCheckBox" name="includeSymlinks">
<property name="toolTip">
<string>If this flag is set, files that are symlinks get a symlink attribute set on
them and their data will not be included in the torrent.
This is useful if you need to reconstruct a file hierarchy which
contains symlinks.</string>
</property>
<property name="text">
<string>Include symlinks</string>
</property>
</widget>
</item>
<item>
<widget class="QCheckBox" name="privateTorrent">
<property name="toolTip">
<string>Sets the private flag, which instructs torrent clients to
not use DHT or PEX.</string>
</property>
<property name="text">
<string>Private torrent</string>
</property>
</widget>
</item>
</layout>
</widget>
<resources/>
<connections/>
</ui>