mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-01-26 15:28:28 -05:00
6bd6c50502
RetroShare has a standard style for each type, but the user can define their own styles. The external directories "style/public", "style/private" and "style/history" are scanned for subdirs with user defined style informations. git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@3453 b45a01b8-16f6-495d-af2f-9b41ad6348cc
108 lines
2.8 KiB
C++
108 lines
2.8 KiB
C++
/****************************************************************
|
|
* 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>
|
|
#include <QMetaType>
|
|
|
|
#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
|
|
|
|
class ChatStyleInfo
|
|
{
|
|
public:
|
|
ChatStyleInfo() {}
|
|
|
|
public:
|
|
QString stylePath;
|
|
QString styleName;
|
|
QString styleDescription;
|
|
QString authorName;
|
|
QString authorEmail;
|
|
};
|
|
|
|
Q_DECLARE_METATYPE(ChatStyleInfo)
|
|
|
|
class ChatStyle : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
enum enumFormatMessage
|
|
{
|
|
FORMATMSG_INCOMING,
|
|
FORMATMSG_OUTGOING,
|
|
FORMATMSG_HINCOMING,
|
|
FORMATMSG_HOUTGOING
|
|
};
|
|
|
|
enum enumStyleType
|
|
{
|
|
TYPE_UNKNOWN,
|
|
TYPE_PUBLIC,
|
|
TYPE_PRIVATE,
|
|
TYPE_HISTORY
|
|
};
|
|
|
|
QHash<QString, QString> smileys;
|
|
|
|
public:
|
|
/* Default constructor */
|
|
ChatStyle();
|
|
/* Default destructor */
|
|
~ChatStyle();
|
|
|
|
bool setStylePath(QString stylePath);
|
|
bool setStyleFromSettings(enumStyleType styleType);
|
|
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);
|
|
static bool getAvailableStyles(enumStyleType styleType, QList<ChatStyleInfo> &styles);
|
|
|
|
private slots:
|
|
void styleChanged(int styleType);
|
|
|
|
private:
|
|
enumStyleType m_styleType;
|
|
QDir m_styleDir;
|
|
|
|
/** store default information for embedding HTML */
|
|
RsChat::EmbedInHtmlAhref defEmbedAhref;
|
|
RsChat::EmbedInHtmlImg defEmbedImg;
|
|
};
|
|
|
|
#endif // _CHATSTYLE_H
|