Wireshark  4.3.0
The Wireshark network protocol analyzer
stats_tree_dialog.h
Go to the documentation of this file.
1 
10 #ifndef STATS_TREE_DIALOG_H
11 #define STATS_TREE_DIALOG_H
12 
13 #include "tap_parameter_dialog.h"
14 
15 #include <config.h>
16 
17 #include "epan/stats_tree_priv.h"
18 
19 struct _tree_cfg_pres {
20  class StatsTreeDialog* st_dlg;
21 };
22 
24 {
25  Q_OBJECT
26 
27 public:
28  explicit StatsTreeDialog(QWidget &parent, CaptureFile &cf, const char *cfg_abbr);
29  ~StatsTreeDialog();
30  static void setupNode(stat_node* node);
31 
32 private:
33  struct _tree_cfg_pres cfg_pr_;
34  stats_tree *st_;
35  stats_tree_cfg *st_cfg_;
36 
37  static void resetTap(void *st_ptr);
38  static void drawTreeItems(void *st_ptr);
39  virtual QByteArray getTreeAsString(st_format_type format);
40 
41 private slots:
42  virtual void fillTree();
43 };
44 
45 #endif // STATS_TREE_DIALOG_H
Definition: capture_file.h:21
Definition: stats_tree_dialog.h:24
Definition: tap_parameter_dialog.h:43
enum _st_format_type st_format_type
Definition: stats_tree_priv.h:55
Definition: stats_tree_priv.h:136
Definition: stats_tree_priv.h:102
Definition: tap-stats_tree.c:34