How to use the klayout.QtCore function in klayout

To help you get started, we’ve selected a few klayout examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github KLayout / klayout / testdata / pymod / import_QtCore.py View on Github external
def test_2(self):
    # Some smoke test
    v = QtCore.Qt.QT_VERSION
    self.assertEqual(v > 1, True)
    b = QtCore.QBuffer()
    b.setData("all you can eat")
    b.open(QtCore.QIODevice.ReadOnly)
    self.assertEqual(b.read(3), "all")
    b.read(1)
    self.assertEqual(b.read(3), "you")
github KLayout / klayout / testdata / pymod / import_QtCore.py View on Github external
def test_1(self):
    self.assertEqual("QBuffer" in QtCore.__all__, True)
github KLayout / klayout / testdata / pymod / import_QtXml.py View on Github external
def test_2(self):
    # Some smoke test
    b = QtCore.QBuffer()
    b.setData("abc")
    b.open(QtCore.QIODevice.ReadOnly)
    doc = QtXml.QDomDocument()
    doc.setContent(b)
    b.close()
    self.assertEqual(doc.documentElement().tagName, "doc")
    self.assertEqual(doc.documentElement().firstChild().toElement().tagName, "e")