MAK Data Logger API Documentation for DIS
Home
Modules
Namespaces
Classes
Files
Examples
Libraries
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Groups
Pages
include
trafficAnalyzer
stringListViewItem.h
Go to the documentation of this file.
1
/*******************************************************************************
2
** Copyright (c) 2006 MAK Technologies, Inc.
3
** All rights reserved.
4
*******************************************************************************/
5
/*******************************************************************************
6
** $RCSfile: stringListViewItem.h,v $ $Revision: 174599 $ $State: Exp $
7
*******************************************************************************/
8
9
#pragma once
10
#include <
trafficAnalyzer/trafficAnalyzerPlugin.h
>
11
12
#include <QTreeWidget>
13
#include <QTreeWidgetItem>
14
15
16
// An extension on Qt's List that allows each item to keep an
17
// extra string with information on type
18
class
DT_DLL_TRFCANLZR
DtStringListViewItem
:
public
QTreeWidgetItem
19
{
20
public
:
21
22
// Constructor
23
DtStringListViewItem
(
QTreeWidget
* parent,
QTreeWidgetItem
* after,
24
const
char
* label,
25
const
char
* extra);
26
DtStringListViewItem
(
QTreeWidgetItem
* parent,
QTreeWidgetItem
* after,
27
const
char
* label,
28
const
char
* extra);
29
30
// Destructor
31
virtual
~
DtStringListViewItem
();
32
33
// Grab the extra information
34
virtual
QString getExtraStringInfo();
35
36
protected
:
37
38
QString
myExtra
;
39
40
private
:
41
42
// Copy Constructor
43
DtStringListViewItem
(
const
DtStringListViewItem
& orig);
44
45
// Assignment Operator
46
DtStringListViewItem
& operator=(
const
DtStringListViewItem
& rhs);
47
48
};
Document ID: Generated on Thu Jul 23 15:05:27 EDT 2020 from SVN revision 215371
Copyright © 2020 MAK Technologies. All Rights Reserved (
www.mak.com
)