~ubuntu-branches/debian/sid/kdevelop/sid

« back to all changes in this revision

Viewing changes to kdevdesigner/designer/listboxdnd.h

  • Committer: Bazaar Package Importer
  • Author(s): Jeremy Lainé
  • Date: 2010-05-05 07:21:55 UTC
  • mfrom: (1.2.3 upstream) (5.1.2 squeeze)
  • Revision ID: james.westby@ubuntu.com-20100505072155-h78lx19pu04sbhtn
Tags: 4:4.0.0-2
* Upload to unstable (Closes: #579947, #481832).
* Acknowledge obsolete NMU fixes (Closes: #562410, #546961).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/**********************************************************************
2
 
** Copyright (C) 2002 Trolltech AS.  All rights reserved.
3
 
**
4
 
** This file is part of Qt Designer.
5
 
**
6
 
** This file may be distributed and/or modified under the terms of the
7
 
** GNU General Public License version 2 as published by the Free Software
8
 
** Foundation and appearing in the file LICENSE.GPL included in the
9
 
** packaging of this file.
10
 
**
11
 
** Licensees holding valid Qt Enterprise Edition or Qt Professional Edition
12
 
** licenses may use this file in accordance with the Qt Commercial License
13
 
** Agreement provided with the Software.
14
 
**
15
 
** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
16
 
** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
17
 
**
18
 
** See http://www.trolltech.com/gpl/ for GPL licensing information.
19
 
** See http://www.trolltech.com/pricing.html or email sales@trolltech.com for
20
 
**   information about Qt Commercial License Agreements.
21
 
**
22
 
** Contact info@trolltech.com if any conditions of this licensing are
23
 
** not clear to you.
24
 
**
25
 
**********************************************************************/
26
 
 
27
 
#ifndef LISTBOXDND_H
28
 
#define LISTBOXDND_H
29
 
 
30
 
#include <qptrlist.h>
31
 
#include <qlistbox.h>
32
 
#include "listdnd.h"
33
 
 
34
 
typedef QPtrList<QListBoxItem> ListBoxItemList;
35
 
 
36
 
class ListBoxDnd : public ListDnd
37
 
{
38
 
    Q_OBJECT
39
 
public:
40
 
    // dragModes are enumerated in ListDnd
41
 
    ListBoxDnd( QListBox * eventSource, const char * name = 0 );
42
 
    
43
 
signals:
44
 
    void dropped( QListBoxItem * );
45
 
    void dragged( QListBoxItem * );
46
 
 
47
 
public slots:
48
 
    void confirmDrop( QListBoxItem * );
49
 
 
50
 
protected:
51
 
    virtual bool dropEvent( QDropEvent * event );
52
 
    virtual bool mouseMoveEvent( QMouseEvent * event );
53
 
    virtual void updateLine( const QPoint & pos );
54
 
    virtual bool canDecode( QDragEnterEvent * event );
55
 
 
56
 
private:
57
 
    QListBoxItem * itemAt( QPoint pos );
58
 
    int buildList( ListBoxItemList & list );
59
 
    void insertList( ListBoxItemList & list );
60
 
    void removeList( ListBoxItemList & list );
61
 
};
62
 
 
63
 
#endif //LISTBOXDND_H