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
stringListWidgetItem.h
Go to the documentation of this file.
1
/*******************************************************************************
2
** Copyright (c) 2006 MAK Technologies, Inc.
3
** All rights reserved.
4
*******************************************************************************/
5
/*******************************************************************************
6
** $RCSfile: stringListWidgetItem.h,v $ $Revision: 143799 $ $State: Exp $
7
*******************************************************************************/
8
9
#pragma once
10
#include <
trafficAnalyzer/trafficAnalyzerPlugin.h
>
11
12
#include <QListWidget>
13
14
// An extension on Qt's List that allows each item to keep an
15
// extra string with information on type
16
class
DT_DLL_TRFCANLZR
DtStringListWidgetItem
:
public
QListWidgetItem
17
{
18
public
:
19
20
// Constructor
21
DtStringListWidgetItem
(QListWidget* parent,
int
after,
22
const
char
* label,
23
const
char
* extra);
24
25
// Destructor
26
virtual
~
DtStringListWidgetItem
();
27
28
// Grab the extra information
29
virtual
QString getExtraStringInfo();
30
31
protected
:
32
33
QString
myExtra
;
34
35
private
:
36
37
// Copy Constructor
38
DtStringListWidgetItem
(
const
DtStringListWidgetItem
& orig);
39
40
// Assignment Operator
41
DtStringListWidgetItem
& operator=(
const
DtStringListWidgetItem
& rhs);
42
43
};
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
)