aboutsummaryrefslogtreecommitdiffstats
path: root/ui/qt/packet_comment_dialog.h
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2012-12-23 04:37:58 +0000
committerGerald Combs <gerald@wireshark.org>2012-12-23 04:37:58 +0000
commita5d5162826b0349b0a7846d8336afdd77ab07a65 (patch)
tree1b47592d5aeb6b4cfcab86bf9264242446fc99b4 /ui/qt/packet_comment_dialog.h
parentaa347d504f65d3c8650c02a3b2cd839d11d0936b (diff)
Qt: Implement packet comments. Fix packet detail updates.
GTK+: Shorten the packet comment menu item name. Remove a couple of unneeded includes. Both: Add an arbitrary 20 MB limit when fetching all packet comments. Use a color from the Tango palette for comments. svn path=/trunk/; revision=46709
Diffstat (limited to 'ui/qt/packet_comment_dialog.h')
-rw-r--r--ui/qt/packet_comment_dialog.h49
1 files changed, 49 insertions, 0 deletions
diff --git a/ui/qt/packet_comment_dialog.h b/ui/qt/packet_comment_dialog.h
new file mode 100644
index 0000000000..2822841e0b
--- /dev/null
+++ b/ui/qt/packet_comment_dialog.h
@@ -0,0 +1,49 @@
+/* packet_comment_dialog.h
+ *
+ * $Id$
+ *
+ * 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 PACKET_COMMENT_DIALOG_H
+#define PACKET_COMMENT_DIALOG_H
+
+#include <QDialog>
+
+namespace Ui {
+class PacketCommentDialog;
+}
+
+class PacketCommentDialog : public QDialog
+{
+ Q_OBJECT
+
+public:
+ explicit PacketCommentDialog(QWidget *parent = 0, QString comment = QString());
+ ~PacketCommentDialog();
+ QString text();
+
+private slots:
+ void on_buttonBox_helpRequested();
+
+private:
+ Ui::PacketCommentDialog *pc_ui_;
+};
+
+#endif // PACKET_COMMENT_DIALOG_H