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.
tqt3/examples/demo/dnd/iconview.h

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>& );
};