2010-05-03 17:17:36 -04:00
|
|
|
/****************************************************************
|
|
|
|
* RetroShare is distributed under the following license:
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006 - 2010 RetroShare Team
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
****************************************************************/
|
|
|
|
|
2010-07-23 14:52:58 -04:00
|
|
|
#include <QFontDialog>
|
2010-05-03 17:17:36 -04:00
|
|
|
|
|
|
|
#include "ChatPage.h"
|
|
|
|
|
2010-07-23 14:52:58 -04:00
|
|
|
#include "rsharesettings.h"
|
|
|
|
|
2010-05-03 17:17:36 -04:00
|
|
|
/** Constructor */
|
|
|
|
ChatPage::ChatPage(QWidget * parent, Qt::WFlags flags)
|
|
|
|
: ConfigPage(parent, flags)
|
|
|
|
{
|
|
|
|
/* Invoke the Qt Designer generated object setup routine */
|
|
|
|
ui.setupUi(this);
|
|
|
|
|
|
|
|
/* Hide platform specific features */
|
|
|
|
#ifdef Q_WS_WIN
|
|
|
|
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ChatPage::closeEvent (QCloseEvent * event)
|
|
|
|
{
|
|
|
|
QWidget::closeEvent(event);
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Saves the changes on this page */
|
|
|
|
bool
|
|
|
|
ChatPage::save(QString &errmsg)
|
|
|
|
{
|
2010-05-20 17:53:27 -04:00
|
|
|
Settings->beginGroup(QString("Chat"));
|
|
|
|
|
|
|
|
Settings->setValue(QString::fromUtf8("Emoteicons_PrivatChat"), emotePrivatChat());
|
|
|
|
Settings->setValue(QString::fromUtf8("Emoteicons_GroupChat"), emoteGroupChat());
|
|
|
|
Settings->setValue(QString::fromUtf8("GroupChat_History"), groupchatHistory());
|
|
|
|
Settings->setValue(QString::fromUtf8("ChatScreenFont"), fontTempChat.toString());
|
2010-05-03 17:17:36 -04:00
|
|
|
|
2010-05-20 17:53:27 -04:00
|
|
|
Settings->endGroup();
|
2010-05-18 14:02:51 -04:00
|
|
|
|
2010-05-14 08:42:31 -04:00
|
|
|
return true;
|
2010-05-03 17:17:36 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/** Loads the settings for this page */
|
|
|
|
void
|
|
|
|
ChatPage::load()
|
|
|
|
{
|
2010-05-20 17:53:27 -04:00
|
|
|
Settings->beginGroup(QString("Chat"));
|
|
|
|
|
|
|
|
ui.checkBox_emoteprivchat->setChecked(Settings->value(QString::fromUtf8("Emoteicons_PrivatChat"), true).toBool());
|
|
|
|
ui.checkBox_emotegroupchat->setChecked(Settings->value(QString::fromUtf8("Emoteicons_GroupChat"), true).toBool());
|
|
|
|
ui.checkBox_groupchathistory->setChecked(Settings->value(QString::fromUtf8("GroupChat_History"), true).toBool());
|
|
|
|
|
|
|
|
fontTempChat.fromString(Settings->value(QString::fromUtf8("ChatScreenFont")).toString());
|
2010-05-03 17:17:36 -04:00
|
|
|
|
2010-05-20 17:53:27 -04:00
|
|
|
Settings->endGroup();
|
2010-05-03 17:17:36 -04:00
|
|
|
|
2010-05-14 08:42:31 -04:00
|
|
|
ui.labelChatFontPreview->setText(fontTempChat.rawName());
|
|
|
|
ui.labelChatFontPreview->setFont(fontTempChat);
|
2010-05-03 17:17:36 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
bool ChatPage::emotePrivatChat() const {
|
|
|
|
if(ui.checkBox_emoteprivchat->isChecked()) return true;
|
|
|
|
return ui.checkBox_emoteprivchat->isChecked();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ChatPage::emoteGroupChat() const {
|
|
|
|
if(ui.checkBox_emotegroupchat->isChecked()) return true;
|
|
|
|
return ui.checkBox_emotegroupchat->isChecked();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ChatPage::groupchatHistory() const {
|
|
|
|
if(ui.checkBox_groupchathistory->isChecked()) return true;
|
|
|
|
return ui.checkBox_groupchathistory->isChecked();
|
|
|
|
}
|
2010-05-14 08:42:31 -04:00
|
|
|
|
|
|
|
void ChatPage::on_pushButtonChangeChatFont_clicked()
|
|
|
|
{
|
|
|
|
bool ok;
|
|
|
|
QFont font = QFontDialog::getFont(&ok, fontTempChat, this);
|
|
|
|
if (ok) {
|
|
|
|
fontTempChat = font;
|
|
|
|
ui.labelChatFontPreview->setText(fontTempChat.rawName());
|
|
|
|
ui.labelChatFontPreview->setFont(fontTempChat);
|
|
|
|
}
|
|
|
|
}
|