MAK Data Logger API Documentation for HLA
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
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
39 
40  // Assignment Operator
41  DtStringListWidgetItem& operator=(const DtStringListWidgetItem& rhs);
42 
43 };

Document ID: Generated on Sun Dec 15 18:04:30 EST 2013 from SVN revision 134418
Copyright © 2005-2012 VT MÄK. All Rights Reserved (www.mak.com)