diff options
| author | 2007-01-26 03:54:22 +0000 | |
|---|---|---|
| committer | 2007-01-26 03:54:22 +0000 | |
| commit | 1a8a7e6f145613c34ff0604b95370995fc625ef2 (patch) | |
| tree | 79b63ab083ae2eecfbf98170e9d50731f6bb4d67 /src/modules/objects/class_listview.h | |
| parent | fix win compilation and update win projects (diff) | |
| download | KVIrc-1a8a7e6f145613c34ff0604b95370995fc625ef2.tar.gz KVIrc-1a8a7e6f145613c34ff0604b95370995fc625ef2.tar.bz2 KVIrc-1a8a7e6f145613c34ff0604b95370995fc625ef2.zip | |
More Qt 4.x port and the torrent module by Alexander Stillich
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@255 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/objects/class_listview.h')
| -rw-r--r-- | src/modules/objects/class_listview.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/src/modules/objects/class_listview.h b/src/modules/objects/class_listview.h index dff661984..bd5f749cf 100644 --- a/src/modules/objects/class_listview.h +++ b/src/modules/objects/class_listview.h @@ -26,7 +26,7 @@ // //================================================================================= -#include <qlistview.h> +#include "kvi_tal_listview.h" #include <qdragobject.h> #include "class_widget.h" #include "class_listviewitem.h" @@ -41,7 +41,7 @@ public: public: QWidget * widget() { return (QWidget *)object(); }; - void fileDropped(QString &,QListViewItem *); + void fileDropped(QString &,KviTalListViewItem *); protected: virtual bool init(KviKvsRunTimeContext * pContext,KviKvsVariantList *pParams); @@ -73,20 +73,20 @@ protected: bool function_setAcceptDrops(KviKvsObjectFunctionCall *c); protected slots: - void slotClicked(QListViewItem *); - void slotSelectionChanged(QListViewItem *); + void slotClicked(KviTalListViewItem *); + void slotSelectionChanged(KviTalListViewItem *); void slotMultipleSelectionChanged(); - void slotCurrentChanged(QListViewItem *); - void slotReturnPressed(QListViewItem *); - void slotSpacePressed(QListViewItem *); - void slotOnItem(QListViewItem *); - void slotItemExpanded(QListViewItem *); - void slotItemCollapsed(QListViewItem *); - void slotItemRenamed(QListViewItem *,int,const QString &); - void slotRightButtonClicked(QListViewItem * i,const QPoint &coor, int col); + void slotCurrentChanged(KviTalListViewItem *); + void slotReturnPressed(KviTalListViewItem *); + void slotSpacePressed(KviTalListViewItem *); + void slotOnItem(KviTalListViewItem *); + void slotItemExpanded(KviTalListViewItem *); + void slotItemCollapsed(KviTalListViewItem *); + void slotItemRenamed(KviTalListViewItem *,int,const QString &); + void slotRightButtonClicked(KviTalListViewItem * i,const QPoint &coor, int col); }; -class KviKvsMdmListView : public QListView +class KviKvsMdmListView : public KviTalListView { Q_OBJECT public: |
