summaryrefslogtreecommitdiffstats
path: root/kstars/kstars/draglistbox.h
blob: c4fce08bfd7f80a5602c65060afd291d6fc83ef9 (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
/***************************************************************************
                          draglistbox.h  -  description
                             -------------------
    begin                : Sun May 29 2005
    copyright            : (C) 2005 by Jason Harris
    email                : kstars@30doradus.org
 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License as published by  *
 *   the Free Software Foundation; either version 2 of the License, or     *
 *   (at your option) any later version.                                   *
 *                                                                         *
 ***************************************************************************/

#ifndef DRAGLISTBOX_H
#define DRAGLISTBOX_H

#include <klistbox.h>

class QDragEnterEvent;
class QDragDropEvent;

/**@class DragListBox
	*@short Extension of KListBox that allows Drag-and-Drop 
	*with other DragListBoxes
	*@author Jason Harris
	*@version 1.0
	*/

class DragListBox : public KListBox {
	Q_OBJECT
public:
/**@short Default constructor
 */
	DragListBox( TQWidget *parent = 0, const char *name = 0, WFlags = 0 );

/**@short Default destructor
 */
	~DragListBox();

	int ignoreIndex() const { return IgnoreIndex; }
	bool contains( const TQString &s ) const;

	void dragEnterEvent( TQDragEnterEvent *evt );
	void dropEvent( TQDropEvent *evt );
	void mousePressEvent( TQMouseEvent *evt );
	void mouseMoveEvent( TQMouseEvent * );
private:
	bool dragging;
	int IgnoreIndex;

};

#endif //DRAGLISTBOX_H