diff options
author | Remko Tronçon <git@el-tramo.be> | 2009-06-01 08:48:42 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2009-06-01 09:24:28 (GMT) |
commit | 2812bddd81f8a1b804c7460f4e14cd0aa393d129 (patch) | |
tree | d46294f35150c4f0f43deaf2d31fceaf945ae715 /UI/Qt/ChatSnippet.cpp | |
download | swift-contrib-2812bddd81f8a1b804c7460f4e14cd0aa393d129.zip swift-contrib-2812bddd81f8a1b804c7460f4e14cd0aa393d129.tar.bz2 |
Import.
Diffstat (limited to 'UI/Qt/ChatSnippet.cpp')
-rw-r--r-- | UI/Qt/ChatSnippet.cpp | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/UI/Qt/ChatSnippet.cpp b/UI/Qt/ChatSnippet.cpp new file mode 100644 index 0000000..7e8326c --- /dev/null +++ b/UI/Qt/ChatSnippet.cpp @@ -0,0 +1,33 @@ +#include <QFile> + +#include "ChatSnippet.h" + +namespace Swift { + +ChatSnippet::ChatSnippet(bool appendToPrevious) : appendToPrevious_(appendToPrevious) { +} + +ChatSnippet::~ChatSnippet() { +} + +QString ChatSnippet::loadTemplate(const QString& filename) { + QFile file(filename); + bool result = file.open(QIODevice::ReadOnly); + Q_ASSERT(result); + Q_UNUSED(result); + QString content = file.readAll(); + file.close(); + return content; +} + +QString ChatSnippet::escape(const QString& original) { + QString result(original); + result.replace("%message%", "%message%"); + result.replace("%sender%", "%sender%"); + result.replace("%time%", "%%time%"); + result.replace("%shortTime%", "%%shortTime%"); + result.replace("%userIconPath%", "%userIconPath%"); + return result; +} + +}; |