MAK Data Logger API Documentation for DIS
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: 119313 $ $State: Exp $
7 *******************************************************************************/
8 
9 #pragma once
10 #include "trafficAnalyzerPlugin.h"
11 
12 #include <Q3ListView>
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  DtStringListViewItem(Q3ListView* parent,Q3ListViewItem * after,
22  const char * label,
23  const char * extra);
25  const char * label,
26  const char * extra);
27 
28  // Destructor
29  virtual ~DtStringListViewItem();
30 
31  // Grab the extra information
32  virtual QString getExtraStringInfo();
33 
34 protected:
35 
36  QString myExtra;
37 
38 private:
39 
40  // Copy Constructor
42 
43  // Assignment Operator
44  DtStringListViewItem& operator=(const DtStringListViewItem& rhs);
45 
46 };

Document ID: Generated on Thu Apr 10 18:53:01 EDT 2014 from SVN revision 138105
Copyright © 2005-2012 VT MÄK. All Rights Reserved (www.mak.com)