aboutsummaryrefslogtreecommitdiffstats
path: root/ui/qt/packet_range_group_box.ui
AgeCommit message (Collapse)AuthorFilesLines
2023-07-18packet_range: Handle depended upon correctly for all casesJohn Thacker1-0/+10
Since we store dependency information in frame data now, we can handle depended upon frames correctly, and for all cases, include individually selected or marked frames: Determine the frames to include, and then Add any dependencies of those frames, including through multiple levels instead of just determining which non displayed frames some displayed frame depends on, and adding them to displayed ranges (even if the packets that depend upon those frames aren't in the range.) The checkbox for including dependencies works and updates for all cases. Since ignored frames are not dissected, we don't calculate their dependencies, which means that there are no interaction terms when determining the counts. Improve the fix for #7667
2023-07-16Qt: Include a checkbox to export without depended upon packetsJohn Thacker1-0/+20
Add a checkbox to allow users to Export Specified Packets without including frames which the displayed frames depend upon. Note that exporting Marked Range and User Range include frames within the range that any displayed frame depends upon. What we almost surely want instead is to include any frame that a displayed frame within the range depends upon. These are often similar, but not the same, especially at the beginning and end. Fix #7667
2017-07-11Qt: Move all utility widgets to widgets subdirectoryRoland Knall1-1/+1
Move all utility widgets to the widgets subdirectory and add separate source_group for their files Correct some alphabetization in ui/qt/CMakeLists.txt noticed during compare. Change-Id: I2d664edc2b32f126438fb673ea53a5ae94cd43d1 Reviewed-on: https://code.wireshark.org/review/22531 Petri-Dish: Michael Mann <mmann78@netscape.net> Reviewed-by: Roland Knall <rknall@gmail.com> Reviewed-by: Michael Mann <mmann78@netscape.net>
2014-11-17Remove some ununused/unmatched <resources/> tags.Jeff Morriss1-1/+0
Change-Id: I0f8e4381b27d1defeb5980692823d297d2f48bab Reviewed-on: https://code.wireshark.org/review/5349 Petri-Dish: Jeff Morriss <jeff.morriss.ws@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Evan Huus <eapache@gmail.com>
2012-10-08Add a PacketRangeGroupBox widget. Use it to implement "Export SelectedGerald Combs1-0/+261
Packets". Not yet tested on Windows. "Ignore Packet" hasn't been implemented so we can't test that either. Create a SyntaxLineEdit widget from the QLineEdit code in DisplayFilterEdit. Use it in the file import and export dialogs and the PacketRangeGroupBox widget. This lets us provide instant feedback instead of popping up an error dialog. Expand the Tango color list based on http://emilis.info/other/extended_tango . Rearrange QtShark.pro to (hopefully) work better with Qt Creator. svn path=/trunk/; revision=45405