Typica is a free program for professional coffee roasters. https://typica.us
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

webelement.cpp 1011B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. /*596:*/
  2. #line 388 "./webview.w"
  3. #include "webelement.h"
  4. /*594:*/
  5. #line 331 "./webview.w"
  6. TypicaWebElement::TypicaWebElement(QWebElement element):e(element)
  7. {
  8. }
  9. /*:594*//*595:*/
  10. #line 340 "./webview.w"
  11. void TypicaWebElement::appendInside(const QString&markup)
  12. {
  13. e.appendInside(markup);
  14. }
  15. void TypicaWebElement::appendOutside(const QString&markup)
  16. {
  17. e.appendOutside(markup);
  18. }
  19. void TypicaWebElement::prependInside(const QString&markup)
  20. {
  21. e.prependInside(markup);
  22. }
  23. void TypicaWebElement::prependOutside(const QString&markup)
  24. {
  25. e.prependOutside(markup);
  26. }
  27. void TypicaWebElement::removeFromDocument()
  28. {
  29. e.removeFromDocument();
  30. }
  31. void TypicaWebElement::replace(const QString&markup)
  32. {
  33. e.replace(markup);
  34. }
  35. void TypicaWebElement::setInnerXml(const QString&markup)
  36. {
  37. e.setInnerXml(markup);
  38. }
  39. void TypicaWebElement::setOuterXml(const QString&markup)
  40. {
  41. e.setOuterXml(markup);
  42. }
  43. void TypicaWebElement::setPlainText(const QString&text)
  44. {
  45. e.setPlainText(text);
  46. }
  47. /*:595*/
  48. #line 391 "./webview.w"
  49. /*:596*/