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

« back to all changes in this revision

Viewing changes to src/libtomahawk/ContextMenu.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 2010-2011, Jeff Mitchell <jeff@tomahawk-player.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 CONTEXTMENU_H
 
21
#define CONTEXTMENU_H
 
22
 
 
23
#include <QtCore/QSignalMapper>
 
24
#include <QtGui/QMenu>
 
25
 
 
26
#include "Typedefs.h"
 
27
#include "DllMacro.h"
 
28
 
 
29
namespace Tomahawk
 
30
{
 
31
 
 
32
class DLLEXPORT ContextMenu : public QMenu
 
33
{
 
34
Q_OBJECT
 
35
 
 
36
public:
 
37
    enum MenuActions
 
38
    {
 
39
       ActionPlay =         1,
 
40
       ActionQueue =        2,
 
41
       ActionDelete =       4,
 
42
       ActionCopyLink =     8,
 
43
       ActionLove =         16,
 
44
       ActionStopAfter =    32,
 
45
       ActionPage =         64,
 
46
       ActionTrackPage =    65,
 
47
       ActionArtistPage =   66,
 
48
       ActionAlbumPage =    67,
 
49
       ActionEditMetadata = 128
 
50
    };
 
51
 
 
52
    explicit ContextMenu( QWidget* parent = 0 );
 
53
    virtual ~ContextMenu();
 
54
 
 
55
    int supportedActions() const { return m_supportedActions; }
 
56
    void setSupportedActions( int actions ) { m_supportedActions = actions; }
 
57
 
 
58
    void setPlaylistInterface( const Tomahawk::playlistinterface_ptr& plInterface );
 
59
 
 
60
    void setQuery( const Tomahawk::query_ptr& query );
 
61
    void setQueries( const QList<Tomahawk::query_ptr>& queries );
 
62
 
 
63
    void setArtist( const Tomahawk::artist_ptr& artist );
 
64
    void setArtists( const QList<Tomahawk::artist_ptr>& artists );
 
65
 
 
66
    void setAlbum( const Tomahawk::album_ptr& album );
 
67
    void setAlbums( const QList<Tomahawk::album_ptr>& albums );
 
68
 
 
69
    void clear();
 
70
 
 
71
    unsigned int itemCount() const;
 
72
 
 
73
signals:
 
74
    void triggered( int action );
 
75
 
 
76
private slots:
 
77
    void onTriggered( int action );
 
78
    void copyLink();
 
79
    void openPage( MenuActions action );
 
80
    void addToQueue();
 
81
 
 
82
    void onSocialActionsLoaded();
 
83
 
 
84
private:
 
85
    QSignalMapper* m_sigmap;
 
86
    int m_supportedActions;
 
87
 
 
88
    QAction* m_loveAction;
 
89
 
 
90
    QList< Tomahawk::query_ptr > m_queries;
 
91
    QList< Tomahawk::artist_ptr > m_artists;
 
92
    QList< Tomahawk::album_ptr > m_albums;
 
93
 
 
94
    Tomahawk::playlistinterface_ptr m_interface;
 
95
};
 
96
 
 
97
}; // ns
 
98
 
 
99
#endif