mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-06-06 21:58:57 -04:00
Fixed drag'n'drop of shared files from the SharedFilesDialog to the CreateChannelMsg.
Enabled the usage of remote files. Added some small const& to the code. git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@3619 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
791d6144dc
commit
fc320cf1a6
5 changed files with 14 additions and 23 deletions
|
@ -152,7 +152,6 @@ void CreateChannelMsg::dropEvent(QDropEvent *event)
|
||||||
std::cerr << "CreateChannelMsg::dropEvent() Application/x-rsfilelist";
|
std::cerr << "CreateChannelMsg::dropEvent() Application/x-rsfilelist";
|
||||||
std::cerr << std::endl;
|
std::cerr << std::endl;
|
||||||
|
|
||||||
|
|
||||||
QByteArray data = event->mimeData()->data("application/x-rsfilelist");
|
QByteArray data = event->mimeData()->data("application/x-rsfilelist");
|
||||||
std::cerr << "Data Len:" << data.length();
|
std::cerr << "Data Len:" << data.length();
|
||||||
std::cerr << std::endl;
|
std::cerr << std::endl;
|
||||||
|
@ -163,12 +162,11 @@ void CreateChannelMsg::dropEvent(QDropEvent *event)
|
||||||
parseRsFileListAttachments(newattachments);
|
parseRsFileListAttachments(newattachments);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
event->setDropAction(Qt::CopyAction);
|
event->setDropAction(Qt::CopyAction);
|
||||||
event->accept();
|
event->accept();
|
||||||
}
|
}
|
||||||
|
|
||||||
void CreateChannelMsg::parseRsFileListAttachments(std::string attachList)
|
void CreateChannelMsg::parseRsFileListAttachments(const std::string &attachList)
|
||||||
{
|
{
|
||||||
/* split into lines */
|
/* split into lines */
|
||||||
QString input = QString::fromStdString(attachList);
|
QString input = QString::fromStdString(attachList);
|
||||||
|
@ -244,7 +242,7 @@ void CreateChannelMsg::parseRsFileListAttachments(std::string attachList)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void CreateChannelMsg::addAttachment(std::string hash, std::string fname, uint64_t size, bool local, std::string srcId)
|
void CreateChannelMsg::addAttachment(const std::string &hash, const std::string &fname, uint64_t size, bool local, const std::string &srcId)
|
||||||
{
|
{
|
||||||
/* add a SubFileItem to the attachment section */
|
/* add a SubFileItem to the attachment section */
|
||||||
std::cerr << "CreateChannelMsg::addAttachment()";
|
std::cerr << "CreateChannelMsg::addAttachment()";
|
||||||
|
@ -260,8 +258,6 @@ void CreateChannelMsg::addAttachment(std::string hash, std::string fname, uint64
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
flags |= SFI_STATE_REMOTE;
|
flags |= SFI_STATE_REMOTE;
|
||||||
// TMP REMOVED REMOTE ADD FOR DEMONSTRATOR
|
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
SubFileItem *file = new SubFileItem(hash, fname, "", size, flags, srcId); // destroyed when fileFrame (this subfileitem) is destroyed
|
SubFileItem *file = new SubFileItem(hash, fname, "", size, flags, srcId); // destroyed when fileFrame (this subfileitem) is destroyed
|
||||||
|
@ -296,7 +292,7 @@ void CreateChannelMsg::addExtraFile()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void CreateChannelMsg::addAttachment(std::string path)
|
void CreateChannelMsg::addAttachment(const std::string &path)
|
||||||
{
|
{
|
||||||
/* add a SubFileItem to the attachment section */
|
/* add a SubFileItem to the attachment section */
|
||||||
std::cerr << "CreateChannelMsg::addAttachment()";
|
std::cerr << "CreateChannelMsg::addAttachment()";
|
||||||
|
|
|
@ -37,9 +37,8 @@ public:
|
||||||
CreateChannelMsg(std::string cId);
|
CreateChannelMsg(std::string cId);
|
||||||
/** Default Destructor */
|
/** Default Destructor */
|
||||||
|
|
||||||
void addAttachment(std::string path);
|
void addAttachment(const std::string &path);
|
||||||
void addAttachment(std::string hash, std::string fname, uint64_t size,
|
void addAttachment(const std::string &hash, const std::string &fname, uint64_t size, bool local, const std::string &srcId);
|
||||||
bool local, std::string srcId);
|
|
||||||
|
|
||||||
void newChannelMsg();
|
void newChannelMsg();
|
||||||
|
|
||||||
|
@ -60,7 +59,7 @@ private slots:
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
void parseRsFileListAttachments(std::string attachList);
|
void parseRsFileListAttachments(const std::string &attachList);
|
||||||
|
|
||||||
void sendMessage(std::wstring subject, std::wstring msg, std::list<FileInfo> &files);
|
void sendMessage(std::wstring subject, std::wstring msg, std::list<FileInfo> &files);
|
||||||
|
|
||||||
|
@ -71,7 +70,5 @@ private:
|
||||||
bool mCheckAttachment;
|
bool mCheckAttachment;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
|
@ -66,8 +66,7 @@
|
||||||
const uint32_t SFI_DEFAULT_PERIOD = (30 * 3600 * 24); /* 30 Days */
|
const uint32_t SFI_DEFAULT_PERIOD = (30 * 3600 * 24); /* 30 Days */
|
||||||
|
|
||||||
/** Constructor */
|
/** Constructor */
|
||||||
SubFileItem::SubFileItem(std::string hash, std::string name, std::string path, uint64_t size,
|
SubFileItem::SubFileItem(const std::string &hash, const std::string &name, const std::string &path, uint64_t size, uint32_t flags, const std::string &srcId)
|
||||||
uint32_t flags, std::string srcId)
|
|
||||||
:QWidget(NULL), mPath(path), mFileHash(hash), mFileName(name), mFileSize(size), mSrcId(srcId)
|
:QWidget(NULL), mPath(path), mFileHash(hash), mFileName(name), mFileSize(size), mSrcId(srcId)
|
||||||
{
|
{
|
||||||
/* Invoke the Qt Designer generated object setup routine */
|
/* Invoke the Qt Designer generated object setup routine */
|
||||||
|
@ -182,8 +181,7 @@ void SubFileItem::updateItemStatic()
|
||||||
if (mPath == "")
|
if (mPath == "")
|
||||||
{
|
{
|
||||||
FileInfo fi;
|
FileInfo fi;
|
||||||
uint32_t hintflags = RS_FILE_HINTS_UPLOAD | RS_FILE_HINTS_LOCAL
|
uint32_t hintflags = RS_FILE_HINTS_UPLOAD | RS_FILE_HINTS_LOCAL | RS_FILE_HINTS_SPEC_ONLY | RS_FILE_HINTS_NETWORK_WIDE | RS_FILE_HINTS_BROWSABLE;
|
||||||
| RS_FILE_HINTS_SPEC_ONLY;
|
|
||||||
|
|
||||||
/* look up path */
|
/* look up path */
|
||||||
if (!rsFiles->FileDetails(mFileHash, hintflags, fi))
|
if (!rsFiles->FileDetails(mFileHash, hintflags, fi))
|
||||||
|
|
|
@ -52,8 +52,7 @@ class SubFileItem : public QWidget, private Ui::SubFileItem
|
||||||
|
|
||||||
public:
|
public:
|
||||||
/** Default Constructor */
|
/** Default Constructor */
|
||||||
SubFileItem(std::string hash, std::string name, std::string path, uint64_t size,
|
SubFileItem(const std::string &hash, const std::string &name, const std::string &path, uint64_t size, uint32_t flags, const std::string &srcId);
|
||||||
uint32_t flags, std::string srcId);
|
|
||||||
|
|
||||||
/** Default Destructor */
|
/** Default Destructor */
|
||||||
|
|
||||||
|
|
|
@ -260,13 +260,14 @@ void ServerPage::saveAddresses()
|
||||||
|
|
||||||
if (saveAddr)
|
if (saveAddr)
|
||||||
{
|
{
|
||||||
rsPeers->setLocalAddress(rsPeers->getOwnId(), ui.localAddress->text().toStdString(), ui.localPort->value());
|
rsPeers->setLocalAddress(ownId, ui.localAddress->text().toStdString(), ui.localPort->value());
|
||||||
rsPeers->setExtAddress(rsPeers->getOwnId(), ui.extAddress->text().toStdString(), ui.extPort->value());
|
rsPeers->setExtAddress(ownId, ui.extAddress->text().toStdString(), ui.extPort->value());
|
||||||
}
|
}
|
||||||
|
|
||||||
rsPeers->setDynDNS(rsPeers->getOwnId(), ui.dynDNS->text().toStdString());
|
rsPeers->setDynDNS(ownId, ui.dynDNS->text().toStdString());
|
||||||
|
|
||||||
|
rsicontrol->ConfigSetDataRates( ui.totalDownloadRate->value(), ui.totalUploadRate->value() );
|
||||||
|
|
||||||
rsicontrol->ConfigSetDataRates( ui.totalDownloadRate->value(), ui.totalUploadRate->value() );
|
|
||||||
load();
|
load();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue