stec-platform
vfqlistwidget.h
1 #ifndef VFQLISTWIDGET_H
2 #define VFQLISTWIDGET_H
3 /*
4 *
5 * $LastChangedDate: 2014-08-14 12:47:21 -0400 (Thu, 14 Aug 2014) $
6 * $LastChangedBy: ed $
7 * $Revision: 61 $
8 * $Author: ed $
9 * $URL: svn+ssh://svn.vremsoft.com/var/share/svn/tags/platfom3.4.3/platformglib/vfqlistwidget.h $
10 * $Id: vfqlistwidget.h 61 2014-08-14 16:47:21Z ed $
11 * edc@vremsoft.com
12 *
13 * 19
14 *
15 * *** 2014<c> ***
16 *
17 *
18 */
19 
20 #include <QWidget>
21 #include <QListWidget>
22 #include <QListWidgetItem>
23 #include <QString>
24 #include "platformg_global.h"
25 #include <QPen>
26 #include <QPainter>
27 
33 class PLATFORMGSHARED_EXPORT VFQListWidget : public QListWidget
34 {
35  Q_OBJECT
36 
37 public:
38  explicit VFQListWidget(QWidget *parent = 0);
39 
40 signals:
41  void Signal_itemTextChanged ( QListWidgetItem * item );
42 
43 public slots:
44  void Slot_itemDoubleClicked ( QListWidgetItem * item );
45 
46 };
47 
48 #endif // VFQLISTWIDGET_H
The VFQListWidget class simple lists if needed.
Definition: vfqlistwidget.h:34