summaryrefslogtreecommitdiff
path: root/ui/qt/protocol_hierarchy_dialog.h
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2015-02-03 08:39:14 -0800
committerGerald Combs <gerald@wireshark.org>2015-02-04 02:06:01 +0000
commit89e6f4c468eaa9b479d7c1a24ca83223f23f5c95 (patch)
tree61938de3b7f33a7c811c477b2b46e10eab053256 /ui/qt/protocol_hierarchy_dialog.h
parent342ba909f910abf48825c069fd2c8b060d56f700 (diff)
downloadwireshark-89e6f4c468eaa9b479d7c1a24ca83223f23f5c95.tar.gz
Qt: Add the Protocol Hierarchy statistics dialog.
Change-Id: I6872e323daca4798c638d764873f54c4c0dc0006 Reviewed-on: https://code.wireshark.org/review/6934 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/protocol_hierarchy_dialog.h')
-rw-r--r--ui/qt/protocol_hierarchy_dialog.h92
1 files changed, 92 insertions, 0 deletions
diff --git a/ui/qt/protocol_hierarchy_dialog.h b/ui/qt/protocol_hierarchy_dialog.h
new file mode 100644
index 0000000000..e7d6e7aced
--- /dev/null
+++ b/ui/qt/protocol_hierarchy_dialog.h
@@ -0,0 +1,92 @@
+/* protocol_hierarchy_dialog.h
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * Copyright 1998 Gerald Combs
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
+
+#ifndef PROTOCOL_HIERARCHY_DIALOG_H
+#define PROTOCOL_HIERARCHY_DIALOG_H
+
+#include "filter_action.h"
+#include "wireshark_dialog.h"
+
+#include <QMenu>
+
+namespace Ui {
+class ProtocolHierarchyDialog;
+}
+
+#include <QStyledItemDelegate>
+
+class PercentBarDelegate : public QStyledItemDelegate
+{
+public:
+ PercentBarDelegate(QWidget *parent = 0) : QStyledItemDelegate(parent) { }
+// void clear();
+// void addRelatedFrame(int frame_num);
+// void setConversationSpan(int first_frame, int last_frame);
+protected:
+ void paint(QPainter *painter, const QStyleOptionViewItem &option,
+ const QModelIndex &index) const;
+ QSize sizeHint(const QStyleOptionViewItem &option,
+ const QModelIndex &index) const;
+
+private:
+};
+
+class ProtocolHierarchyDialog : public WiresharkDialog
+{
+ Q_OBJECT
+
+public:
+ explicit ProtocolHierarchyDialog(QWidget &parent, CaptureFile &cf);
+ ~ProtocolHierarchyDialog();
+
+signals:
+ void filterAction(QString& filter, FilterAction::Action action, FilterAction::ActionType type);
+
+private slots:
+ void showProtoHierMenu(QPoint pos);
+ void filterActionTriggered();
+ void on_buttonBox_helpRequested();
+
+private:
+ Ui::ProtocolHierarchyDialog *ui;
+ QMenu ctx_menu_;
+ PercentBarDelegate percent_bar_delegate_;
+ QString display_filter_;
+
+ // Callback for g_node_children_foreach
+ static void addTreeNode(GNode *node, gpointer data);
+ void updateWidgets();
+};
+
+#endif // PROTOCOL_HIERARCHY_DIALOG_H
+
+/*
+ * Editor modelines
+ *
+ * Local Variables:
+ * c-basic-offset: 4
+ * tab-width: 8
+ * indent-tabs-mode: nil
+ * End:
+ *
+ * ex: set shiftwidth=4 tabstop=8 expandtab:
+ * :indentSize=4:tabSize=8:noTabs=true:
+ */