1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
|
#############################################################################
##
## Copyright (C) 2013 Riverbank Computing Limited.
## Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
## All rights reserved.
##
## This file is part of the examples of PyQt.
##
## $QT_BEGIN_LICENSE:LGPL$
## Commercial Usage
## Licensees holding valid Qt Commercial licenses may use this file in
## accordance with the Qt Commercial License Agreement provided with the
## Software or, alternatively, in accordance with the terms contained in
## a written agreement between you and Nokia.
##
## GNU Lesser General Public License Usage
## Alternatively, this file may be used under the terms of the GNU Lesser
## General Public License version 2.1 as published by the Free Software
## Foundation and appearing in the file LICENSE.LGPL included in the
## packaging of this file. Please review the following information to
## ensure the GNU Lesser General Public License version 2.1 requirements
## will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
##
## In addition, as a special exception, Nokia gives you certain additional
## rights. These rights are described in the Nokia Qt LGPL Exception
## version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
##
## GNU General Public License Usage
## Alternatively, this file may be used under the terms of the GNU
## General Public License version 3.0 as published by the Free Software
## Foundation and appearing in the file LICENSE.GPL included in the
## packaging of this file. Please review the following information to
## ensure the GNU General Public License version 3.0 requirements will be
## met: http://www.gnu.org/copyleft/gpl.html.
##
## If you have questions regarding the use of this file, please contact
## Nokia at qt-info@nokia.com.
## $QT_END_LICENSE$
##
#############################################################################
from xml.dom.minidom import parseString
from PyQt5.QtCore import QRectF, QRegExp, Qt
from PyQt5.QtGui import QImage
from colors import Colors
from demoitem import DemoItem
from demoitemanimation import DemoItemAnimation
from demotextitem import DemoTextItem
from headingitem import HeadingItem
from imageitem import ImageItem
class ExampleContent(DemoItem):
def __init__(self, name, parent=None):
super(ExampleContent, self).__init__(parent)
# Prevent a circular import.
from menumanager import MenuManager
self._menu_manager = MenuManager.instance()
self.name = name
self.heading = None
self.description = None
self.screenshot = None
self._prepared = False
def prepare(self):
if not self._prepared:
self.createContent()
self._prepared = True
def animationStopped(self, id):
if id == DemoItemAnimation.ANIM_OUT:
# Free up some memory.
self.heading = None
self.description = None
self.screenshot = None
self._prepared = False
def loadDescription(self):
contents = self._menu_manager.getHtml(self.name).data().decode('utf8')
if contents == '':
paragraphs = []
else:
exampleDoc = parseString(contents)
paragraphs = exampleDoc.getElementsByTagName('p')
if len(paragraphs) < 1:
Colors.debug("- ExampleContent.loadDescription(): Could not load description:", self._menu_manager.info[self.name].get('docfile'))
description = Colors.contentColor + "Could not load description. Ensure that the documentation for Qt is built."
for p in paragraphs:
description = self.extractTextFromParagraph(p)
if self.isSummary(description):
break
return Colors.contentColor + description
def isSummary(self, text):
re = QRegExp("(In )?((The|This) )?(%s )?.*(tutorial|example|demo|application)" % self.name, Qt.CaseInsensitive)
return ('[' not in text) and (re.indexIn(text) >= 0)
def extractTextFromParagraph(self, parentNode):
description = ''
node = parentNode.firstChild
while node is not None:
if node.nodeType == node.TEXT_NODE:
description += Colors.contentColor + node.nodeValue
elif node.hasChildNodes():
if node.nodeName == 'b':
beginTag = '<b>'
endTag = '</b>'
elif node.nodeName == 'a':
beginTag = Colors.contentColor
endTag = '</font>'
elif node.nodeName == 'i':
beginTag = '<i>'
endTag = '</i>'
elif node.nodeName == 'tt':
beginTag = '<tt>'
endTag = '</tt>'
else:
beginTag = endTag = ''
description += beginTag + self.extractTextFromParagraph(node) + endTag
node = node.nextSibling
return description
def createContent(self):
# Create the items.
self.heading = HeadingItem(self.name, self)
self.description = DemoTextItem(self.loadDescription(),
Colors.contentFont(), Colors.heading, 500, self)
imgHeight = 340 - int(self.description.boundingRect().height()) + 50
self.screenshot = ImageItem(QImage.fromData(self._menu_manager.getImage(self.name)), 550, imgHeight, self)
# Place the items on screen.
self.heading.setPos(0, 3)
self.description.setPos(0, self.heading.pos().y() + self.heading.boundingRect().height() + 10)
self.screenshot.setPos(0, self.description.pos().y() + self.description.boundingRect().height() + 10)
def boundingRect(self):
return QRectF(0, 0, 500, 100)
|