123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- /*513:*/
- #line 365 "./webview.w"
-
- #include "webelement.h"
-
- /*511:*/
- #line 308 "./webview.w"
-
- TypicaWebElement::TypicaWebElement(QWebElement element):e(element)
- {
-
- }
-
- /*:511*//*512:*/
- #line 317 "./webview.w"
-
- void TypicaWebElement::appendInside(const QString&markup)
- {
- e.appendInside(markup);
- }
-
- void TypicaWebElement::appendOutside(const QString&markup)
- {
- e.appendOutside(markup);
- }
-
- void TypicaWebElement::prependInside(const QString&markup)
- {
- e.prependInside(markup);
- }
-
- void TypicaWebElement::prependOutside(const QString&markup)
- {
- e.prependOutside(markup);
- }
-
- void TypicaWebElement::removeFromDocument()
- {
- e.removeFromDocument();
- }
-
- void TypicaWebElement::replace(const QString&markup)
- {
- e.replace(markup);
- }
-
- void TypicaWebElement::setInnerXml(const QString&markup)
- {
- e.setInnerXml(markup);
- }
-
- void TypicaWebElement::setOuterXml(const QString&markup)
- {
- e.setOuterXml(markup);
- }
-
- void TypicaWebElement::setPlainText(const QString&text)
- {
- e.setPlainText(text);
- }
-
- /*:512*/
- #line 368 "./webview.w"
-
-
- /*:513*/
|