summaryrefslogtreecommitdiffstats
path: root/examples/dragdrop/dropsite.h
blob: 7f23f1b365d938a14849f2b5022941a68639b1d4 (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
/****************************************************************************
**
** Drop site example implementation
**
** Created : 979899
**
** Copyright (C) 1997-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.
**
*****************************************************************************/

#ifndef DROPSITE_H
#define DROPSITE_H

#include <ntqlabel.h>
#include <ntqmovie.h>
#include "ntqdropsite.h"

class TQDragObject;

class DropSite: public TQLabel
{
    TQ_OBJECT
public:
    DropSite( TQWidget * parent = 0, const char * name = 0 );
    ~DropSite();

signals:
    void message( const TQString& );

protected:
    void dragEnterEvent( TQDragEnterEvent * );
    void dragMoveEvent( TQDragMoveEvent * );
    void dragLeaveEvent( TQDragLeaveEvent * );
    void dropEvent( TQDropEvent * );
    void backgroundColorChange( const TQColor& );

    // this is a normal even
    void mousePressEvent( TQMouseEvent * );
};

class DragMoviePlayer : public TQObject {
    TQ_OBJECT
    TQDragObject* dobj;
    TQMovie movie;
public:
    DragMoviePlayer(TQDragObject*);
private slots:
    void updatePixmap( const TQRect& );
};


#endif