File indexing completed on 2024-04-28 04:55:38

0001 /*
0002     This file is part of Choqok, the KDE micro-blogging client
0003 
0004     SPDX-FileCopyrightText: 2010-2012 Mehrdad Momeny <mehrdad.momeny@gmail.com>
0005 
0006     SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
0007 */
0008 
0009 #ifndef TWITTERAPITIMELINEWIDGET_H
0010 #define TWITTERAPITIMELINEWIDGET_H
0011 
0012 #include "twitterapihelper_export.h"
0013 
0014 #include "timelinewidget.h"
0015 
0016 class TWITTERAPIHELPER_EXPORT TwitterApiTimelineWidget : public Choqok::UI::TimelineWidget
0017 {
0018     Q_OBJECT
0019 public:
0020     TwitterApiTimelineWidget(Choqok::Account *account, const QString &timelineName, QWidget *parent = nullptr);
0021     virtual ~TwitterApiTimelineWidget();
0022 
0023 protected Q_SLOTS:
0024     void removeUnFavoritedPost(Choqok::Account *theAccount, const QString &postId);
0025 };
0026 
0027 #endif // TWITTERAPITIMELINEWIDGET_H