Sayonara Player
MimeDataUtils.h
1 /* MimeDataUtils.h */
2 
3 /* Copyright (C) 2011-2019 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 
29 class QStringList;
30 class QString;
31 
32 namespace Gui
33 {
34  class CustomMimeData;
35 
36  namespace MimeData
37  {
44  MetaDataList metadata(const QMimeData* data);
45 
52  QStringList playlists(const QMimeData* data);
53 
60  void set_cover_url(QMimeData* data, const QString& url);
61 
68  QString cover_url(const QMimeData* data);
69 
76  CustomMimeData* custom_mimedata(QMimeData* data);
77 
84  const CustomMimeData* custom_mimedata(const QMimeData* data);
85 
92  bool is_player_drag(const QMimeData* data);
93 
101  bool is_inner_drag_drop(const QMimeData* data, int target_playlist_idx);
102 
109  bool is_drag_from_playlist(const QMimeData* data);
110  }
111 }
112 
113 #endif // MimeDataUtils_H
MetaDataList metadata(const QMimeData *data)
metadata
QStringList playlists(const QMimeData *data)
playlists
Definition: AbstractLibrary.h:36
bool is_drag_from_playlist(const QMimeData *data)
is_drag_from_playlist
The MetaDataList class.
Definition: MetaDataList.h:37
void set_cover_url(QMimeData *data, const QString &url)
set_cover_url
bool is_inner_drag_drop(const QMimeData *data, int target_playlist_idx)
is_inner_drag_drop
QString cover_url(const QMimeData *data)
cover_url
bool is_player_drag(const QMimeData *data)
is_player_drag
const CustomMimeData * custom_mimedata(const QMimeData *data)
custom_mimedata