MAK Data Logger API Documentation for HLA
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
stringListWidgetItem.h
Go to the documentation of this file.
1 /*******************************************************************************
2 ** Copyright (c) 1992-2024 MAK Technologies, Inc
3 ** All rights reserved.
4 *******************************************************************************/
5 /*******************************************************************************
6 ** $RCSfile: stringListWidgetItem.h,v $ $Revision: 266449 $ $State: Exp $
7 *******************************************************************************/
8 
9 #pragma once
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 };
QString myExtra
Definition: stringListWidgetItem.h:33
#define DT_DLL_TRFCANLZR
Definition: trafficAnalyzerPlugin.h:18
Definition: stringListWidgetItem.h:16

Document ID: Generated on Fri May 31 15:45:35 EDT 2024 from SVN revision 266500
Copyright © 2024 MAK Technologies. All Rights Reserved (www.mak.com)