kdelirc
modeslist.cpp
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013 #include <QWidget>
00014
00015 #include <QDropEvent>
00016
00017 #include <kdebug.h>
00018
00019 #include "modeslist.h"
00020
00021 ModesList::ModesList(QWidget *parent, const char *name) : K3ListView(parent)
00022 {
00023 setAcceptDrops(true);
00024 setDropVisualizer(false);
00025 setDropHighlighter(true);
00026 }
00027
00028 bool ModesList::acceptDrag(QDropEvent *) const
00029 {
00030
00031
00032 return true;
00033 }
00034
00035 #include "modeslist.moc"