aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside-tools/qtpy2cpp_lib/tests/baseline/basic_test.py
blob: 1466ac6b122ecc8a9263c26180e58c8a51bbbbd9 (plain)
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
#!/usr/bin/env python
# Copyright (C) 2022 The Qt Company Ltd.
# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

import sys

from PySide6.QtCore import Qt
from PySide6.QtGui import QColor, QPainter, QPaintEvent, QShortcut
from PySide6.QtWidgets import QApplication, QWidget


class Window(QWidget):
    def __init__(self, parent: QWidget = None):
        super().__init__(parent)

    def paintEvent(self, e: QPaintEvent):
        self.paint("bla")

    def paint(self, what: str, color: Qt.GlobalColor = Qt.blue):
        with QPainter(self) as p:
            p.setPen(QColor(color))
            rect = self.rect()
            w = rect.width()
            h = rect.height()
            p.drawLine(0, 0, w, h)
            p.drawLine(0, h, w, 0)
            p.drawText(rect.center(), what)

    def sum(self):
        values = [1, 2, 3]
        result = 0
        for v in values:
            result += v
        return result


if __name__ == '__main__':
    app = QApplication(sys.argv)
    window = Window()
    sc = QShortcut(Qt.CTRL | Qt.Key_Q, window)
    sc.activated.connect(window.close)
    window.setWindowTitle("Test")
    window.show()
    sys.exit(app.exec())