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.
32 lines
650 B
32 lines
650 B
13 years ago
|
#include <qiconview.h>
|
||
|
#include <qstring.h>
|
||
|
|
||
|
#include "dnd.h"
|
||
|
|
||
|
class IconViewItem : public TQIconViewItem
|
||
|
{
|
||
|
public:
|
||
|
IconViewItem( TQIconView * parent, const TQString & text, const TQPixmap & icon, const TQString& tag )
|
||
|
: TQIconViewItem( parent, text, icon ), _tag( tag ) {}
|
||
|
virtual ~IconViewItem() {}
|
||
|
|
||
|
TQString tag() { return _tag; }
|
||
|
|
||
|
private:
|
||
|
TQString _tag;
|
||
|
};
|
||
|
|
||
|
class IconView : public TQIconView
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
IconView( TQWidget* parent = 0, const char* name = 0 );
|
||
|
~IconView();
|
||
|
|
||
|
TQDragObject *dragObject();
|
||
|
|
||
|
public slots:
|
||
|
void slotNewItem( TQDropEvent *t, const TQValueList<TQIconDragItem>& );
|
||
|
};
|