1
0

fb2html.cpp 597 B

12345678910111213141516171819202122
  1. #include "fb2html.h"
  2. #include "fb2utils.h"
  3. //---------------------------------------------------------------------------
  4. // Fb2TextElement
  5. //---------------------------------------------------------------------------
  6. void Fb2TextElement::select()
  7. {
  8. static const QString javascript = FB2::read(":/js/set_cursor.js");
  9. evaluateJavaScript(javascript);
  10. }
  11. bool Fb2TextElement::isSection() const
  12. {
  13. return tagName() == "DIV" && attribute("class").toLower() == "section";
  14. }
  15. bool Fb2TextElement::isTitle() const
  16. {
  17. return tagName() == "DIV" && attribute("class").toLower() == "title";
  18. }