MAK Data Logger API Documentation for HLA
Home
Modules
Namespaces
Classes
Files
Examples
Libraries
File List
File Members
libsrc
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: 119313 $ $State: Exp $
7
*******************************************************************************/
8
9
#pragma once
10
#include "
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 Mon Jan 19 08:20:14 EST 2015 from SVN revision 149581
Copyright © 2005-2012 VT MÄK. All Rights Reserved (
www.mak.com
)