diff options
Diffstat (limited to '')
-rw-r--r-- | ui/qt/capture_options_dialog.ui | 69 |
1 files changed, 50 insertions, 19 deletions
diff --git a/ui/qt/capture_options_dialog.ui b/ui/qt/capture_options_dialog.ui index f1e89146..c9eba3b6 100644 --- a/ui/qt/capture_options_dialog.ui +++ b/ui/qt/capture_options_dialog.ui @@ -98,6 +98,16 @@ </widget> </item> <item> + <widget class="QCheckBox" name="captureMonitorModeCheckBox"> + <property name="toolTip"> + <string><html><head/><body><p>Usually a wireless network card will only capture the traffic sent to and from its own network address, and only captures <em>user data</em> traffic with &quot;fake&quot; Ethernet headers. If you want to capture all traffic that wireless network cards can &quot;see&quot;, or are interested in 802.11 management or control packets, or radio-layer information, mark this option. Monitor mode availability depends on the wireless card and driver. See the Wiki for some more details of capturing packets on WLAN networks.</p></body></html></string> + </property> + <property name="text"> + <string>Enable monitor mode on all 802.11 interfaces</string> + </property> + </widget> + </item> + <item> <spacer name="horizontalSpacer_2"> <property name="orientation"> <enum>Qt::Horizontal</enum> @@ -321,12 +331,6 @@ <property name="buttonSymbols"> <enum>QAbstractSpinBox::PlusMinus</enum> </property> - <property name="minimum"> - <number>1</number> - </property> - <property name="maximum"> - <number>1000000</number> - </property> <property name="value"> <number>1</number> </property> @@ -375,9 +379,6 @@ <property name="buttonSymbols"> <enum>QAbstractSpinBox::PlusMinus</enum> </property> - <property name="minimum"> - <number>1</number> - </property> <property name="maximum"> <number>1000000</number> </property> @@ -431,9 +432,6 @@ For example, use 1 hour to have a new file created every hour on the hour.</stri <property name="buttonSymbols"> <enum>QAbstractSpinBox::PlusMinus</enum> </property> - <property name="minimum"> - <number>1</number> - </property> <property name="maximum"> <number>1000000</number> </property> @@ -473,7 +471,7 @@ For example, use 1 hour to have a new file created every hour on the hour.</stri <property name="title"> <string>compression</string> </property> - <layout class="QVBoxLayout" name="verticalLayout_5"> + <layout class="QVBoxLayout" name="verticalLayout_4"> <item> <widget class="QRadioButton" name="rbCompressionNone"> <property name="text"> @@ -497,6 +495,44 @@ For example, use 1 hour to have a new file created every hour on the hour.</stri </layout> </widget> </item> + <item row="5" column="1" colspan="2"> + <widget class="QGroupBox" name="nameTemplateGB"> + <property name="title"> + <string>File infix pattern</string> + </property> + <property name="toolTip"> + <string><html><head/><body><p>In multiple file mode, the date and time and file index number are inserted between filename template and any suffix. Select their order.</p></body></html></string> + </property> + <layout class="QVBoxLayout" name="verticalLayout_5"> + <item> + <widget class="QRadioButton" name="rbTimeNum"> + <property name="text"> + <string>YYYYmmDDHHMMSS_NNNNN</string> + </property> + <property name="toolTip"> + <string><html><head/><body><p>Date and time before the file index number. This causes files to sort in creation time order, and keeps files from the same batch closely ordered.</p></body></html></string> + </property> + <attribute name="buttonGroup"> + <string notr="true">nameTimeNumBG</string> + </attribute> + </widget> + </item> + <item> + <widget class="QRadioButton" name="rbNumTime"> + <property name="text"> + <string>NNNNN_YYYYmmDDHHMMSS</string> + </property> + <property name="toolTip"> + <string><html><head/><body><p>File index number before the date and time. This is the historic Wireshark ordering.</p></body></html></string> + </property> + <attribute name="buttonGroup"> + <string notr="true">nameTimeNumBG</string> + </attribute> + </widget> + </item> + </layout> + </widget> + </item> <item row="0" column="3" rowspan="4"> <spacer name="horizontalSpacer_8"> <property name="orientation"> @@ -530,9 +566,6 @@ For example, use 1 hour to have a new file created every hour on the hour.</stri <property name="wrapping"> <bool>true</bool> </property> - <property name="minimum"> - <number>2</number> - </property> <property name="maximum"> <number>65535</number> </property> @@ -820,9 +853,6 @@ For example, use 1 hour to have a new file created every hour on the hour.</stri <property name="buttonSymbols"> <enum>QAbstractSpinBox::PlusMinus</enum> </property> - <property name="maximum"> - <number>2147483647</number> - </property> <property name="value"> <number>1</number> </property> @@ -972,5 +1002,6 @@ For example, use 1 hour to have a new file created every hour on the hour.</stri <connections/> <buttongroups> <buttongroup name="buttonGroup"/> + <buttongroup name="nameTimeNumBG"/> </buttongroups> </ui> |