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

« back to all changes in this revision

Viewing changes to src/accounts/twitter/TwitterInfoPlugin.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 2012, Dominik Schmidt <domme@tomahawk-player.org>
 
4
 *   Copyright 2012, 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 TWITTERINFOPLUGIN_H
 
21
#define TWITTERINFOPLUGIN_H
 
22
 
 
23
#include "infosystem/InfoSystem.h"
 
24
#include "accounts/twitter/TomahawkOAuthTwitter.h"
 
25
 
 
26
#include <QTweetLib/qtweetuser.h>
 
27
#include <QTweetLib/qtweetstatus.h>
 
28
#include <QTweetLib/qtweetnetbase.h>
 
29
 
 
30
namespace Tomahawk {
 
31
 
 
32
    namespace Accounts {
 
33
        class TwitterAccount;
 
34
    }
 
35
    
 
36
    namespace InfoSystem {
 
37
 
 
38
        class TwitterInfoPlugin  : public InfoPlugin
 
39
        {
 
40
            Q_OBJECT
 
41
 
 
42
        public:
 
43
            TwitterInfoPlugin( Tomahawk::Accounts::TwitterAccount* account );
 
44
            virtual ~TwitterInfoPlugin();
 
45
            
 
46
        public slots:
 
47
            void notInCacheSlot( const Tomahawk::InfoSystem::InfoStringHash criteria, Tomahawk::InfoSystem::InfoRequestData requestData )
 
48
            {
 
49
                Q_UNUSED( criteria );
 
50
                Q_UNUSED( requestData );
 
51
            }
 
52
 
 
53
        protected slots:
 
54
            void init();
 
55
            void pushInfo( Tomahawk::InfoSystem::InfoPushData pushData );
 
56
            void getInfo( Tomahawk::InfoSystem::InfoRequestData requestData )
 
57
            {
 
58
                Q_UNUSED( requestData );
 
59
            }
 
60
 
 
61
        private slots:
 
62
            void connectAuthVerifyReply( const QTweetUser &user );
 
63
            void postLovedStatusUpdateReply( const QTweetStatus& status );
 
64
            void postLovedStatusUpdateError( QTweetNetBase::ErrorCode code, const QString& errorMsg );
 
65
            
 
66
        private:
 
67
            bool refreshTwitterAuth();
 
68
            bool isValid() const;
 
69
            
 
70
            Tomahawk::Accounts::TwitterAccount* m_account;
 
71
            QWeakPointer< TomahawkOAuthTwitter > m_twitterAuth;
 
72
        };
 
73
 
 
74
    }
 
75
 
 
76
}
 
77
 
 
78
#endif // TWITTERINFOPLUGIN_H
 
79
 
 
80
struct A;