aboutsummaryrefslogtreecommitdiffstats
path: root/ui/qt
AgeCommit message (Collapse)AuthorFilesLines
2013-07-08New Qt feature: Show related packet list items in the frame numberGerald Combs11-21/+289
column. Conversation spans (setup frame to last frame) are shown with a square bracket. Linked frames are shown with a circle. Use correct column justifications in Qt. Move common justification-related packet list code to ui/packet_list_utils.[ch]. Add a last_frame element to conversation_t. svn path=/trunk/; revision=50447
2013-07-07Make tree_is_expanded array static, add setter/getter function.Jakub Zawadzki1-5/+5
svn path=/trunk/; revision=50433
2013-07-02Preserve symlinks when copying libraries into the application bundle onGerald Combs1-1/+1
OS X so that it doesn't become excessively large. svn path=/trunk/; revision=50317
2013-06-27Propagate the main_window_update change of few commits ago into the qt clientLuis Ontanon4-5/+8
:wq svn path=/trunk/; revision=50198
2013-06-26Move tap-*-common.{h,c} into ui/ since that's the home for common UI functions.Jeff Morriss1-2/+0
svn path=/trunk/; revision=50165
2013-06-26Move tempfile.{h,c} into wsutil.Jeff Morriss2-2/+1
svn path=/trunk/; revision=50163
2013-06-25There's no need to compile timestats.c any more--it's now in libwsutil.Jeff Morriss1-1/+0
svn path=/trunk/; revision=50157
2013-06-25Move a couple of time-related modules into wsutil.Jeff Morriss2-2/+2
A bunch of files didn't really need to include these header files so remove the include line rather than changing it. svn path=/trunk/; revision=50154
2013-06-20Sort the encapsulation type combo box similar to the GTK change in r50077.Gerald Combs1-0/+1
svn path=/trunk/; revision=50081
2013-06-19Try to make it more obvious that you can select unselected task listGerald Combs1-14/+17
items. svn path=/trunk/; revision=50052
2013-06-17Fix qt make buildbot stepAlexis La Goutte1-1/+3
Qt make don't like cp ../../lib/lib{wireshark,wiretap,wsutil}.* . cp: cannot stat `../../lib/lib{wireshark,wiretap,wsutil}.*': No such file or directory svn path=/trunk/; revision=49994
2013-06-16Make the libwiretap Buffer routines usable from C++, and fix the C++ UIGuy Harris2-4/+7
code to handle the API changes for the seek-read routines. svn path=/trunk/; revision=49950
2013-06-13On OS X set the toolbar icon size to match our current icons.Gerald Combs1-1/+2
svn path=/trunk/; revision=49919
2013-06-10Check for QtMacExtras, and if we have it use it to switch to a nativeGerald Combs2-2/+19
title + toolbar on OS X. svn path=/trunk/; revision=49873
2013-06-10Removing libui_dirty.a in r48976 broke CMake + Qt Creator builds. FixGerald Combs1-2/+8
it. svn path=/trunk/; revision=49872
2013-05-25Object::connect: No such signal ↵Alexis La Goutte1-2/+2
WiresharkApplication::captureCaptureUpdateContinue(capture_options*) Object::connect: (sender name: 'qtshark') An omission with latest change in capture_session... svn path=/trunk/; revision=49579
2013-05-25Apply change of Bug 8706 ( "Stream" should be changed to "Follow Stream" in ↵Alexis La Goutte1-2/+2
the 'Font and Colors' dialog ) / revision 49488 to Qtshark svn path=/trunk/; revision=49577
2013-05-22Turn "packet_is_ssl()" into a general "does the packet whose dissectionGuy Harris1-1/+1
is in this epan_dissect_t contain the field whose name is passed as an argument" routine in libwireshark, and use it where we used packet_is_ssl(). (We should check to see if anything *else* could use it.) svn path=/trunk/; revision=49530
2013-05-22Include "ui/recent_utils.h" so that the functions we define are checkedGuy Harris1-0/+1
against the declarations for them. svn path=/trunk/; revision=49528
2013-05-22And a few more fixes. Put wrappers in capture_session.h to make it workGuy Harris1-2/+2
from C++. svn path=/trunk/; revision=49511
2013-05-22More capture_options -> capture_session fixes.Guy Harris3-10/+12
svn path=/trunk/; revision=49510
2013-05-22More capture_options -> capture_session fixes.Guy Harris1-16/+16
svn path=/trunk/; revision=49509
2013-05-22And handle the no-libpcap case here as well.Guy Harris1-0/+2
svn path=/trunk/; revision=49508
2013-05-22More capture_options -> capture_session fixes.Guy Harris1-7/+7
svn path=/trunk/; revision=49506
2013-05-22Include "capture_session.h" to define capture_session.Guy Harris1-0/+1
svn path=/trunk/; revision=49504
2013-05-22More capture_options -> capture_session changes.Guy Harris6-29/+30
svn path=/trunk/; revision=49499
2013-05-22And reflect the new capture_options structure here.Guy Harris1-0/+3
svn path=/trunk/; revision=49494
2013-05-22Pull the capture-session state information out of capture_opts and putGuy Harris1-1/+3
it into a separate capture_session structure. capture_opts should contain only user-specified option information (and stuff directly derived from it, such as the "capturing from a pipe" flag). svn path=/trunk/; revision=49493
2013-05-22There are clearly not enough different sets of build tools out there, soGuy Harris1-1/+1
it's always nice when there's a new one, especially one that can't share file lists with others. Remove capture_unix_ifnames.c from YET ANOTHER build tool file. svn path=/trunk/; revision=49492
2013-05-22Rename capture_opts_trim_iface() toGuy Harris1-2/+4
capture_opts_default_iface_if_necessary(), to reflect what it actually does. svn path=/trunk/; revision=49491
2013-05-20Fix Typo about filenameAlexis La Goutte1-1/+1
svn path=/trunk/; revision=49455
2013-05-20From Richard Turner via ↵Alexis La Goutte1-25/+42
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8630 QtShark doesn't quit properly after closing the main window during initialization When trying to close the QtShark application during its initialization process (by hitting the "close" button), the processes "qtshark.exe" and "dumpcap.exe" don't terminate properly The patch contains fix to: 1. QtShark doesn't quit properly after closing the main window during initialization 2. User is not prompted to save the capture to file when user chooses to exit the program during capturing. 3. Bug exists in function MainWindow::testCaptureFileClose(bool from_quit, QString &before_what), which prevent it from behaving correctly when from_quit == true. svn path=/trunk/; revision=49454
2013-05-20From report of mot990-8omk7tp8mio8ro via ↵Alexis La Goutte3-0/+22
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8469 QtShark (wireshark-qt) doesn't use the saved preferences Detail about this issue : Bug is reproduced when accessing Preferences Dialog before QtShark start-up is finished, specifically before preferences loading is completed which comes very late in the initialization process. Fix from Richard Turner : Patch to fix problems arising from users interacting with main interface before initialization is complete Introduced a new slot function in main window for the locking of features before init complete and for the unlocking of features after all systems good to go. svn path=/trunk/; revision=49453
2013-05-13lupdate/lrelease ui/qt/QtShark.pro Sync with last change in Qt FilesAlexis La Goutte4-408/+933
svn path=/trunk/; revision=49272
2013-05-13Add Some missing text to translateAlexis La Goutte6-13/+13
svn path=/trunk/; revision=49271
2013-05-13Add Some missing text to translateAlexis La Goutte1-2/+2
svn path=/trunk/; revision=49270
2013-04-25Add Qt5 build support with cmake. Just do cmake ... -DENABLE_QT5=ON ...Jörg Mayer1-12/+21
svn path=/trunk/; revision=49042
2013-04-25Fix a warning: sparkline_delegate.h does not contain a Q_OBJECTJörg Mayer1-1/+1
svn path=/trunk/; revision=49039
2013-04-25Update QtShark.pro for Qt5, hopefully without breaking Qt4. Enable theGerald Combs2-6/+13
startup blur on OS X for Qt >= 5. svn path=/trunk/; revision=49036
2013-04-25Send the output of the -D and -L options to the standard output ratherGuy Harris1-46/+35
than the standard error. In Wireshark on Windows, create a console before doing so and destroy it before exiting. Don't do that in TShark or dumpcap, as those are console-mode programs on Windows. This should fix bug 8609 and still allow "wireshark -D" and "wireshark -L" to work when the standard output isn't redirected. svn path=/trunk/; revision=49025
2013-04-24The porting guide for Qt5 requires that Q_OS_ be used insteadJörg Mayer17-66/+66
of Q_WS_ in Qt4 projects See: http://qt-project.org/doc/qt-5.0/qtdoc/portingguide.html svn path=/trunk/; revision=49013
2013-04-11QT: Select default interface if none else is selectedIrene Rüngeler1-0/+6
svn path=/trunk/; revision=48816
2013-04-10Add a license header.Gerald Combs4-0/+93
svn path=/trunk/; revision=48811
2013-04-09Don't try to open <home>/.wireshark on Windows: Wireshark hasn't written toJeff Morriss1-1/+1
that directory since 2001 and reading from that directory was only left in for backwards compatibility with versions prior to r4702. I think it's now safe to remove that backwards compatibility. This eliminates the last argument of get_persconffile_path(). https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8437 svn path=/trunk/; revision=48797
2013-04-08Fix bug in "Import Hex Dump" where data was overwritten in the buffer.Irene Rüngeler1-2/+2
svn path=/trunk/; revision=48787
2013-04-05Add checkbox for the direction indication to the "Import from Hex Dump" dialog.Irene Rüngeler3-0/+23
svn path=/trunk/; revision=48745
2013-04-02OK, if we're setting the file path for the window - which we want to do,Guy Harris1-7/+60
at least on OS X, to set the "proxy icon" - we need to clear the window title *and* the file path before we set it, otherwise the set doesn't happen. While we're at it, clear the file path whenever we're *not* using a path. For temporary files, don't set the file path. The file path is, in fact, the *full path*, not just the last component. svn path=/trunk/; revision=48715
2013-04-02Rename cf_not_saved() to cf_has_unsaved_data() to clarify what itGuy Harris1-3/+3
indicates. (Note: "unsaved data" is more than just "unsaved changes"; it could also mean "temporary file that hasn't been saved anywhere".) svn path=/trunk/; revision=48709
2013-04-02Only enable Edit->Packet Comment... if we can save the file withoutGuy Harris1-1/+1
losing the packet comments, just as we now do in the GTK+ version. svn path=/trunk/; revision=48699
2013-04-01Add routines to file.c to indicate whether:Guy Harris1-35/+9
a save can be done ("can" in the sense of "there's something to save" and in the sense of "we can write that something out"); a "save as" can be done (in the sense of "we can write what we have out"); there's unsaved data to save (which might be unsaved changes or might be a temporary file full of packets); and use them as appropriate. This means that the "unsaved data" indicator in the UI will be turned on for temporary files full of packets as well as for files with unsaved changes; that's what we want. svn path=/trunk/; revision=48693