You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
469 B
35 lines
469 B
15 years ago
|
//
|
||
|
//
|
||
|
// C++ Interface: $MODULE$
|
||
|
//
|
||
|
// Description:
|
||
|
//
|
||
|
//
|
||
|
// Author: Gav Wood <gav@kde.org>, (C) 2003
|
||
|
//
|
||
|
// Copyright: See COPYING file that comes with this distribution
|
||
|
//
|
||
|
//
|
||
|
#ifndef MODESLIST_H
|
||
|
#define MODESLIST_H
|
||
|
|
||
12 years ago
|
#include <tdelistview.h>
|
||
15 years ago
|
|
||
12 years ago
|
#include <tdelistview.h>
|
||
15 years ago
|
|
||
|
/**
|
||
|
|
||
|
@author Gav Wood
|
||
|
*/
|
||
|
|
||
12 years ago
|
class ModesList : public TDEListView
|
||
15 years ago
|
{
|
||
|
Q_OBJECT
|
||
13 years ago
|
|
||
15 years ago
|
public:
|
||
14 years ago
|
virtual bool acceptDrag(TQDropEvent *) const;
|
||
13 years ago
|
ModesList(TQWidget *parent = 0, const char *name = 0);
|
||
15 years ago
|
};
|
||
|
|
||
|
#endif
|