RetroShare/retroshare-gui/src/gui/feeds/MsgItem.h

75 lines
2.4 KiB
C++

/*******************************************************************************
* gui/feeds/MsgItem.h *
* *
* Copyright (c) 2008, Robert Fernie <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/>. *
* *
*******************************************************************************/
#ifndef _MSG_ITEM_DIALOG_H
#define _MSG_ITEM_DIALOG_H
#include "ui_MsgItem.h"
#include "FeedItem.h"
#include <stdint.h>
class FeedHolder;
class SubFileItem;
class MsgItem : public FeedItem, private Ui::MsgItem
{
Q_OBJECT
public:
/** Default Constructor */
MsgItem(FeedHolder *parent, uint32_t feedId, const std::string &msgId, bool isHome);
void updateItemStatic();
uint64_t uniqueIdentifier() const override { return hash_64bits("MsgItem " + mMsgId) ; }
protected:
/* FeedItem */
virtual void doExpand(bool open);
virtual void expandFill(bool first);
private:
void fillExpandFrame();
private slots:
/* default stuff */
void gotoHome();
void toggle();
void playMedia();
void deleteMsg();
void replyMsg();
void sendInvite();
void checkMessageReadStatus();
void updateItem();
private:
std::string mMsgId;
QString mMsg;
bool mIsHome;
bool mCloseOnRead;
std::list<SubFileItem *> mFileItems;
};
#endif