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
655 B
32 lines
655 B
#include <ntqiconview.h>
|
|
#include <ntqstring.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
|
|
{
|
|
TQ_OBJECT
|
|
|
|
public:
|
|
IconView( TQWidget* parent = 0, const char* name = 0 );
|
|
~IconView();
|
|
|
|
TQDragObject *dragObject();
|
|
|
|
public slots:
|
|
void slotNewItem( TQDropEvent *t, const TQValueList<TQIconDragItem>& );
|
|
};
|