/* This file is part of Clementine. Copyright 2011, Paweł Bara Copyright 2011, David Sansome Copyright 2014, Krzysztof Sobiecki Copyright 2014, John Maguire Clementine 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 3 of the License, or (at your option) any later version. Clementine is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with Clementine. If not, see . */ #ifndef CORE_MIMEDATA_H_ #define CORE_MIMEDATA_H_ #include class MimeData : public QMimeData { Q_OBJECT public: MimeData(bool clear = false, bool play_now = false, bool enqueue = false, bool enqueue_next_now = false, bool open_in_new_playlist = false) : override_user_settings_(false), clear_first_(clear), play_now_(play_now), enqueue_now_(enqueue), enqueue_next_now_(enqueue_next_now), open_in_new_playlist_(open_in_new_playlist), name_for_new_playlist_(QString()), from_doubleclick_(false), playlist_id(-1) {} // If this is set then MainWindow will not touch any of the other flags. bool override_user_settings_; // If this is set then the playlist will be cleared before these songs // are inserted. bool clear_first_; // If this is set then the first item that is inserted will start playing // immediately. Note: this is always overridden with the user's preference // if the MimeData goes via MainWindow, unless you set // override_user_settings_. bool play_now_; // If this is set then the items are added to the queue after being inserted. bool enqueue_now_; // If this is set then the items are added to the beginning of the queue after // being inserted. bool enqueue_next_now_; // If this is set then the items are inserted into a newly created playlist. bool open_in_new_playlist_; // This serves as a name for the new playlist in 'open_in_new_playlist_' mode. QString name_for_new_playlist_; // This can be set if this MimeData goes via MainWindow (ie. it is created // manually in a double-click). The MainWindow will set the above flags to // the defaults set by the user. bool from_doubleclick_; // The Network Remote can use this MimeData to drop songs on another // playlist than the one currently opened on the server int playlist_id; // Returns a pretty name for a playlist containing songs described by this // MimeData // object. By pretty name we mean the value of 'name_for_new_playlist_' or // generic // "Playlist" string if the 'name_for_new_playlist_' attribute is empty. QString get_name_for_new_playlist() { return name_for_new_playlist_.isEmpty() ? tr("Playlist") : name_for_new_playlist_; } }; #endif // CORE_MIMEDATA_H_