Wireshark-commits: [Wireshark-commits] master 4921e55: Qt: Initial VoIP Calls dialog.

From: Wireshark code review <code-review-do-not-reply@xxxxxxxxxxxxx>
Date: Tue, 9 Dec 2014 21:25:36 +0000 (UTC)
URL: https://code.wireshark.org/review/gitweb?p=wireshark.git;a=commit;h=4921e559906aee70c4665f1c739057e227787e01
Submitter: Gerald Combs (gerald@xxxxxxxxxxxxx)
Changed: branch: master
Repository: wireshark

Commits:

4921e55 by Gerald Combs (gerald@xxxxxxxxxxxxx):

    Qt: Initial VoIP Calls dialog.
    
    Add Telephony menu items for VoIP Calls and SIP Flows. Put VoIP Calls at
    the top, since that seems to be the primary item.
    
    Add configure-time checks for QtMultimediaWidgets in anticipation of
    adding a VoIP playback dialog.
    
    Add an icon for the playback button. (Yes, I've been avoiding
    GNOME-level gratuitous icons so far but this is one of the rare
    occiasions where it makes sense.)
    
    Add a help link define for the VoIP calls dialog.
    
    Change-Id: I5d0799685c598ad9af76fe9667f8ea7d14b66050
    Reviewed-on: https://code.wireshark.org/review/5674
    Petri-Dish: Gerald Combs <gerald@xxxxxxxxxxxxx>
    Tested-by: Petri Dish Buildbot <buildbot-no-reply@xxxxxxxxxxxxx>
    Reviewed-by: Gerald Combs <gerald@xxxxxxxxxxxxx>
    

Actions performed:

    from  3147087   Fix ranlib "has no symbols" errors in the codecs directory.
    adds  4921e55   Qt: Initial VoIP Calls dialog.


Summary of changes:
 CMakeLists.txt                                     |   12 +-
 acinclude.m4                                       |    7 +
 cmakeconfig.h.in                                   |    3 +
 docbook/release-notes.asciidoc                     |    1 +
 epan/CMakeLists.txt                                |    2 +-
 image/toolbar.qrc                                  |    2 +
 image/toolbar/12x12/media-playback-start.png       |  Bin 0 -> 256 bytes
 image/toolbar/12x12/media-playback-start.svg       |  185 +++++++
 image/toolbar/12x12/media-playback-start@xxxxxx    |  Bin 0 -> 443 bytes
 image/toolbar/svg-to-png.sh                        |   18 +-
 ui/gtk/voip_calls_dlg.c                            |   22 +-
 ui/help_url.c                                      |    3 +
 ui/help_url.h                                      |    3 +-
 ui/qt/CMakeLists.txt                               |    3 +
 ui/qt/Makefile.am                                  |    2 +
 ui/qt/Makefile.common                              |    8 +-
 ui/qt/Wireshark.pro                                |   13 +-
 ui/qt/follow_stream_dialog.cpp                     |    1 -
 ui/qt/main_window.h                                |    3 +
 ui/qt/main_window.ui                               |   18 +
 ui/qt/main_window_slots.cpp                        |   23 +
 ui/qt/sequence_diagram.cpp                         |    9 +-
 ui/qt/sequence_diagram.h                           |    2 +-
 ui/qt/sequence_dialog.cpp                          |  101 ++--
 ui/qt/sequence_dialog.h                            |   12 +-
 ui/qt/sequence_dialog.ui                           |  251 +++++-----
 ui/qt/stock_icon.cpp                               |    9 +-
 ui/qt/voip_calls_dialog.cpp                        |  508 ++++++++++++++++++++
 ui/qt/voip_calls_dialog.h                          |  107 +++++
 .../{lbm_stream_dialog.ui => voip_calls_dialog.ui} |  107 ++---
 ui/tap-sequence-analysis.c                         |   33 +-
 ui/tap-sequence-analysis.h                         |    6 +-
 ui/voip_calls.h                                    |   18 +-
 33 files changed, 1207 insertions(+), 285 deletions(-)
 create mode 100644 image/toolbar/12x12/media-playback-start.png
 create mode 100644 image/toolbar/12x12/media-playback-start.svg
 create mode 100644 image/toolbar/12x12/media-playback-start@xxxxxx
 create mode 100644 ui/qt/voip_calls_dialog.cpp
 create mode 100644 ui/qt/voip_calls_dialog.h
 copy ui/qt/{lbm_stream_dialog.ui => voip_calls_dialog.ui} (50%)