summaryrefslogtreecommitdiff
path: root/ui/qt/lte_rlc_graph_dialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'ui/qt/lte_rlc_graph_dialog.h')
-rw-r--r--ui/qt/lte_rlc_graph_dialog.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/ui/qt/lte_rlc_graph_dialog.h b/ui/qt/lte_rlc_graph_dialog.h
index 28755f873c..ba602f2c4e 100644
--- a/ui/qt/lte_rlc_graph_dialog.h
+++ b/ui/qt/lte_rlc_graph_dialog.h
@@ -42,9 +42,12 @@ public:
// TODO: will need to add another constructor option to give channel explicitly,
// rather than find in currently selected packet, for when launch graph from
// RLC statistics dialog.
- explicit LteRlcGraphDialog(QWidget &parent, CaptureFile &cf);
+ explicit LteRlcGraphDialog(QWidget &parent, CaptureFile &cf, bool channelKnown);
~LteRlcGraphDialog();
+ void setChannelInfo(guint16 ueid, guint8 rlcMode,
+ guint16 channelType, guint16 channelId, guint8 direction);
+
protected:
void showEvent(QShowEvent *event);
void keyPressEvent(QKeyEvent *event);
@@ -68,6 +71,8 @@ private:
QCPGraph *acks_graph_;
QCPGraph *nacks_graph_;
+ void completeGraph();
+
bool compareHeaders(rlc_segment *seg);
void findChannel();