| 1734 | } |
| 1735 | |
| 1736 | void PageViewAnnotator::setAnnotationInnerColor(const QColor &color) |
| 1737 | { |
| 1738 | QDomElement annotationElement = currentAnnotationElement(); |
| 1739 | if (color == Qt::transparent) { |
| 1740 | annotationElement.removeAttribute(QStringLiteral("innerColor")); |
| 1741 | } else { |
| 1742 | annotationElement.setAttribute(QStringLiteral("innerColor"), color.name(QColor::HexRgb)); |
| 1743 | } |
| 1744 | saveBuiltinAnnotationTools(); |
| 1745 | selectLastTool(); |
| 1746 | } |
| 1747 | |
| 1748 | void PageViewAnnotator::setAnnotationOpacity(double opacity) |
| 1749 | { |