Wireshark
4.5.0
The Wireshark network protocol analyzer
Toggle main menu visibility
Main Page
Related Pages
Topics
Namespaces
Namespace List
Namespace Members
All
Variables
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
a
b
c
d
e
f
g
h
i
m
o
p
r
s
t
u
v
w
Variables
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
Files
File List
File Members
All
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
x
Functions
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
x
Variables
Typedefs
a
b
c
d
e
f
g
h
i
m
p
r
s
t
u
v
w
Enumerations
Enumerator
a
b
c
e
f
h
i
n
o
r
s
t
w
Macros
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
w
x
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
Modules
Pages
Loading...
Searching...
No Matches
ui
qt
models
timeline_delegate.h
Go to the documentation of this file.
1
10
#ifndef TIMELINE_DELEGATE_H
11
#define TIMELINE_DELEGATE_H
12
13
/*
14
* @file Timeline delegate.
15
*
16
* QStyledItemDelegate subclass that will draw a timeline indicator for
17
* the specified value.
18
*
19
* This is intended to be used in QTreeWidgets to show timelines, e.g. for
20
* conversations.
21
* To use it, first call setItemDelegate:
22
*
23
* myTreeWidget()->setItemDelegateForColumn(col_time_start_, new TimelineDelegate());
24
*
25
* Then, for each QTreeWidgetItem, set or return a timeline_span for the start and end
26
* of the timeline in pixels relative to the column width.
27
*
28
* setData(col_start_, Qt::UserRole, start_span);
29
* setData(col_end_, Qt::UserRole, end_span);
30
*
31
*/
32
33
#include <QStyledItemDelegate>
34
35
// Pixels are relative to item rect and will be clipped.
36
struct
timeline_span
{
37
int
start;
38
int
width;
39
40
double
startTime;
41
double
stopTime;
42
double
minRelTime;
43
double
maxRelTime;
44
45
int
colStart;
46
int
colDuration;
47
};
36
struct
timeline_span
{
…
};
48
49
Q_DECLARE_METATYPE(
timeline_span
)
50
51
class
TimelineDelegate
: public QStyledItemDelegate
52
{
53
public
:
54
TimelineDelegate
(QWidget *parent = 0);
55
56
void
setDataRole(
int
role);
57
58
protected
:
59
void
paint(QPainter *painter,
const
QStyleOptionViewItem &option,
60
const
QModelIndex &index)
const
;
61
private
:
62
63
int
_dataRole;
64
};
51
class
TimelineDelegate
: public QStyledItemDelegate {
…
};
65
66
#endif
// TIMELINE_DELEGATE_H
TimelineDelegate
Definition
timeline_delegate.h:52
timeline_span
Definition
timeline_delegate.h:36
Generated by
1.9.8