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
470 B
35 lines
470 B
//
|
|
//
|
|
// 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
|
|
|
|
#include <tdelistview.h>
|
|
|
|
#include <tdelistview.h>
|
|
|
|
/**
|
|
|
|
@author Gav Wood
|
|
*/
|
|
|
|
class ModesList : public TDEListView
|
|
{
|
|
TQ_OBJECT
|
|
|
|
public:
|
|
virtual bool acceptDrag(TQDropEvent *) const;
|
|
ModesList(TQWidget *parent = 0, const char *name = 0);
|
|
};
|
|
|
|
#endif
|