diff options
author | Gerald Combs <gerald@wireshark.org> | 2012-12-18 17:21:20 +0000 |
---|---|---|
committer | Gerald Combs <gerald@wireshark.org> | 2012-12-18 17:21:20 +0000 |
commit | 7cf5334332fab7fbe47006a315998a3c5fc45929 (patch) | |
tree | cd49bbdee02c477ffb0019be01192a5a4fd3c719 /ui/qt/QtShark.pro | |
parent | ed87fa9e3b9b9cb1e5beaf6d4b1b88a99b993307 (diff) | |
download | wireshark-7cf5334332fab7fbe47006a315998a3c5fc45929.tar.gz wireshark-7cf5334332fab7fbe47006a315998a3c5fc45929.tar.bz2 wireshark-7cf5334332fab7fbe47006a315998a3c5fc45929.zip |
Add an AccordionFrame class which can animate showing and hiding (except
when we detect a remote connection). Use it for the "go to" and search
frames. Properly detect remote connections in the splash overlay.
svn path=/trunk/; revision=46591
Diffstat (limited to 'ui/qt/QtShark.pro')
-rw-r--r-- | ui/qt/QtShark.pro | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/ui/qt/QtShark.pro b/ui/qt/QtShark.pro index f1b9b75fa1..f153aeb3fa 100644 --- a/ui/qt/QtShark.pro +++ b/ui/qt/QtShark.pro @@ -217,7 +217,8 @@ HEADERS += $$HEADERS_WS_C \ export_object_dialog.h \ print_dialog.h \ splash_overlay.h \ - search_frame.h + search_frame.h \ + accordion_frame.h win32 { OBJECTS_WS_C = $$SOURCES_WS_C @@ -394,6 +395,7 @@ HEADERS += \ wireshark_application.h SOURCES += \ + accordion_frame.cpp \ byte_view_tab.cpp \ byte_view_text.cpp \ capture_file_dialog.cpp \ @@ -425,9 +427,9 @@ SOURCES += \ proto_tree.cpp \ qt_ui_utils.cpp \ recent_file_status.cpp \ + search_frame.cpp \ simple_dialog_qt.cpp \ sparkline_delegate.cpp \ splash_overlay.cpp \ syntax_line_edit.cpp \ - wireshark_application.cpp \ - search_frame.cpp + wireshark_application.cpp |