/******************************************************************************* * gui/feeds/MsgItem.h * * * * Copyright (c) 2008, Robert Fernie * * * * 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 . * * * *******************************************************************************/ #ifndef _MSG_ITEM_DIALOG_H #define _MSG_ITEM_DIALOG_H #include "ui_MsgItem.h" #include "FeedItem.h" #include 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(); virtual std::string uniqueIdentifier() const override { return "MsgItem " + mMsgId ; } protected: /* FeedItem */ virtual void doExpand(bool open); virtual void expandFill(bool first); private: void fillExpandFrame(); private slots: /* default stuff */ void gotoHome(); void removeItem(); void toggle(); void playMedia(); void deleteMsg(); void replyMsg(); void sendInvite(); void checkMessageReadStatus(); void updateItem(); private: FeedHolder *mParent; uint32_t mFeedId; std::string mMsgId; QString mMsg; bool mIsHome; bool mCloseOnRead; std::list mFileItems; }; #endif