1<?xml version="1.0" encoding="UTF-8"?>
2<ui version="4.0">
3 <class>JavaScriptSettingsDialog</class>
4 <widget class="QDialog" name="JavaScriptSettingsDialog">
5  <property name="geometry">
6   <rect>
7    <x>0</x>
8    <y>0</y>
9    <width>400</width>
10    <height>209</height>
11   </rect>
12  </property>
13  <property name="windowTitle">
14   <string>JavaScript Settings</string>
15  </property>
16  <property name="sizeGripEnabled">
17   <bool>true</bool>
18  </property>
19  <layout class="QVBoxLayout" name="verticalLayout_2">
20   <item>
21    <widget class="QGroupBox" name="javaScriptGroup">
22     <property name="toolTip">
23      <string>Select to enable JavaScript support</string>
24     </property>
25     <property name="title">
26      <string>Enable JavaScript</string>
27     </property>
28     <property name="checkable">
29      <bool>true</bool>
30     </property>
31     <layout class="QVBoxLayout" name="verticalLayout">
32      <item>
33       <widget class="QCheckBox" name="jsOpenWindowsCheckBox">
34        <property name="toolTip">
35         <string>Select to allow JavaScript to open windows</string>
36        </property>
37        <property name="text">
38         <string>Allow to open windows</string>
39        </property>
40       </widget>
41      </item>
42      <item>
43       <widget class="QCheckBox" name="jsActivateWindowsCheckBox">
44        <property name="toolTip">
45         <string>Select to allow JavaScript to activate windows</string>
46        </property>
47        <property name="text">
48         <string>Allow to activate windows</string>
49        </property>
50       </widget>
51      </item>
52      <item>
53       <widget class="QCheckBox" name="jsClipboardCheckBox">
54        <property name="toolTip">
55         <string>Select to allow JavaScript to access the clipboard</string>
56        </property>
57        <property name="text">
58         <string>Allow to access the clipboard</string>
59        </property>
60       </widget>
61      </item>
62      <item>
63       <widget class="QCheckBox" name="jsPasteCheckBox">
64        <property name="toolTip">
65         <string>Select to allow JavaScript to paste from the clipboard (this needs access to the clipboard)</string>
66        </property>
67        <property name="text">
68         <string>Allow to paste from the clipboard</string>
69        </property>
70       </widget>
71      </item>
72     </layout>
73    </widget>
74   </item>
75   <item>
76    <widget class="QDialogButtonBox" name="buttonBox">
77     <property name="orientation">
78      <enum>Qt::Horizontal</enum>
79     </property>
80     <property name="standardButtons">
81      <set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
82     </property>
83    </widget>
84   </item>
85  </layout>
86 </widget>
87 <resources/>
88 <connections>
89  <connection>
90   <sender>buttonBox</sender>
91   <signal>accepted()</signal>
92   <receiver>JavaScriptSettingsDialog</receiver>
93   <slot>accept()</slot>
94   <hints>
95    <hint type="sourcelabel">
96     <x>248</x>
97     <y>254</y>
98    </hint>
99    <hint type="destinationlabel">
100     <x>157</x>
101     <y>274</y>
102    </hint>
103   </hints>
104  </connection>
105  <connection>
106   <sender>buttonBox</sender>
107   <signal>rejected()</signal>
108   <receiver>JavaScriptSettingsDialog</receiver>
109   <slot>reject()</slot>
110   <hints>
111    <hint type="sourcelabel">
112     <x>316</x>
113     <y>260</y>
114    </hint>
115    <hint type="destinationlabel">
116     <x>286</x>
117     <y>274</y>
118    </hint>
119   </hints>
120  </connection>
121 </connections>
122</ui>
123