aboutsummaryrefslogtreecommitdiffstats
path: root/ui/qt/capture_file.h
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2016-03-18 10:34:41 -0700
committerGerald Combs <gerald@wireshark.org>2016-03-28 16:27:41 +0000
commit6931f581f90d272474b47d4a4606bb93183f449a (patch)
tree08ff02c43d1896ea1d5e14bf28cd9288156e91c8 /ui/qt/capture_file.h
parent7e5dae90d65ed062f2d01c63174cc1c94850a19a (diff)
Qt: Make conversation menu items static.
Add a ConversationAction and ColorizeAction classes which respectively handle conversation filtering and colorization. Move conversation menu initialization to initConversationMenus and call it once at startup. This keeps us from leaking quite a bit of memory each time we select a packet or proto tree item. Bug: 12044 Change-Id: I32e8cedaba08a419d5da6a7a9db31c910909f450 Reviewed-on: https://code.wireshark.org/review/14516 Petri-Dish: Gerald Combs <gerald@wireshark.org> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Gerald Combs <gerald@wireshark.org>
Diffstat (limited to 'ui/qt/capture_file.h')
-rw-r--r--ui/qt/capture_file.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/ui/qt/capture_file.h b/ui/qt/capture_file.h
index af390d4a83..033fa06efa 100644
--- a/ui/qt/capture_file.h
+++ b/ui/qt/capture_file.h
@@ -31,6 +31,8 @@
typedef struct _capture_file capture_file;
typedef struct _capture_session capture_session;
+struct _packet_info;
+
class CaptureFile : public QObject
{
Q_OBJECT
@@ -68,6 +70,12 @@ public:
*/
const QString fileName();
+ /** Return the current packet information.
+ *
+ * @return A pointer to the current packet_info struct or NULL.
+ */
+ struct _packet_info *packetInfo();
+
/** Reload the capture file
*/
void reload();