Sayonara Player
MimeDataUtils.h
1 /* MimeDataUtils.h */
2 
3 /* Copyright (C) 2011-2017 Lucio Carreras
4  *
5  * This file is part of sayonara player
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or
10  * (at your option) any later version.
11 
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16 
17  * You should have received a copy of the GNU General Public License
18  * along with this program. If not, see <http://www.gnu.org/licenses/>.
19  */
20 
21 
22 
23 #ifndef MimeDataUtils_H
24 #define MimeDataUtils_H
25 
26 class QMimeData;
27 class MetaDataList;
28 class CustomMimeData;
29 class QStringList;
30 class QString;
31 
32 namespace Gui
33 {
34  namespace MimeData
35  {
36  MetaDataList metadata(const QMimeData* data);
37 
38  QStringList playlists(const QMimeData* data);
39 
40  void set_cover_url(QMimeData* data, const QString& url);
41  QString cover_url(const QMimeData* data);
42 
43  CustomMimeData* custom_mimedata(QMimeData* data);
44  const CustomMimeData* custom_mimedata(const QMimeData* data);
45 
46  bool is_player_drag(const QMimeData* data);
47  bool is_inner_drag_drop(const QMimeData* data, int target_playlist_idx);
48  bool is_drag_from_playlist(const QMimeData* data);
49  }
50 }
51 
52 #endif // MimeDataUtils_H
Definition: GUI_ControlsBase.h:43
The MetaDataList class.
Definition: MetaDataList.h:37
Mimedata class for drag and dropping metadata.
Definition: CustomMimeData.h:32