Wireshark-commits: [Wireshark-commits] master 4e7ac43: Qt: Move Profile Dialog to Model/View

From: Wireshark code review <code-review-do-not-reply@xxxxxxxxxxxxx>
Date: Thu, 11 Jul 2019 04:49:09 +0000
URL: https://code.wireshark.org/review/gitweb?p=wireshark.git;a=commit;h=4e7ac431a55ab8da9155e1f040d676569aa6d184
Submitter: "Anders Broman <a.broman58@xxxxxxxxx>"
Changed: branch: master
Repository: wireshark

Commits:

4e7ac43 by Roland Knall (rknall@xxxxxxxxx):

    Qt: Move Profile Dialog to Model/View
    
    Move the profile dialog to a model/view based concept. Display and
    ordering works now, but nothing much else.
    
    Add possibility to filter for profiles, as well as group filters.
    
    Change-Id: I4740ad5aa10feeb31192f8131fb1204f5dca7232
    Reviewed-on: https://code.wireshark.org/review/25141
    Petri-Dish: Roland Knall <rknall@xxxxxxxxx>
    Tested-by: Petri Dish Buildbot
    Reviewed-by: Anders Broman <a.broman58@xxxxxxxxx>
    

Actions performed:

    from  8bb5320   wiretap: Add support of candump logs
     add  4e7ac43   Qt: Move Profile Dialog to Model/View


Summary of changes:
 ui/qt/CMakeLists.txt                |   6 +-
 ui/qt/models/profile_model.cpp      | 557 ++++++++++++++++++++++++++++++++++++
 ui/qt/models/profile_model.h        | 118 ++++++++
 ui/qt/profile_dialog.cpp            | 373 +++++++++---------------
 ui/qt/profile_dialog.h              |  29 +-
 ui/qt/profile_dialog.ui             |  41 ++-
 ui/qt/widgets/profile_tree_view.cpp | 106 +++++++
 ui/qt/widgets/profile_tree_view.h   |  56 ++++
 8 files changed, 1027 insertions(+), 259 deletions(-)
 create mode 100644 ui/qt/models/profile_model.cpp
 create mode 100644 ui/qt/models/profile_model.h
 create mode 100644 ui/qt/widgets/profile_tree_view.cpp
 create mode 100644 ui/qt/widgets/profile_tree_view.h