2010-09-04 14:23:30 +00:00
|
|
|
/****************************************************************
|
|
|
|
* RetroShare is distributed under the following license:
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006, Thunder
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
****************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef _CHATSTYLE_H
|
|
|
|
#define _CHATSTYLE_H
|
|
|
|
|
|
|
|
#include <QString>
|
|
|
|
#include <QDateTime>
|
|
|
|
#include <QHash>
|
2010-09-07 15:49:31 +00:00
|
|
|
#include <QMetaType>
|
2010-09-04 14:23:30 +00:00
|
|
|
|
|
|
|
#include "HandleRichText.h"
|
|
|
|
|
|
|
|
/* Flags for ChatStyle::formatMessage */
|
|
|
|
#define CHAT_FORMATMSG_EMBED_SMILEYS 1
|
|
|
|
#define CHAT_FORMATMSG_EMBED_LINKS 2
|
|
|
|
|
|
|
|
/* Flags for ChatStyle::formatText */
|
|
|
|
#define CHAT_FORMATTEXT_EMBED_SMILEYS 1
|
|
|
|
#define CHAT_FORMATTEXT_EMBED_LINKS 2
|
|
|
|
|
2010-09-07 15:49:31 +00:00
|
|
|
class ChatStyleInfo
|
2010-09-04 14:23:30 +00:00
|
|
|
{
|
2010-09-07 15:49:31 +00:00
|
|
|
public:
|
|
|
|
ChatStyleInfo() {}
|
|
|
|
|
|
|
|
public:
|
|
|
|
QString stylePath;
|
|
|
|
QString styleName;
|
|
|
|
QString styleDescription;
|
|
|
|
QString authorName;
|
|
|
|
QString authorEmail;
|
|
|
|
};
|
|
|
|
|
|
|
|
Q_DECLARE_METATYPE(ChatStyleInfo)
|
|
|
|
|
|
|
|
class ChatStyle : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
2010-09-04 14:23:30 +00:00
|
|
|
public:
|
|
|
|
enum enumFormatMessage
|
|
|
|
{
|
|
|
|
FORMATMSG_INCOMING,
|
|
|
|
FORMATMSG_OUTGOING,
|
|
|
|
FORMATMSG_HINCOMING,
|
|
|
|
FORMATMSG_HOUTGOING
|
|
|
|
};
|
|
|
|
|
2010-09-07 15:49:31 +00:00
|
|
|
enum enumStyleType
|
|
|
|
{
|
|
|
|
TYPE_UNKNOWN,
|
|
|
|
TYPE_PUBLIC,
|
|
|
|
TYPE_PRIVATE,
|
|
|
|
TYPE_HISTORY
|
|
|
|
};
|
|
|
|
|
2010-09-04 14:23:30 +00:00
|
|
|
QHash<QString, QString> smileys;
|
|
|
|
|
|
|
|
public:
|
|
|
|
/* Default constructor */
|
|
|
|
ChatStyle();
|
|
|
|
/* Default destructor */
|
|
|
|
~ChatStyle();
|
|
|
|
|
2010-09-07 23:19:27 +00:00
|
|
|
bool setStylePath(QString stylePath, QString styleVariant);
|
2010-09-07 15:49:31 +00:00
|
|
|
bool setStyleFromSettings(enumStyleType styleType);
|
2010-09-04 14:23:30 +00:00
|
|
|
void loadEmoticons();
|
|
|
|
|
|
|
|
QString formatMessage(enumFormatMessage type, QString &name, QDateTime ×tamp, QString &message, unsigned int flag);
|
|
|
|
QString formatText(QString &message, unsigned int flag);
|
|
|
|
|
|
|
|
void showSmileyWidget(QWidget *parent, QWidget *button, const char *slotAddMethod);
|
2010-09-07 15:49:31 +00:00
|
|
|
static bool getAvailableStyles(enumStyleType styleType, QList<ChatStyleInfo> &styles);
|
2010-09-07 23:19:27 +00:00
|
|
|
static bool getAvailableVariants(QString stylePath, QStringList &variants);
|
2010-09-07 15:49:31 +00:00
|
|
|
|
|
|
|
private slots:
|
|
|
|
void styleChanged(int styleType);
|
2010-09-04 14:23:30 +00:00
|
|
|
|
|
|
|
private:
|
2010-09-07 15:49:31 +00:00
|
|
|
enumStyleType m_styleType;
|
|
|
|
QDir m_styleDir;
|
2010-09-07 23:19:27 +00:00
|
|
|
QString m_styleVariant;
|
2010-09-04 14:23:30 +00:00
|
|
|
|
|
|
|
/** store default information for embedding HTML */
|
|
|
|
RsChat::EmbedInHtmlAhref defEmbedAhref;
|
|
|
|
RsChat::EmbedInHtmlImg defEmbedImg;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _CHATSTYLE_H
|