2008-04-24 09:14:58 -04:00
|
|
|
/****************************************************************
|
|
|
|
* RetroShare is distributed under the following license:
|
|
|
|
*
|
|
|
|
* Copyright (C) 2008 Robert Fernie
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
|
|
|
****************************************************************/
|
|
|
|
#include <QtGui>
|
|
|
|
|
|
|
|
#include "BlogDialog.h"
|
2008-05-10 08:16:34 -04:00
|
|
|
#include "rsiface/rsQblog.h"
|
2008-04-24 09:14:58 -04:00
|
|
|
|
|
|
|
/** Constructor */
|
|
|
|
BlogDialog::BlogDialog(QWidget *parent)
|
|
|
|
: MainPage (parent)
|
|
|
|
{
|
|
|
|
/* Invoke the Qt Designer generated object setup routine */
|
2008-04-26 08:52:13 -04:00
|
|
|
setupUi(this);
|
|
|
|
|
2008-05-04 11:27:16 -04:00
|
|
|
connect(sendBtn, SIGNAL(clicked()), this, SLOT(sendBlog()));
|
2008-05-10 08:16:34 -04:00
|
|
|
connect(statusBtn, SIGNAL(clicked()), this, SLOT(setStatus()));
|
2008-04-29 15:19:07 -04:00
|
|
|
connect(boldBtn, SIGNAL(clicked()), this, SLOT(setFont()));
|
|
|
|
connect(underlineBtn, SIGNAL(clicked()), this, SLOT(setFont()));
|
|
|
|
connect(italicBtn, SIGNAL(clicked()), this, SLOT(setFont()));
|
|
|
|
|
2008-05-04 12:40:39 -04:00
|
|
|
/* Current Font */
|
2008-04-29 15:19:07 -04:00
|
|
|
mCurrentFont = QFont("Comic Sans MS", 8);
|
2008-04-24 09:14:58 -04:00
|
|
|
}
|
|
|
|
|
2008-05-04 11:27:16 -04:00
|
|
|
void BlogDialog::sendBlog()
|
2008-04-26 08:52:13 -04:00
|
|
|
{
|
2008-05-10 08:16:34 -04:00
|
|
|
QString blogMsg = lineEdit->toPlainText();
|
2008-05-10 17:35:45 -04:00
|
|
|
QString debug = "unsuccessful";
|
2008-04-26 08:52:13 -04:00
|
|
|
|
2008-05-10 08:16:34 -04:00
|
|
|
blogText->setCurrentFont(mCurrentFont);
|
2008-04-29 15:19:07 -04:00
|
|
|
|
2008-05-10 08:16:34 -04:00
|
|
|
/* Write blog message to window */
|
|
|
|
blogText->append(blogMsg);
|
2008-04-26 08:52:13 -04:00
|
|
|
|
2008-05-10 17:35:45 -04:00
|
|
|
std::list<std::string> UsrList;
|
|
|
|
|
|
|
|
/* test to see if load dummy data worked ! */
|
|
|
|
|
|
|
|
QString blogMsg2;
|
|
|
|
|
|
|
|
if(!rsQblog->getFriendList(UsrList))
|
|
|
|
{
|
|
|
|
blogText->append(debug); // put error on screen if problem getting usr list
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
blogMsg2 = UsrList.begin()->c_str();
|
|
|
|
blogText->append(blogMsg2); // past the first usr list to blog screen
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-04-26 08:52:13 -04:00
|
|
|
/* Clear lineEdit */
|
|
|
|
lineEdit->clear();
|
2008-04-29 15:19:07 -04:00
|
|
|
|
2008-05-10 08:19:40 -04:00
|
|
|
/* setFocus on lineEdit */
|
|
|
|
lineEdit->setFocus();
|
2008-04-29 15:19:07 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void BlogDialog::setFont()
|
|
|
|
{
|
|
|
|
mCurrentFont.setUnderline(underlineBtn->isChecked());
|
|
|
|
mCurrentFont.setItalic(italicBtn->isChecked());
|
|
|
|
mCurrentFont.setBold(boldBtn->isChecked());
|
|
|
|
lineEdit->setFont(mCurrentFont);
|
|
|
|
lineEdit->setFocus();
|
2008-04-26 08:52:13 -04:00
|
|
|
}
|
2008-05-04 12:40:39 -04:00
|
|
|
|
|
|
|
|
|
|
|
void BlogDialog::setStatus()
|
|
|
|
{
|
2008-05-10 08:16:34 -04:00
|
|
|
QString statusMsg = lineEdit->toPlainText();
|
|
|
|
|
|
|
|
blogText->setCurrentFont(mCurrentFont);
|
|
|
|
|
|
|
|
/* Write status to window */
|
|
|
|
blogText->append(statusMsg);
|
|
|
|
|
|
|
|
/* Clear lineEdit */
|
|
|
|
lineEdit->clear();
|
2008-05-04 12:40:39 -04:00
|
|
|
|
2008-05-10 08:19:40 -04:00
|
|
|
/* set focus on lineEdit */
|
|
|
|
lineEdit->setFocus();
|
|
|
|
|
2008-05-04 12:40:39 -04:00
|
|
|
}
|
|
|
|
|
2008-04-29 15:19:07 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|