2018-11-13 22:02:26 +01:00
|
|
|
/*******************************************************************************
|
|
|
|
* gui/feeds/FeedItem.h *
|
|
|
|
* *
|
|
|
|
* Copyright (c) 2014, Retroshare Team <retroshare.project@gmail.com> *
|
|
|
|
* *
|
|
|
|
* This program is free software: you can redistribute it and/or modify *
|
|
|
|
* it under the terms of the GNU Affero General Public License as *
|
|
|
|
* published by the Free Software Foundation, either version 3 of the *
|
|
|
|
* License, or (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
* This program 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 Affero General Public License for more details. *
|
|
|
|
* *
|
|
|
|
* You should have received a copy of the GNU Affero General Public License *
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>. *
|
|
|
|
* *
|
|
|
|
*******************************************************************************/
|
2014-08-01 14:49:58 +00:00
|
|
|
|
|
|
|
#ifndef _FEED_ITEM_H
|
|
|
|
#define _FEED_ITEM_H
|
|
|
|
|
|
|
|
#include <QWidget>
|
|
|
|
|
|
|
|
class FeedItem : public QWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
/** Default Constructor */
|
|
|
|
FeedItem(QWidget *parent = 0);
|
|
|
|
/** Default Destructor */
|
|
|
|
virtual ~FeedItem();
|
|
|
|
|
2015-06-17 18:59:12 +00:00
|
|
|
bool wasExpanded() { return mWasExpanded; }
|
|
|
|
void expand(bool open);
|
|
|
|
|
2019-12-03 22:30:13 +01:00
|
|
|
/*!
|
|
|
|
* \brief uniqueIdentifier
|
|
|
|
* \return returns a string that is unique to this specific item. The string will be used to search for an existing item that
|
|
|
|
* would contain the same information. It should therefore sumarise the data represented by the item.
|
|
|
|
*/
|
|
|
|
virtual QString uniqueIdentifier() const =0;
|
2015-06-17 18:59:12 +00:00
|
|
|
protected:
|
|
|
|
virtual void doExpand(bool open) = 0;
|
|
|
|
virtual void expandFill(bool /*first*/) {}
|
2014-08-01 14:49:58 +00:00
|
|
|
|
|
|
|
signals:
|
|
|
|
void sizeChanged(FeedItem *feedItem);
|
|
|
|
void feedItemDestroyed(FeedItem *feedItem);
|
2015-06-17 18:59:12 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
bool mWasExpanded;
|
2014-08-01 14:49:58 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|