mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-03-04 04:39:33 -05:00

Process messages to group replies correctly and sort by age. Expand message display to include replies. Add coloring to distinguish between replies and actual msgs. Enable subscribe / unsubscribe buttons. Add Selection of which set of groups are visible. Add missing setNetworkExchangeService calls for photo + wire services.
72 lines
2.5 KiB
C++
72 lines
2.5 KiB
C++
/*******************************************************************************
|
|
* gui/TheWire/PulseItem.h *
|
|
* *
|
|
* Copyright (c) 2012-2020 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 MRK_PULSE_ITEM_H
|
|
#define MRK_PULSE_ITEM_H
|
|
|
|
#include "ui_PulseItem.h"
|
|
|
|
#include <retroshare/rswire.h>
|
|
|
|
class PulseItem;
|
|
|
|
class PulseHolder
|
|
{
|
|
public:
|
|
virtual ~PulseHolder() {}
|
|
virtual void deletePulseItem(PulseItem *, uint32_t ptype) = 0;
|
|
virtual void notifyPulseSelection(PulseItem *item) = 0;
|
|
|
|
// Actions.
|
|
virtual void follow(RsGxsGroupId &groupId) = 0;
|
|
virtual void rate(RsGxsId &authorId) = 0;
|
|
virtual void reply(RsWirePulse &pulse, std::string &groupName) = 0;
|
|
};
|
|
|
|
|
|
class PulseItem : public QWidget, private Ui::PulseItem
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
PulseItem(PulseHolder *holder, std::string url);
|
|
PulseItem(PulseHolder *holder, RsWirePulse *pulse_ptr, RsWireGroup *group_ptr, std::map<rstime_t, RsWirePulse *> replies);
|
|
|
|
rstime_t publishTs();
|
|
void removeItem();
|
|
|
|
void setSelected(bool on);
|
|
bool isSelected();
|
|
|
|
const QPixmap *getPixmap();
|
|
|
|
protected:
|
|
void mousePressEvent(QMouseEvent *event);
|
|
|
|
private:
|
|
|
|
PulseHolder *mHolder;
|
|
RsWirePulse mPulse;
|
|
uint32_t mType;
|
|
bool mSelected;
|
|
};
|
|
|
|
#endif
|