~ubuntu-branches/ubuntu/trusty/tomahawk/trusty-proposed

« back to all changes in this revision

Viewing changes to src/libtomahawk/database/DatabaseCommand_LoadAllPlaylists.h

  • Committer: Package Import Robot
  • Author(s): Harald Sitter
  • Date: 2013-03-07 21:50:13 UTC
  • Revision ID: package-import@ubuntu.com-20130307215013-6gdjkdds7i9uenvs
Tags: upstream-0.6.0+dfsg
ImportĀ upstreamĀ versionĀ 0.6.0+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* === This file is part of Tomahawk Player - <http://tomahawk-player.org> ===
 
2
 *
 
3
 *   Copyright 2010-2011, Christian Muehlhaeuser <muesli@tomahawk-player.org>
 
4
 *   Copyright 2011, Leo Franchi <lfranchi@kde.org>
 
5
 *
 
6
 *   Tomahawk is free software: you can redistribute it and/or modify
 
7
 *   it under the terms of the GNU General Public License as published by
 
8
 *   the Free Software Foundation, either version 3 of the License, or
 
9
 *   (at your option) any later version.
 
10
 *
 
11
 *   Tomahawk is distributed in the hope that it will be useful,
 
12
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 
14
 *   GNU General Public License for more details.
 
15
 *
 
16
 *   You should have received a copy of the GNU General Public License
 
17
 *   along with Tomahawk. If not, see <http://www.gnu.org/licenses/>.
 
18
 */
 
19
 
 
20
#ifndef DATABASECOMMAND_LOADALLPLAYLIST_H
 
21
#define DATABASECOMMAND_LOADALLPLAYLIST_H
 
22
 
 
23
#include <QObject>
 
24
#include <QVariantMap>
 
25
 
 
26
#include "Typedefs.h"
 
27
#include "DatabaseCommand.h"
 
28
 
 
29
#include "DllMacro.h"
 
30
 
 
31
class DLLEXPORT DatabaseCommand_LoadAllPlaylists : public DatabaseCommand
 
32
{
 
33
    Q_OBJECT
 
34
 
 
35
public:
 
36
    enum SortOrder {
 
37
        None = 0,
 
38
        ModificationTime = 1
 
39
    };
 
40
    enum SortAscDesc {
 
41
        NoOrder = 0,
 
42
        Ascending = 1,
 
43
        Descending = 2
 
44
    };
 
45
 
 
46
    explicit DatabaseCommand_LoadAllPlaylists( const Tomahawk::source_ptr& s, QObject* parent = 0 )
 
47
        : DatabaseCommand( s, parent )
 
48
        , m_limitAmount( 0 )
 
49
        , m_sortOrder( None )
 
50
        , m_sortDescending( false )
 
51
    {}
 
52
 
 
53
    virtual void exec( DatabaseImpl* );
 
54
    virtual bool doesMutates() const { return false; }
 
55
    virtual QString commandname() const { return "loadallplaylists"; }
 
56
 
 
57
    void setLimit( unsigned int limit ) { m_limitAmount = limit; }
 
58
    void setSortOrder( SortOrder order ) { m_sortOrder = order; }
 
59
    void setSortDescending( bool descending ) { m_sortDescending = descending; }
 
60
 
 
61
signals:
 
62
    void done( const QList<Tomahawk::playlist_ptr>& playlists );
 
63
 
 
64
private:
 
65
    unsigned int m_limitAmount;
 
66
    SortOrder m_sortOrder;
 
67
    bool m_sortDescending;
 
68
};
 
69
 
 
70
#endif // DATABASECOMMAND_LOADALLPLAYLIST_H