mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-02 14:16:16 -04:00
Significant changes to the GUI to introduce new display style.
* Completed much of General Msg Dialog. * Completed much of ChannelFeed. * Added Channel Messages to News Feed. * Connected Blog/Channels to GeneralMsgDialog. * Improved SubFileItem display. * Completed ChanGroup/Menu/MsgItems. * Added SubDestItem for use in GeneralMsgDialog. * Generalise CreateForum to cover Channels as well. * Restricted CreateForum to public forums/private channels. * Demo of Drag-N-Drop Files for Linux (filesystem->GenMsgDialog) * Updates to rsiface stuff (blog/channels/types) git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@621 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
b9ccbd54e8
commit
c6a595c7db
26 changed files with 1489 additions and 206 deletions
|
@ -23,25 +23,150 @@
|
|||
#include "GeneralMsgDialog.h"
|
||||
#include "gui/feeds/FeedHolder.h"
|
||||
|
||||
#include "gui/feeds/SubFileItem.h"
|
||||
#include "gui/feeds/SubDestItem.h"
|
||||
|
||||
#include "rsiface/rstypes.h"
|
||||
#include "rsiface/rspeers.h"
|
||||
#include "rsiface/rsforums.h"
|
||||
#include "rsiface/rschannels.h"
|
||||
#include "rsiface/rsmsgs.h"
|
||||
|
||||
#include <iostream>
|
||||
|
||||
/** Constructor */
|
||||
GeneralMsgDialog::GeneralMsgDialog(QWidget *parent)
|
||||
GeneralMsgDialog::GeneralMsgDialog(QWidget *parent, uint32_t type)
|
||||
: QDialog (parent)
|
||||
{
|
||||
/* Invoke the Qt Designer generated object setup routine */
|
||||
setupUi(this);
|
||||
|
||||
connect(addButton, SIGNAL(clicked()), this, SLOT(newDestination()));
|
||||
connect(typeComboBox, SIGNAL(currentIndexChanged( int )), this, SLOT(updateGroupId()));
|
||||
|
||||
connect(buttonBox, SIGNAL(accepted()), this, SLOT(sendMsg()));
|
||||
connect(buttonBox, SIGNAL(rejected()), this, SLOT(cancelMsg()));
|
||||
|
||||
/* set the type to ...
|
||||
* const uint32_t GMD_TYPE_MESSAGE_IDX = 0;
|
||||
* const uint32_t GMD_TYPE_FORUM_IDX = 1;
|
||||
* const uint32_t GMD_TYPE_CHANNEL_IDX = 2;
|
||||
* const uint32_t GMD_TYPE_BLOG_IDX = 3;
|
||||
* */
|
||||
|
||||
typeComboBox->clear();
|
||||
typeComboBox->addItem("Message");
|
||||
typeComboBox->addItem("Forum");
|
||||
typeComboBox->addItem("Channel");
|
||||
typeComboBox->addItem("Blog");
|
||||
|
||||
typeComboBox->setCurrentIndex(type);
|
||||
|
||||
setAcceptDrops(true);
|
||||
}
|
||||
|
||||
/* Dropping */
|
||||
|
||||
void GeneralMsgDialog::dragEnterEvent(QDragEnterEvent *event)
|
||||
{
|
||||
/* print out mimeType */
|
||||
std::cerr << "GeneralMsgDialog::dragEnterEvent() Formats";
|
||||
std::cerr << std::endl;
|
||||
QStringList formats = event->mimeData()->formats();
|
||||
QStringList::iterator it;
|
||||
for(it = formats.begin(); it != formats.end(); it++)
|
||||
{
|
||||
std::cerr << "Format: " << (*it).toStdString();
|
||||
std::cerr << std::endl;
|
||||
}
|
||||
|
||||
if (event->mimeData()->hasFormat("text/plain"))
|
||||
{
|
||||
std::cerr << "GeneralMsgDialog::dragEnterEvent() Accepting PlainText";
|
||||
std::cerr << std::endl;
|
||||
event->acceptProposedAction();
|
||||
}
|
||||
else if (event->mimeData()->hasUrls())
|
||||
{
|
||||
std::cerr << "GeneralMsgDialog::dragEnterEvent() Accepting Urls";
|
||||
std::cerr << std::endl;
|
||||
event->acceptProposedAction();
|
||||
}
|
||||
else
|
||||
{
|
||||
std::cerr << "GeneralMsgDialog::dragEnterEvent() No PlainText/Urls";
|
||||
std::cerr << std::endl;
|
||||
}
|
||||
}
|
||||
|
||||
void GeneralMsgDialog::dropEvent(QDropEvent *event)
|
||||
{
|
||||
std::cerr << "GeneralMsgDialog::dropEvent() Formats";
|
||||
std::cerr << std::endl;
|
||||
QStringList formats = event->mimeData()->formats();
|
||||
QStringList::iterator it;
|
||||
for(it = formats.begin(); it != formats.end(); it++)
|
||||
{
|
||||
std::cerr << "Format: " << (*it).toStdString();
|
||||
std::cerr << std::endl;
|
||||
}
|
||||
|
||||
if (event->mimeData()->hasText())
|
||||
{
|
||||
std::cerr << "GeneralMsgDialog::dropEvent() Plain Text:";
|
||||
std::cerr << std::endl;
|
||||
std::cerr << event->mimeData()->text().toStdString();
|
||||
std::cerr << std::endl;
|
||||
}
|
||||
|
||||
if (event->mimeData()->hasUrls())
|
||||
{
|
||||
std::cerr << "GeneralMsgDialog::dropEvent() Urls:";
|
||||
std::cerr << std::endl;
|
||||
|
||||
QList<QUrl> urls = event->mimeData()->urls();
|
||||
QList<QUrl>::iterator uit;
|
||||
for(uit = urls.begin(); uit != urls.end(); uit++)
|
||||
{
|
||||
std::string localpath = uit->toLocalFile().toStdString();
|
||||
std::cerr << "Whole URL: " << uit->toString().toStdString();
|
||||
std::cerr << std::endl;
|
||||
std::cerr << "or As Local File: " << localpath;
|
||||
std::cerr << std::endl;
|
||||
|
||||
if (localpath.size() > 0)
|
||||
{
|
||||
addAttachment(localpath);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
event->acceptProposedAction();
|
||||
}
|
||||
|
||||
void GeneralMsgDialog::addAttachment(std::string path)
|
||||
{
|
||||
/* add a SubFileItem to the attachment section */
|
||||
std::cerr << "GeneralMsgDialog::addAttachment()";
|
||||
std::cerr << std::endl;
|
||||
|
||||
/* add widget in for new destination */
|
||||
SubFileItem *file = new SubFileItem("unknownHash", path, 12000);
|
||||
|
||||
mAttachments.push_back(file);
|
||||
QLayout *layout = fileFrame->layout();
|
||||
layout->addWidget(file);
|
||||
|
||||
return;
|
||||
|
||||
}
|
||||
|
||||
|
||||
void GeneralMsgDialog::cancelMsg()
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
void GeneralMsgDialog::sendMsg()
|
||||
{
|
||||
std::cerr << "GeneralMsgDialog::cancelMsg()";
|
||||
std::cerr << std::endl;
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -50,8 +175,250 @@ void GeneralMsgDialog::addDestination(uint32_t type, std::string grpId, std::str
|
|||
std::cerr << "GeneralMsgDialog::addDestination()";
|
||||
std::cerr << std::endl;
|
||||
|
||||
/* add widget in for new destination */
|
||||
SubDestItem *dest = new SubDestItem(type, grpId, inReplyTo);
|
||||
|
||||
mDestinations.push_back(dest);
|
||||
QLayout *layout = destFrame->layout();
|
||||
layout->addWidget(dest);
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
void GeneralMsgDialog::updateGroupId()
|
||||
{
|
||||
std::cerr << "GeneralMsgDialog::updateGroupId()";
|
||||
std::cerr << std::endl;
|
||||
|
||||
int idx = typeComboBox->currentIndex();
|
||||
|
||||
destIdComboBox->clear();
|
||||
switch(idx)
|
||||
{
|
||||
case GMD_TYPE_MESSAGE_IDX:
|
||||
{
|
||||
/* add a list of friends */
|
||||
if (rsPeers)
|
||||
{
|
||||
std::list<std::string> friends;
|
||||
std::list<std::string>::iterator it;
|
||||
|
||||
rsPeers->getFriendList(friends);
|
||||
for(it = friends.begin(); it != friends.end(); it++)
|
||||
{
|
||||
QString id = QString::fromStdString(*it);
|
||||
QString name = QString::fromStdString(rsPeers->getPeerName(*it));
|
||||
|
||||
destIdComboBox->addItem(name, id);
|
||||
}
|
||||
}
|
||||
}
|
||||
break;
|
||||
case GMD_TYPE_FORUM_IDX:
|
||||
{
|
||||
/* add a list of publishable forums */
|
||||
if (rsForums)
|
||||
{
|
||||
std::list<ForumInfo> forumList;
|
||||
std::list<ForumInfo>::iterator it;
|
||||
|
||||
rsForums->getForumList(forumList);
|
||||
for(it = forumList.begin(); it != forumList.end(); it++)
|
||||
{
|
||||
if (it->forumFlags & RS_DISTRIB_PUBLISH)
|
||||
{
|
||||
QString id = QString::fromStdString(it->forumId);
|
||||
QString name = QString::fromStdWString(it->forumName);
|
||||
|
||||
destIdComboBox->addItem(name, id);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
break;
|
||||
case GMD_TYPE_CHANNEL_IDX:
|
||||
{
|
||||
/* add a list of publishable channels */
|
||||
if (rsChannels)
|
||||
{
|
||||
std::list<ChannelInfo> channelList;
|
||||
std::list<ChannelInfo>::iterator it;
|
||||
|
||||
rsChannels->getChannelList(channelList);
|
||||
for(it = channelList.begin(); it != channelList.end(); it++)
|
||||
{
|
||||
if (it->channelFlags & RS_DISTRIB_PUBLISH)
|
||||
{
|
||||
QString id = QString::fromStdString(it->channelId);
|
||||
QString name = QString::fromStdWString(it->channelName);
|
||||
|
||||
destIdComboBox->addItem(name, id);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
break;
|
||||
default:
|
||||
case GMD_TYPE_BLOG_IDX:
|
||||
{
|
||||
/* empty list */
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
void GeneralMsgDialog::newDestination()
|
||||
{
|
||||
/* get details from uint32_t type, std::string grpId, std::string inReplyTo)
|
||||
*/
|
||||
|
||||
std::cerr << "GeneralMsgDialog::newDestination()";
|
||||
std::cerr << std::endl;
|
||||
|
||||
int idx = typeComboBox->currentIndex();
|
||||
std::string grpId;
|
||||
|
||||
if (destIdComboBox->currentIndex() >= 0)
|
||||
{
|
||||
QVariant qv = destIdComboBox->itemData(destIdComboBox->currentIndex());
|
||||
grpId = qv.toString().toStdString();
|
||||
}
|
||||
|
||||
switch(idx)
|
||||
{
|
||||
case GMD_TYPE_MESSAGE_IDX:
|
||||
addDestination(FEEDHOLDER_MSG_MESSAGE, grpId, "");
|
||||
break;
|
||||
case GMD_TYPE_FORUM_IDX:
|
||||
addDestination(FEEDHOLDER_MSG_FORUM, grpId, "");
|
||||
break;
|
||||
case GMD_TYPE_CHANNEL_IDX:
|
||||
addDestination(FEEDHOLDER_MSG_CHANNEL, grpId, "");
|
||||
break;
|
||||
case GMD_TYPE_BLOG_IDX:
|
||||
addDestination(FEEDHOLDER_MSG_BLOG, "", "");
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
void GeneralMsgDialog::sendMsg()
|
||||
{
|
||||
std::cerr << "GeneralMsgDialog::sendMsg()";
|
||||
std::cerr << std::endl;
|
||||
|
||||
/* construct message bits */
|
||||
std::wstring subject = subjectEdit->text().toStdWString();
|
||||
std::wstring msg = msgEdit->toPlainText().toStdWString();
|
||||
|
||||
std::list<FileInfo> files;
|
||||
|
||||
std::list<SubDestItem *>::iterator it;
|
||||
std::list<SubFileItem *>::iterator fit;
|
||||
|
||||
for(fit = mAttachments.begin(); fit != mAttachments.end(); fit++)
|
||||
{
|
||||
if (!(*fit)->isHidden())
|
||||
{
|
||||
FileInfo fi;
|
||||
fi.hash = (*fit)->FileHash();
|
||||
fi.fname = (*fit)->FileName();
|
||||
fi.size = (*fit)->FileSize();
|
||||
|
||||
files.push_back(fi);
|
||||
}
|
||||
}
|
||||
|
||||
/* iterate through each mDestinations that is visible, and send */
|
||||
for(it = mDestinations.begin(); it != mDestinations.end(); it++)
|
||||
{
|
||||
if (!(*it)->isHidden())
|
||||
{
|
||||
sendMessage((*it)->DestType(), (*it)->DestGroupId(),
|
||||
(*it)->DestInReplyTo(), subject, msg, files);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void GeneralMsgDialog::sendMessage(uint32_t type, std::string grpId, std::string inReplyTo,
|
||||
std::wstring subject, std::wstring msg, std::list<FileInfo> &files)
|
||||
{
|
||||
std::cerr << "GeneralMsgDialog::sendMessage() Type: " << type << " GroupId: " << grpId;
|
||||
std::cerr << std::endl;
|
||||
|
||||
/* construct specific messages */
|
||||
switch(type)
|
||||
{
|
||||
case FEEDHOLDER_MSG_MESSAGE:
|
||||
{
|
||||
if (rsMsgs)
|
||||
{
|
||||
/* construct a message */
|
||||
MessageInfo mi;
|
||||
|
||||
mi.title = subject;
|
||||
mi.msg = msg;
|
||||
mi.files = files;
|
||||
mi.msgto.push_back(grpId);
|
||||
|
||||
rsMsgs->MessageSend(mi);
|
||||
}
|
||||
}
|
||||
break;
|
||||
case FEEDHOLDER_MSG_FORUM:
|
||||
{
|
||||
/* rsForum */
|
||||
if (rsForums)
|
||||
{
|
||||
ForumMsgInfo msgInfo;
|
||||
|
||||
msgInfo.forumId = grpId;
|
||||
msgInfo.threadId = "";
|
||||
msgInfo.parentId = inReplyTo;
|
||||
msgInfo.msgId = "";
|
||||
|
||||
msgInfo.title = subject;
|
||||
msgInfo.msg = msg;
|
||||
|
||||
rsForums->ForumMessageSend(msgInfo);
|
||||
}
|
||||
}
|
||||
break;
|
||||
case FEEDHOLDER_MSG_CHANNEL:
|
||||
{
|
||||
/* rsChannels */
|
||||
if (rsChannels)
|
||||
{
|
||||
ChannelMsgInfo msgInfo;
|
||||
|
||||
msgInfo.channelId = grpId;
|
||||
msgInfo.msgId = "";
|
||||
|
||||
msgInfo.subject = subject;
|
||||
msgInfo.msg = msg;
|
||||
msgInfo.files = files;
|
||||
|
||||
rsChannels->ChannelMessageSend(msgInfo);
|
||||
}
|
||||
}
|
||||
|
||||
break;
|
||||
case FEEDHOLDER_MSG_BLOG:
|
||||
|
||||
break;
|
||||
default:
|
||||
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue