1. Filter out possibly insecure xhtml-im elements.
[iris.git] / src / xmpp / xmpp-im / xmpp_htmlelement.h
blob0a198aa67ce136e6ef0a9ac1f4ef71311df206dc
1 /*
2 * Copyright (C) 2006 Remko Troncon
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 #ifndef XMPP_HTMLELEMENT_H
21 #define XMPP_HTMLELEMENT_H
23 #include <QDomElement>
25 class QString;
27 namespace XMPP
29 class HTMLElement
31 public:
32 HTMLElement();
33 HTMLElement(const QDomElement &body);
35 void setBody(const QDomElement &body);
36 const QDomElement& body() const;
37 QString toString(const QString &rootTagName = "body") const;
38 QString text() const;
39 void filterOutUnwanted(bool strict = false);
41 private:
42 void filterOutUnwantedRecursive(QDomElement &el, bool strict);
44 QDomDocument doc_;
45 QDomElement body_;
49 #endif