/usr/include/QTweetLib/qtweetusertimeline.h is in libqtweetlib-dev 0.5+repack1-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 | /* Copyright (c) 2010, Antonie Jovanoski
*
* All rights reserved.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
*
* Contact e-mail: Antonie Jovanoski <minimoog77_at_gmail.com>
*/
#ifndef QTWEETUSERTIMELINE_H
#define QTWEETUSERTIMELINE_H
#include "qtweetnetbase.h"
class QTweetStatus;
/**
* Class for fetching tweets posted by user or other users
*/
class QTWEETLIBSHARED_EXPORT QTweetUserTimeline : public QTweetNetBase
{
Q_OBJECT
Q_PROPERTY(qint64 userID READ userID WRITE setUserID)
Q_PROPERTY(QString screenName READ screenName WRITE setScreenName)
Q_PROPERTY(qint64 sinceID READ sinceID WRITE setSinceID)
Q_PROPERTY(qint64 maxID READ maxID WRITE setMaxID)
Q_PROPERTY(int count READ count WRITE setCount)
Q_PROPERTY(int page READ page WRITE setPage)
Q_PROPERTY(bool trimUser READ isTrimUser WRITE setTrimUser)
Q_PROPERTY(bool includeEntities READ isIncludeEntities WRITE setIncludeEntities)
Q_PROPERTY(bool includeRts READ isIncludeRts WRITE setIncludeRts)
Q_PROPERTY(bool excludeReplies READ isExcludeReplies WRITE setExcludeReplies)
Q_PROPERTY(bool contributorDetails READ isContributorsDetails WRITE setContributorsDetails)
public:
QTweetUserTimeline(QObject *parent = 0);
QTweetUserTimeline(OAuthTwitter *oauthTwitter, QObject *parent = 0);
void fetch(qint64 userid = 0,
const QString& screenName = QString(),
qint64 sinceid = 0,
qint64 maxid = 0,
int count = 0,
int page = 0,
bool trimUser = false,
bool includeRts = false,
bool includeEntities = false,
bool excludeReplies = false,
bool contributorDetails = false);
void get();
void setUserID(qint64 userid) { m_userid = userid; }
qint64 userID() const { return m_userid; }
void setScreenName(const QString& screenName) { m_screenName = screenName; }
QString screenName() const { return m_screenName; }
void setSinceID(qint64 sinceid) { m_sinceid = sinceid; }
qint64 sinceID() const { return m_sinceid; }
void setMaxID(qint64 maxid) { m_maxid = maxid; }
qint64 maxID() const { return m_maxid; }
void setCount(int count) { m_count = count; }
int count() const { return m_count; }
void setPage(int page) { m_page = page; }
int page() const { return m_page; }
void setTrimUser(bool trimUser) { m_trimUser = trimUser; }
bool isTrimUser() const { return m_trimUser; }
void setIncludeRts(bool includeRts) { m_includeRts = includeRts; }
bool isIncludeRts() const { return m_includeRts; }
void setIncludeEntities(bool includeEntities) { m_includeEntities = includeEntities; }
bool isIncludeEntities() const { return m_includeEntities; }
void setExcludeReplies(bool excludeReplies) { m_excludeReplies = excludeReplies; }
bool isExcludeReplies() const { return m_excludeReplies; }
void setContributorsDetails(bool contributorsDetails) { m_contributorDetails = contributorsDetails; }
bool isContributorsDetails() const { return m_contributorDetails; }
signals:
/** Emits user timeline status list */
void parsedStatuses(const QList<QTweetStatus>& statuses);
protected slots:
void parsingJsonFinished(const QVariant &json, bool ok, const QString &errorMsg);
private:
private:
// ### TODO: Use pimpl
qint64 m_userid;
QString m_screenName;
qint64 m_sinceid;
qint64 m_maxid;
int m_count;
int m_page;
bool m_trimUser;
bool m_includeRts;
bool m_includeEntities;
bool m_excludeReplies;
bool m_contributorDetails;
};
#endif // QTWEETUSERTIMELINE_H
|