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 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157
|
/****************************************************************************
** $Id: qt/examples/dragdrop/dropsite.cpp 2.3.1 edited 2001-01-26 $
**
** Drop site example implementation
**
** Created : 979899
**
** Copyright (C) 1997 by Trolltech AS. All rights reserved.
**
** This file is part of an example program for Qt. This example
** program may be used, distributed and modified without limitation.
**
*****************************************************************************/
#include "dropsite.h"
#include "secret.h"
#include <qevent.h>
#include <qpixmap.h>
#include <qdragobject.h>
#include <qimage.h>
DropSite::DropSite( QWidget * parent, const char * name )
: QLabel( parent, name )
{
setAcceptDrops(TRUE);
}
DropSite::~DropSite()
{
// nothing necessary
}
void DropSite::dragMoveEvent( QDragMoveEvent * /*e*/ )
{
// Check if you want the drag at e->pos()...
// Give the user some feedback...
}
void DropSite::dragEnterEvent( QDragEnterEvent *e )
{
// Check if you want the drag...
if ( SecretDrag::canDecode( e )
|| QTextDrag::canDecode( e )
|| QImageDrag::canDecode( e )
|| QUrlDrag::canDecode( e ) )
{
e->accept();
}
// Give the user some feedback...
QString t;
for( int i=0; e->format( i ); i++ ) {
if ( *(e->format( i )) ) {
if ( !t.isEmpty() )
t += "\n";
t += e->format( i );
}
}
emit message( t );
setBackgroundColor(white);
}
void DropSite::dragLeaveEvent( QDragLeaveEvent * )
{
// Give the user some feedback...
emit message("");
setBackgroundColor(lightGray);
}
void DropSite::dropEvent( QDropEvent * e )
{
setBackgroundColor(lightGray);
// Try to decode to the data you understand...
QString str;
if ( QTextDrag::decode( e, str ) ) {
setText( str );
setMinimumSize( minimumSize().expandedTo( sizeHint() ) );
return;
}
QPixmap pm;
if ( QImageDrag::decode( e, pm ) ) {
setPixmap( pm );
setMinimumSize( minimumSize().expandedTo( sizeHint() ) );
return;
}
QStrList strings;
if ( QUrlDrag::decode( e, strings ) ) {
QString m("Full URLs:\n");
for (const char* u=strings.first(); u; u=strings.next())
m = m + " " + u + '\n';
QStringList files;
if ( QUrlDrag::decodeLocalFiles( e, files ) ) {
m += "Files:\n";
for (QStringList::Iterator i=files.begin(); i!=files.end(); ++i)
m = m + " " + *i + '\n';
}
setText( m );
setMinimumSize( minimumSize().expandedTo( sizeHint() ) );
return;
}
if ( SecretDrag::decode( e, str ) ) {
setText( str );
setMinimumSize( minimumSize().expandedTo( sizeHint() ) );
return;
}
}
DragMoviePlayer::DragMoviePlayer( QDragObject* p ) :
QObject(p),
dobj(p),
movie("trolltech.gif" )
{
movie.connectUpdate(this,SLOT(updatePixmap(const QRect&)));
}
void DragMoviePlayer::updatePixmap( const QRect& )
{
dobj->setPixmap(movie.framePixmap());
}
void DropSite::mousePressEvent( QMouseEvent * /*e*/ )
{
QDragObject *drobj;
if ( pixmap() ) {
drobj = new QImageDrag( pixmap()->convertToImage(), this );
#if 1
QPixmap pm;
pm.convertFromImage(pixmap()->convertToImage().smoothScale(
pixmap()->width()/3,pixmap()->height()/3));
drobj->setPixmap(pm,QPoint(-5,-7));
#else
// Try it.
(void)new DragMoviePlayer(drobj);
#endif
} else {
drobj = new QTextDrag( text(), this );
}
drobj->dragCopy();
}
void DropSite::backgroundColorChange( const QColor & )
{
// Reduce flicker by using repaint() rather than update()
repaint();
}
|