summaryrefslogtreecommitdiffstats
path: root/examples/iconview/main.cpp
blob: f7ed6eeb88430740e03bb6ea3d15f6576e6cc527 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/****************************************************************************
**
** Copyright (C) 1992-2008 Trolltech ASA.  All rights reserved.
**
** This file is part of an example program for TQt.  This example
** program may be used, distributed and modified without limitation.
**
*****************************************************************************/

#include <ntqiconview.h>
#include <ntqapplication.h>
#include <ntqdragobject.h>
#include <ntqpixmap.h>
#include <ntqiconset.h>

#include <ntqmime.h>
#include <stdio.h>

class ListenDND : public TQObject
{
    TQ_OBJECT

public:
    ListenDND( TQWidget *w )
        : view( w )
    {}

public slots:
    void dropped( TQDropEvent *mime ) {
        tqDebug( "Dropped Mimesource %p into the view %p", mime, view );
        tqDebug( "  Formats:" );
        int i = 0;
        const char *str = mime->format( i );
        tqDebug( "    %s", str );
        while ( str ) {
            tqDebug( "    %s", str );
            str = mime->format( ++i );
        }
    };
    void moved() {
        tqDebug( "All selected items were moved to another widget" );
    }

protected:
    TQWidget *view;

};

int main( int argc, char **argv )
{
    TQApplication a( argc, argv );

    TQIconView qiconview;
    qiconview.setSelectionMode( TQIconView::Extended );

    for ( unsigned int i = 0; i < 3000; i++ ) {
	TQIconViewItem *item = new TQIconViewItem( &qiconview, TQString( "Item %1" ).arg( i + 1 ) );
	item->setRenameEnabled( TRUE );
    }

    qiconview.setCaption( "TQt Example - Iconview" );

    ListenDND listen_dnd( &qiconview );
    TQObject::connect( &qiconview, TQ_SIGNAL( dropped( TQDropEvent *, const TQValueList<TQIconDragItem> & ) ),
		      &listen_dnd, TQ_SLOT( dropped( TQDropEvent * ) ) );
    TQObject::connect( &qiconview, TQ_SIGNAL( moved() ), &listen_dnd, TQ_SLOT( moved() ) );

    a.setMainWidget( &qiconview );
    qiconview.show();
    qiconview.resize( qiconview.sizeHint() );

    return a.exec();
}

#include "main.moc"