mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-01-10 06:59:42 -05:00
109 lines
3.7 KiB
C++
109 lines
3.7 KiB
C++
/*******************************************************************************
|
|
* retroshare-gui/src/gui/gxschannels/CreateGxsChannelMsg.h *
|
|
* *
|
|
* Copyright 2013 by 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 _CREATE_GXSCHANNEL_MSG_H
|
|
#define _CREATE_GXSCHANNEL_MSG_H
|
|
|
|
#include "ui_CreateGxsChannelMsg.h"
|
|
#include <retroshare/rsgxschannels.h>
|
|
|
|
#ifdef CHANNELS_FRAME_CATCHER
|
|
#include "util/framecatcher.h"
|
|
#endif
|
|
|
|
class SubFileItem;
|
|
|
|
class CreateGxsChannelMsg : public QDialog, private Ui::CreateGxsChannelMsg
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
/** Default Constructor */
|
|
CreateGxsChannelMsg(const RsGxsGroupId& cId, RsGxsMessageId existing_post = RsGxsMessageId());
|
|
|
|
/** Default Destructor */
|
|
~CreateGxsChannelMsg();
|
|
|
|
void reject() override;
|
|
|
|
void addHtmlText(const QString& text) ;
|
|
void addSubject(const QString& text) ;
|
|
|
|
// adds a file to be hashed and shared. Returns false if something goes wrong.
|
|
bool addAttachment(const std::string &path);
|
|
void addAttachment(const RsFileHash &hash, const std::string &fname, uint64_t size, bool local, const RsPeerId &srcId,bool assume_file_ready = false);
|
|
|
|
void newChannelMsg();
|
|
|
|
QPixmap picture;
|
|
|
|
protected:
|
|
virtual void dragEnterEvent(QDragEnterEvent *event);
|
|
virtual void dropEvent(QDropEvent *event);
|
|
|
|
private slots:
|
|
void toggle() ;
|
|
void addExtraFile();
|
|
void checkAttachmentReady();
|
|
void deleteAttachment();
|
|
void updatePreviewText(const QString &);
|
|
void clearAllAttachments();
|
|
|
|
void cancelMsg();
|
|
void sendMsg();
|
|
void pasteLink() ;
|
|
void contextMenu(QPoint) ;
|
|
void changeAspectRatio(int s);
|
|
|
|
void addThumbnail();
|
|
void allowAutoMediaThumbNail(bool);
|
|
|
|
void on_channelpostButton_clicked();
|
|
void on_attachmentsButton_clicked();
|
|
void on_removeButton_clicked();
|
|
private:
|
|
void processSettings(bool load);
|
|
void loadChannelInfo();
|
|
void loadOriginalChannelPostInfo();
|
|
void saveChannelInfo(const RsGroupMetaData &group);
|
|
void updateAttachmentCount();
|
|
|
|
void parseRsFileListAttachments(const std::string &attachList);
|
|
void sendMessage(const std::string &subject, const std::string &msg, const std::list<RsGxsFile> &files);
|
|
bool setThumbNail(const std::string& path, int frame);
|
|
|
|
RsGxsGroupId mChannelId;
|
|
RsGxsMessageId mOrigPostId;
|
|
RsGroupMetaData mChannelMeta;
|
|
RsMsgMetaData mOrigMeta;
|
|
bool mChannelMetaLoaded;
|
|
|
|
std::list<SubFileItem *> mAttachments;
|
|
|
|
bool mCheckAttachment;
|
|
bool mAutoMediaThumbNail;
|
|
|
|
#ifdef CHANNELS_FRAME_CATCHER
|
|
framecatcher* fCatcher;
|
|
#endif
|
|
};
|
|
|
|
#endif
|