LMMS
Loading...
Searching...
No Matches
StringPairDrag.h
Go to the documentation of this file.
1/*
2 * StringPairDrag.h - class StringPairDrag which provides general support
3 * for drag'n'drop of string-pairs
4 *
5 * Copyright (c) 2005-2007 Tobias Doerffel <tobydox/at/users.sourceforge.net>
6 *
7 * This file is part of LMMS - https://lmms.io
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public
11 * License as published by the Free Software Foundation; either
12 * version 2 of the License, or (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public
20 * License along with this program (see COPYING); if not, write to the
21 * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
22 * Boston, MA 02110-1301 USA.
23 *
24 */
25
26#ifndef LMMS_GUI_STRING_PAIR_DRAG_H
27#define LMMS_GUI_STRING_PAIR_DRAG_H
28
29#include <QDrag>
30#include <QDragEnterEvent>
31#include <QDropEvent>
32#include <QMimeData>
33
34#include "lmms_export.h"
35
36class QPixmap;
37
38namespace lmms::gui
39{
40
41
42class LMMS_EXPORT StringPairDrag : public QDrag
43{
44public:
45 StringPairDrag( const QString & _key, const QString & _value,
46 const QPixmap & _icon, QWidget * _w );
47 ~StringPairDrag() override;
48
49 static bool processDragEnterEvent( QDragEnterEvent * _dee,
50 const QString & _allowed_keys );
51 static QString decodeKey( QDropEvent * _de );
52 static QString decodeValue( QDropEvent * _de );
53} ;
54
55
56} // namespace lmms::gui
57
58#endif // LMMS_GUI_STRING_PAIR_DRAG_H
static QString decodeKey(QDropEvent *_de)
Definition StringPairDrag.cpp:106
static QString decodeValue(QDropEvent *_de)
Definition StringPairDrag.cpp:114
static bool processDragEnterEvent(QDragEnterEvent *_dee, const QString &_allowed_keys)
Definition StringPairDrag.cpp:83
StringPairDrag(const QString &_key, const QString &_value, const QPixmap &_icon, QWidget *_w)
Definition StringPairDrag.cpp:42
Definition AudioPortAudio.cpp:223