/* sctp_chunck_statistics_dialog.h * * Wireshark - Network traffic analyzer * By Gerald Combs * Copyright 1998 Gerald Combs * * SPDX-License-Identifier: GPL-2.0-or-later */ #ifndef SCTP_CHUNK_STATISTICS_DIALOG_H #define SCTP_CHUNK_STATISTICS_DIALOG_H #include #include #include #include #include #include "epan/packet.h" #include "epan/value_string.h" #include #include #include #include #include "wireshark_application.h" #include #include #include #include namespace Ui { class SCTPChunkStatisticsDialog; } struct _sctp_assoc_info; class SCTPChunkStatisticsDialog : public QDialog { Q_OBJECT public: explicit SCTPChunkStatisticsDialog(QWidget *parent = 0, const _sctp_assoc_info *assoc = NULL, capture_file *cf = NULL); ~SCTPChunkStatisticsDialog(); public slots: void setCaptureFile(capture_file *cf) { cap_file_ = cf; } private slots: // void on_sectionClicked(int row); // void on_sectionMoved(int logicalIndex, int oldVisualIndex, int newVisualIndex); void on_pushButton_clicked(); void on_actionHideChunkType_triggered(); void on_actionChunkTypePreferences_triggered(); void contextMenuEvent(QContextMenuEvent * event); void on_actionShowAllChunkTypes_triggered(); signals: // void sectionClicked(int); // void sectionMoved(int, int, int); private: Ui::SCTPChunkStatisticsDialog *ui; guint16 selected_assoc_id; capture_file *cap_file_; QMenu ctx_menu_; QPoint selected_point; struct chunkTypes { int row; int id; int hide; char name[30]; }; QMap chunks, tempChunks; void initializeChunkMap(); void fillTable(bool all = false, const _sctp_assoc_info *selected_assoc = NULL); }; #endif // SCTP_CHUNK_STATISTICS_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: */