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 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288
|
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>EditExternalScriptBase</class>
<widget class="QWidget" name="EditExternalScriptBase">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>521</width>
<height>400</height>
</rect>
</property>
<layout class="QVBoxLayout">
<item>
<layout class="QFormLayout" name="formLayout">
<item row="0" column="0">
<widget class="QLabel" name="nameLabel">
<property name="text">
<string comment="@label:textbox">&Name:</string>
</property>
<property name="buddy">
<cstring>nameEdit</cstring>
</property>
</widget>
</item>
<item row="0" column="1">
<widget class="QLineEdit" name="nameEdit">
<property name="toolTip">
<string comment="@info:tooltip"><p>The name will also be used as the identifier during code completion.</p>
<p><b>Note:</b> No spaces allowed.</p></string>
</property>
</widget>
</item>
<item row="1" column="0">
<widget class="QLabel" name="commandLabel">
<property name="text">
<string comment="@label:textbox">&Command:</string>
</property>
<property name="buddy">
<cstring>commandEdit</cstring>
</property>
</widget>
</item>
<item row="1" column="1">
<widget class="QLineEdit" name="commandEdit">
</widget>
</item>
<item row="2" column="0">
<widget class="QLabel" name="stdinLabel">
<property name="text">
<string comment="@label:listbox">&Input:</string>
</property>
<property name="buddy">
<cstring>stdinCombo</cstring>
</property>
</widget>
</item>
<item row="2" column="1">
<widget class="QComboBox" name="stdinCombo">
<item>
<property name="text">
<string comment="@item:inlistbox input source">Nothing</string>
</property>
</item>
<item>
<property name="text">
<string comment="@item:inlistbox input source">Selection in Current File or Nothing</string>
</property>
</item>
<item>
<property name="text">
<string comment="@item:inlistbox input source">Selection in Current File or Whole File</string>
</property>
</item>
<item>
<property name="text">
<string comment="@item:inlistbox input source">Contents of Current File</string>
</property>
</item>
</widget>
</item>
<item row="3" column="0">
<widget class="QLabel" name="stdoutLabel">
<property name="text">
<string comment="@label:listbox">&Output:</string>
</property>
<property name="buddy">
<cstring>stdoutCombo</cstring>
</property>
</widget>
</item>
<item row="3" column="1">
<widget class="QComboBox" name="stdoutCombo">
<item>
<property name="text">
<string comment="@item:inlistbox handle output">Ignore</string>
</property>
</item>
<item>
<property name="text">
<string comment="@item:inlistbox handle output">Insert at Cursor Position of Current File</string>
</property>
</item>
<item>
<property name="text">
<string comment="@item:inlistbox handle output">Replace Selection of Current File or Insert at Cursor Position</string>
</property>
</item>
<item>
<property name="text">
<string comment="@item:inlistbox handle output">Replace Selection of Current File or Whole File</string>
</property>
</item>
<item>
<property name="text">
<string comment="@item:inlistbox handle output">Replace Contents of Current File</string>
</property>
</item>
<item>
<property name="text">
<string comment="@item:inlistbox handle output">Create New File</string>
</property>
</item>
</widget>
</item>
<item row="4" column="0">
<widget class="QLabel" name="stderrLabel">
<property name="text">
<string comment="@label:listbox">Errors:</string>
</property>
<property name="buddy">
<cstring>stderrCombo</cstring>
</property>
</widget>
</item>
<item row="4" column="1">
<widget class="QComboBox" name="stderrCombo">
<item>
<property name="text">
<string comment="@item:inlistbox handle errors">Ignore</string>
</property>
</item>
<item>
<property name="text">
<string comment="@item:inlistbox handle errors">Merge with Normal Output</string>
</property>
</item>
<item>
<property name="text">
<string comment="@item:inlistbox handle errors">Insert at Cursor Position of Current File</string>
</property>
</item>
<item>
<property name="text">
<string comment="@item:inlistbox handle errors">Replace Selection of Current File or Insert at Cursor Position</string>
</property>
</item>
<item>
<property name="text">
<string comment="@item:inlistbox handle errors">Replace Selection of Current File or Whole File</string>
</property>
</item>
<item>
<property name="text">
<string comment="@item:inlistbox handle errors">Replace Contents of Current File</string>
</property>
</item>
<item>
<property name="text">
<string comment="@item:inlistbox handle errors">Create New File</string>
</property>
</item>
</widget>
</item>
<item row="5" column="0">
<widget class="QLabel" name="saveLabel">
<property name="text">
<string comment="@label:listbox">Save &mode:</string>
</property>
<property name="buddy">
<cstring>saveCombo</cstring>
</property>
</widget>
</item>
<item row="5" column="1">
<widget class="QComboBox" name="saveCombo">
<item>
<property name="text">
<string comment="@item:inlistbox save mode">Save Nothing</string>
</property>
</item>
<item>
<property name="text">
<string comment="@item:inlistbox save mode">Save Active Document</string>
</property>
</item>
<item>
<property name="text">
<string comment="@item:inlistbox save mode">Save All Open Documents</string>
</property>
</item>
</widget>
</item>
<item row="6" column="0">
<widget class="QLabel">
<property name="text">
<string comment="@option:check">Show out&put:</string>
</property>
<property name="buddy">
<cstring>showOutputBox</cstring>
</property>
</widget>
</item>
<item row="6" column="1">
<widget class="QCheckBox" name="showOutputBox">
<property name="checked">
<bool>true</bool>
</property>
</widget>
</item>
<item row="7" column="0">
<widget class="QLabel" name="outputFilterLabel">
<property name="text">
<string comment="@label:listbox">Output filter:</string>
</property>
<property name="buddy">
<cstring>outputFilterCombo</cstring>
</property>
</widget>
</item>
<item row="7" column="1">
<widget class="QComboBox" name="outputFilterCombo">
<item>
<property name="text">
<string comment="@item:inlistbox output filter">No Filter</string>
</property>
</item>
<item>
<property name="text">
<string comment="@item:inlistbox output filter">Compiler Filter</string>
</property>
</item>
<item>
<property name="text">
<string comment="@item:inlistbox output filter">Script Error Filter</string>
</property>
</item>
<item>
<property name="text">
<string comment="@item:inlistbox output filter">Static Analysis Filter</string>
</property>
</item>
</widget>
</item>
<item row="8" column="0">
<widget class="QLabel" name="shortcutLabel">
<property name="toolTip">
<string comment="@info:tooltip">Defines shortcuts you can use to execute this script.</string>
</property>
<property name="text">
<string comment="@label:chooser">Shortcut:</string>
</property>
</widget>
</item>
<item row="8" column="1">
<widget class="KShortcutWidget" name="shortcutWidget"/>
</item>
</layout>
</item>
<item>
<widget class="QDialogButtonBox" name="buttonBox">
<property name="standardButtons">
<set>QDialogButtonBox::Apply|QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
</property>
</widget>
</item>
</layout>
</widget>
<customwidgets>
<customwidget>
<class>KShortcutWidget</class>
<extends>QWidget</extends>
<header>KShortcutWidget</header>
</customwidget>
</customwidgets>
<resources/>
<connections/>
</ui>
|