diff options
author | Friedemann Kleint <[email protected]> | 2021-04-21 15:15:52 +0200 |
---|---|---|
committer | Friedemann Kleint <[email protected]> | 2021-04-22 08:36:25 +0200 |
commit | deaecf79f3a66ac9aba0d844c8a81efd056f080f (patch) | |
tree | e19fb6aeba9d2c4fa36ebadd35191d700c0226b9 | |
parent | ff6f76521b2a401fbd648964a70ed3843cb7979a (diff) |
Cannon tutorial: Brush up code
- Use per class imports
- Remove string-based connections, fixing some errors introduced
by the snake case renaming
- Add some spacing and indent main
- Use math.pi
Task-number: PYSIDE-1112
Change-Id: I2171fc9eb27f9926f32648a289df404d390ace43
Reviewed-by: Christian Tismer <[email protected]>
-rw-r--r-- | examples/widgets/tutorials/cannon/t1.py | 16 | ||||
-rw-r--r-- | examples/widgets/tutorials/cannon/t10.py | 104 | ||||
-rw-r--r-- | examples/widgets/tutorials/cannon/t11.py | 136 | ||||
-rw-r--r-- | examples/widgets/tutorials/cannon/t12.py | 164 | ||||
-rw-r--r-- | examples/widgets/tutorials/cannon/t13.py | 214 | ||||
-rw-r--r-- | examples/widgets/tutorials/cannon/t14.py | 246 | ||||
-rw-r--r-- | examples/widgets/tutorials/cannon/t2.py | 23 | ||||
-rw-r--r-- | examples/widgets/tutorials/cannon/t3.py | 26 | ||||
-rw-r--r-- | examples/widgets/tutorials/cannon/t4.py | 26 | ||||
-rw-r--r-- | examples/widgets/tutorials/cannon/t5.py | 38 | ||||
-rw-r--r-- | examples/widgets/tutorials/cannon/t6.py | 49 | ||||
-rw-r--r-- | examples/widgets/tutorials/cannon/t7.py | 62 | ||||
-rw-r--r-- | examples/widgets/tutorials/cannon/t8.py | 80 | ||||
-rw-r--r-- | examples/widgets/tutorials/cannon/t9.py | 88 |
14 files changed, 642 insertions, 630 deletions
diff --git a/examples/widgets/tutorials/cannon/t1.py b/examples/widgets/tutorials/cannon/t1.py index 43fea90c4..f3b4f9112 100644 --- a/examples/widgets/tutorials/cannon/t1.py +++ b/examples/widgets/tutorials/cannon/t1.py @@ -1,7 +1,7 @@ ############################################################################# ## -## Copyright (C) 2016 The Qt Company Ltd. +## Copyright (C) 2021 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## ## This file is part of the Qt for Python examples of the Qt Toolkit. @@ -43,14 +43,16 @@ import sys -from PySide6 import QtWidgets +from PySide6.QtWidgets import QApplication, QPushButton -app = QtWidgets.QApplication(sys.argv) -hello = QtWidgets.QPushButton("Hello world!") -hello.resize(100, 30) +if __name__ == '__main__': + app = QApplication(sys.argv) -hello.show() + hello = QPushButton("Hello world!") + hello.resize(100, 30) -sys.exit(app.exec_()) + hello.show() + + sys.exit(app.exec_()) diff --git a/examples/widgets/tutorials/cannon/t10.py b/examples/widgets/tutorials/cannon/t10.py index 6665eccbb..524f44fc9 100644 --- a/examples/widgets/tutorials/cannon/t10.py +++ b/examples/widgets/tutorials/cannon/t10.py @@ -1,7 +1,7 @@ ############################################################################# ## -## Copyright (C) 2016 The Qt Company Ltd. +## Copyright (C) 2021 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## ## This file is part of the Qt for Python examples of the Qt Toolkit. @@ -43,41 +43,44 @@ import sys -from PySide6 import QtCore, QtGui, QtWidgets +from PySide6.QtCore import QRect, Qt, Signal, Slot +from PySide6.QtGui import QColor, QFont, QPainter, QPalette +from PySide6.QtWidgets import (QApplication, QGridLayout, QLCDNumber, + QPushButton, QSlider, QVBoxLayout, QWidget) + + +class LCDRange(QWidget): + + value_changed = Signal(int) -class LCDRange(QtWidgets.QWidget): - value_changed = QtCore.Signal(int) def __init__(self, parent=None): - QtWidgets.QWidget.__init__(self, parent) + super().__init__(parent) - lcd = QtWidgets.QLCDNumber(2) - self.slider = QtWidgets.QSlider(QtCore.Qt.Horizontal) + lcd = QLCDNumber(2) + self.slider = QSlider(Qt.Horizontal) self.slider.setRange(0, 99) self.slider.setValue(0) - self.connect(self.slider, QtCore.SIGNAL("valueChanged(int)"), - lcd, QtCore.SLOT("display(int)")) - self.connect(self.slider, QtCore.SIGNAL("valueChanged(int)"), - self, QtCore.SIGNAL("valueChanged(int)")) + self.slider.valueChanged.connect(lcd.display) + self.slider.valueChanged.connect(self.value_changed) - layout = QtWidgets.QVBoxLayout() + layout = QVBoxLayout(self) layout.addWidget(lcd) layout.addWidget(self.slider) - self.setLayout(layout) self.setFocusProxy(self.slider) def value(self): return self.slider.value() - @QtCore.Slot(int) + @Slot(int) def set_value(self, value): self.slider.setValue(value) def set_range(self, minValue, maxValue): if minValue < 0 or maxValue > 99 or minValue > maxValue: - QtCore.qWarning(f"LCDRange::setRange({minValue}, {maxValue})\n" + qWarning(f"LCDRange::setRange({minValue}, {maxValue})\n" "\tRange must be 0..99\n" "\tand minValue must not be greater than maxValue") return @@ -85,21 +88,23 @@ class LCDRange(QtWidgets.QWidget): self.slider.setRange(minValue, maxValue) -class CannonField(QtWidgets.QWidget): - angle_changed = QtCore.Signal(int) - force_changed = QtCore.Signal(int) +class CannonField(QWidget): + + angle_changed = Signal(int) + force_changed = Signal(int) + def __init__(self, parent=None): - QtWidgets.QWidget.__init__(self, parent) + super().__init__(parent) self._current_angle = 45 self._current_force = 0 - self.setPalette(QtGui.QPalette(QtGui.QColor(250, 250, 200))) + self.setPalette(QPalette(QColor(250, 250, 200))) self.setAutoFillBackground(True) def angle(self): return self._current_angle - @QtCore.Slot(int) + @Slot(int) def set_angle(self, angle): if angle < 5: angle = 5 @@ -109,46 +114,45 @@ class CannonField(QtWidgets.QWidget): return self._current_angle = angle self.update() - self.emit(QtCore.SIGNAL("angleChanged(int)"), self._current_angle) + self.angle_changed.emit(self._current_angle) def force(self): return self._current_force - @QtCore.Slot(int) + @Slot(int) def set_force(self, force): if force < 0: force = 0 if self._current_force == force: return self._current_force = force - self.emit(QtCore.SIGNAL("forceChanged(int)"), self._current_force) + self.force_changed.emit(self._current_force) def paintEvent(self, event): - painter = QtGui.QPainter(self) + painter = QPainter(self) - painter.setPen(QtCore.Qt.NoPen) - painter.setBrush(QtCore.Qt.blue) + painter.setPen(Qt.NoPen) + painter.setBrush(Qt.blue) painter.translate(0, self.height()) - painter.drawPie(QtCore.QRect(-35, -35, 70, 70), 0, 90 * 16) + painter.drawPie(QRect(-35, -35, 70, 70), 0, 90 * 16) painter.rotate(-self._current_angle) - painter.drawRect(QtCore.QRect(33, -4, 15, 8)) + painter.drawRect(QRect(33, -4, 15, 8)) def cannon_rect(self): - result = QtCore.QRect(0, 0, 50, 50) + result = QRect(0, 0, 50, 50) result.moveBottomLeft(self.rect().bottomLect()) return result -class MyWidget(QtWidgets.QWidget): +class MyWidget(QWidget): def __init__(self, parent=None): - QtWidgets.QWidget.__init__(self, parent) + super().__init__(parent) - quit = QtWidgets.QPushButton("&Quit") - quit.setFont(QtGui.QFont("Times", 18, QtGui.QFont.Bold)) + quit = QPushButton("&Quit") + quit.setFont(QFont("Times", 18, QFont.Bold)) - self.connect(quit, QtCore.SIGNAL("clicked()"), - qApp, QtCore.SLOT("quit()")) + quit.clicked.connect(qApp.quit) angle = LCDRange() angle.set_range(5, 70) @@ -158,34 +162,30 @@ class MyWidget(QtWidgets.QWidget): cannon_field = CannonField() - self.connect(angle, QtCore.SIGNAL("valueChanged(int)"), - cannon_field.set_angle) - self.connect(cannon_field, QtCore.SIGNAL("angleChanged(int)"), - angle.set_value) + angle.value_changed.connect(cannon_field.set_angle) + cannon_field.angle_changed.connect(angle.set_value) - self.connect(force, QtCore.SIGNAL("valueChanged(int)"), - cannon_field.set_force) - self.connect(cannon_field, QtCore.SIGNAL("forceChanged(int)"), - force.set_value) + force.value_changed.connect(cannon_field.set_force) + cannon_field.force_changed.connect(force.set_value) - left_layout = QtWidgets.QVBoxLayout() + left_layout = QVBoxLayout() left_layout.addWidget(angle) left_layout.addWidget(force) - grid_layout = QtWidgets.QGridLayout() + grid_layout = QGridLayout(self) grid_layout.addWidget(quit, 0, 0) grid_layout.addLayout(left_layout, 1, 0) grid_layout.addWidget(cannon_field, 1, 1, 2, 1) grid_layout.setColumnStretch(1, 10) - self.setLayout(grid_layout) angle.set_value(60) force.set_value(25) angle.setFocus() -app = QtWidgets.QApplication(sys.argv) -widget = MyWidget() -widget.setGeometry(100, 100, 500, 355) -widget.show() -sys.exit(app.exec_()) +if __name__ == '__main__': + app = QApplication(sys.argv) + widget = MyWidget() + widget.setGeometry(100, 100, 500, 355) + widget.show() + sys.exit(app.exec_()) diff --git a/examples/widgets/tutorials/cannon/t11.py b/examples/widgets/tutorials/cannon/t11.py index 5257cbf98..ce4e4470b 100644 --- a/examples/widgets/tutorials/cannon/t11.py +++ b/examples/widgets/tutorials/cannon/t11.py @@ -1,7 +1,7 @@ ############################################################################# ## -## Copyright (C) 2016 The Qt Company Ltd. +## Copyright (C) 2021 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## ## This file is part of the Qt for Python examples of the Qt Toolkit. @@ -44,41 +44,45 @@ import sys import math -from PySide6 import QtCore, QtGui, QtWidgets +from PySide6.QtCore import QPoint, QRect, QTimer, Qt, Signal, Slot +from PySide6.QtGui import QColor, QFont, QPainter, QPalette, QRegion +from PySide6.QtWidgets import (QApplication, QGridLayout, QHBoxLayout, + QLCDNumber, QPushButton, QSlider, + QVBoxLayout, QWidget) + + +class LCDRange(QWidget): + + value_changed = Signal(int) -class LCDRange(QtWidgets.QWidget): - value_changed = QtCore.Signal(int) def __init__(self, parent=None): - QtWidgets.QWidget.__init__(self, parent) + super().__init__(parent) - lcd = QtWidgets.QLCDNumber(2) - self.slider = QtWidgets.QSlider(QtCore.Qt.Horizontal) + lcd = QLCDNumber(2) + self.slider = QSlider(Qt.Horizontal) self.slider.setRange(0, 99) self.slider.setValue(0) - self.connect(self.slider, QtCore.SIGNAL("valueChanged(int)"), - lcd, QtCore.SLOT("display(int)")) - self.connect(self.slider, QtCore.SIGNAL("valueChanged(int)"), - self, QtCore.SIGNAL("valueChanged(int)")) + self.slider.valueChanged.connect(lcd.display) + self.slider.valueChanged.connect(self.value_changed) - layout = QtWidgets.QVBoxLayout() + layout = QVBoxLayout(self) layout.addWidget(lcd) layout.addWidget(self.slider) - self.setLayout(layout) self.setFocusProxy(self.slider) def value(self): return self.slider.value() - @QtCore.Slot(int) + @Slot(int) def set_value(self, value): self.slider.setValue(value) def set_range(self, minValue, maxValue): if minValue < 0 or maxValue > 99 or minValue > maxValue: - QtCore.qWarning(f"LCDRange::setRange({minValue}, {maxValue})\n" + qWarning(f"LCDRange::setRange({minValue}, {maxValue})\n" "\tRange must be 0..99\n" "\tand minValue must not be greater than maxValue") return @@ -86,27 +90,28 @@ class LCDRange(QtWidgets.QWidget): self.slider.setRange(minValue, maxValue) -class CannonField(QtWidgets.QWidget): - angle_changed = QtCore.Signal(int) - force_changed = QtCore.Signal(int) +class CannonField(QWidget): + + angle_changed = Signal(int) + force_changed = Signal(int) + def __init__(self, parent=None): - QtWidgets.QWidget.__init__(self, parent) + super().__init__(parent) self._current_angle = 45 self._current_force = 0 self._timer_count = 0 - self._auto_shoot_timer = QtCore.QTimer(self) - self.connect(self._auto_shoot_timer, QtCore.SIGNAL("timeout()"), - self.move_shot) + self._auto_shoot_timer = QTimer(self) + self._auto_shoot_timer.timeout.connect(self.move_shot) self._shoot_angle = 0 self._shoot_force = 0 - self.setPalette(QtGui.QPalette(QtGui.QColor(250, 250, 200))) + self.setPalette(QPalette(QColor(250, 250, 200))) self.setAutoFillBackground(True) def angle(self): return self._current_angle - @QtCore.Slot(int) + @Slot(int) def set_angle(self, angle): if angle < 5: angle = 5 @@ -116,21 +121,21 @@ class CannonField(QtWidgets.QWidget): return self._current_angle = angle self.update() - self.emit(QtCore.SIGNAL("angleChanged(int)"), self._current_angle) + self.angle_changed.emit(self._current_angle) def force(self): return self._current_force - @QtCore.Slot(int) + @Slot(int) def set_force(self, force): if force < 0: force = 0 if self._current_force == force: return self._current_force = force - self.emit(QtCore.SIGNAL("forceChanged(int)"), self._current_force) + self.force_changed.emit(self._current_force) - @QtCore.Slot() + @Slot() def shoot(self): if self._auto_shoot_timer.isActive(): return @@ -139,9 +144,9 @@ class CannonField(QtWidgets.QWidget): self._shoot_force = self._current_force self._auto_shoot_timer.start(5) - @QtCore.Slot() + @Slot() def move_shot(self): - region = QtGui.QRegion(self.shot_rect()) + region = QRegion(self.shot_rect()) self._timer_count += 1 shot_r = self.shot_rect() @@ -149,37 +154,37 @@ class CannonField(QtWidgets.QWidget): if shot_r.x() > self.width() or shot_r.y() > self.height(): self._auto_shoot_timer.stop() else: - region = region.united(QtGui.QRegion(shot_r)) + region = region.united(QRegion(shot_r)) self.update(region) def paintEvent(self, event): - painter = QtGui.QPainter(self) + painter = QPainter(self) self.paint_cannon(painter) if self._auto_shoot_timer.isActive(): self.paint_shot(painter) def paint_shot(self, painter): - painter.setPen(QtCore.Qt.NoPen) - painter.setBrush(QtCore.Qt.black) + painter.setPen(Qt.NoPen) + painter.setBrush(Qt.black) painter.drawRect(self.shot_rect()) - barrel_rect = QtCore.QRect(33, -4, 15, 8) + barrel_rect = QRect(33, -4, 15, 8) def paint_cannon(self, painter): - painter.setPen(QtCore.Qt.NoPen) - painter.setBrush(QtCore.Qt.blue) + painter.setPen(Qt.NoPen) + painter.setBrush(Qt.blue) painter.save() painter.translate(0, self.height()) - painter.drawPie(QtCore.QRect(-35, -35, 70, 70), 0, 90 * 16) + painter.drawPie(QRect(-35, -35, 70, 70), 0, 90 * 16) painter.rotate(-self._current_angle) painter.drawRect(CannonField.barrel_rect) painter.restore() def cannon_rect(self): - result = QtCore.QRect(0, 0, 50, 50) + result = QRect(0, 0, 50, 50) result.moveBottomLeft(self.rect().bottomLect()) return result @@ -188,7 +193,7 @@ class CannonField(QtWidgets.QWidget): time = self._timer_count / 40.0 velocity = self._shoot_force - radians = self._shoot_angle * 3.14159265 / 180 + radians = self._shoot_angle * math.pi / 180 velx = velocity * math.cos(radians) vely = velocity * math.sin(radians) @@ -197,20 +202,19 @@ class CannonField(QtWidgets.QWidget): x = x0 + velx * time y = y0 + vely * time - 0.5 * gravity * time * time - result = QtCore.QRect(0, 0, 6, 6) - result.moveCenter(QtCore.QPoint(round(x), self.height() - 1 - round(y))) + result = QRect(0, 0, 6, 6) + result.moveCenter(QPoint(round(x), self.height() - 1 - round(y))) return result -class MyWidget(QtWidgets.QWidget): +class MyWidget(QWidget): def __init__(self, parent=None): - QtWidgets.QWidget.__init__(self, parent) + super().__init__(parent) - quit = QtWidgets.QPushButton("&Quit") - quit.setFont(QtGui.QFont("Times", 18, QtGui.QFont.Bold)) + quit = QPushButton("&Quit") + quit.setFont(QFont("Times", 18, QFont.Bold)) - self.connect(quit, QtCore.SIGNAL("clicked()"), - qApp, QtCore.SLOT("quit()")) + quit.clicked.connect(qApp.quit) angle = LCDRange() angle.set_range(5, 70) @@ -220,44 +224,40 @@ class MyWidget(QtWidgets.QWidget): cannon_field = CannonField() - self.connect(angle, QtCore.SIGNAL("valueChanged(int)"), - cannon_field.set_angle) - self.connect(cannon_field, QtCore.SIGNAL("angleChanged(int)"), - angle.set_value) + angle.value_changed.connect(cannon_field.set_angle) + cannon_field.angle_changed.connect(angle.set_value) - self.connect(force, QtCore.SIGNAL("valueChanged(int)"), - cannon_field.set_force) - self.connect(cannon_field, QtCore.SIGNAL("forceChanged(int)"), - force.set_value) + force.value_changed.connect(cannon_field.set_force) + cannon_field.force_changed.connect(force.set_value) - shoot = QtWidgets.QPushButton("&Shoot") - shoot.setFont(QtGui.QFont("Times", 18, QtGui.QFont.Bold)) + shoot = QPushButton("&Shoot") + shoot.setFont(QFont("Times", 18, QFont.Bold)) - self.connect(shoot, QtCore.SIGNAL("clicked()"), cannon_field.shoot) + shoot.clicked.connect(cannon_field.shoot) - top_layout = QtWidgets.QHBoxLayout() + top_layout = QHBoxLayout() top_layout.addWidget(shoot) top_layout.addStretch(1) - left_layout = QtWidgets.QVBoxLayout() + left_layout = QVBoxLayout() left_layout.addWidget(angle) left_layout.addWidget(force) - grid_layout = QtWidgets.QGridLayout() + grid_layout = QGridLayout(self) grid_layout.addWidget(quit, 0, 0) grid_layout.addLayout(top_layout, 0, 1) grid_layout.addLayout(left_layout, 1, 0) grid_layout.addWidget(cannon_field, 1, 1, 2, 1) grid_layout.setColumnStretch(1, 10) - self.setLayout(grid_layout) angle.set_value(60) force.set_value(25) angle.setFocus() -app = QtWidgets.QApplication(sys.argv) -widget = MyWidget() -widget.setGeometry(100, 100, 500, 355) -widget.show() -sys.exit(app.exec_()) +if __name__ == '__main__': + app = QApplication(sys.argv) + widget = MyWidget() + widget.setGeometry(100, 100, 500, 355) + widget.show() + sys.exit(app.exec_()) diff --git a/examples/widgets/tutorials/cannon/t12.py b/examples/widgets/tutorials/cannon/t12.py index 411cbba41..6e7d42218 100644 --- a/examples/widgets/tutorials/cannon/t12.py +++ b/examples/widgets/tutorials/cannon/t12.py @@ -1,7 +1,7 @@ ############################################################################# ## -## Copyright (C) 2016 The Qt Company Ltd. +## Copyright (C) 2021 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## ## This file is part of the Qt for Python examples of the Qt Toolkit. @@ -45,17 +45,24 @@ import sys import math import random -from PySide6 import QtCore, QtGui, QtWidgets +from PySide6.QtCore import QPoint, QRect, QTime, QTimer, Qt, Signal, Slot +from PySide6.QtGui import QColor, QFont, QPainter, QPalette, QRegion +from PySide6.QtWidgets import (QApplication, QGridLayout, QHBoxLayout, + QLabel, QLCDNumber, QPushButton, QSlider, + QVBoxLayout, QWidget) + + +class LCDRange(QWidget): + + value_changed = Signal(int) -class LCDRange(QtWidgets.QWidget): - value_changed = QtCore.Signal(int) def __init__(self, text=None, parent=None): - if isinstance(text, QtWidgets.QWidget): + if isinstance(text, QWidget): parent = text text = None - QtWidgets.QWidget.__init__(self, parent) + super().__init__(parent) self.init() @@ -63,30 +70,27 @@ class LCDRange(QtWidgets.QWidget): self.set_text(text) def init(self): - lcd = QtWidgets.QLCDNumber(2) - self.slider = QtWidgets.QSlider(QtCore.Qt.Horizontal) + lcd = QLCDNumber(2) + self.slider = QSlider(Qt.Horizontal) self.slider.setRange(0, 99) self.slider.setValue(0) - self.label = QtWidgets.QLabel() - self.label.setAlignment(QtCore.Qt.AlignHCenter | QtCore.Qt.AlignTop) + self.label = QLabel() + self.label.setAlignment(Qt.AlignHCenter | Qt.AlignTop) - self.connect(self.slider, QtCore.SIGNAL("valueChanged(int)"), - lcd, QtCore.SLOT("display(int)")) - self.connect(self.slider, QtCore.SIGNAL("valueChanged(int)"), - self, QtCore.SIGNAL("valueChanged(int)")) + self.slider.valueChanged.connect(lcd.display) + self.slider.valueChanged.connect(self.value_changed) - layout = QtWidgets.QVBoxLayout() + layout = QVBoxLayout(self) layout.addWidget(lcd) layout.addWidget(self.slider) layout.addWidget(self.label) - self.setLayout(layout) self.setFocusProxy(self.slider) def value(self): return self.slider.value() - @QtCore.Slot(int) + @Slot(int) def set_value(self, value): self.slider.setValue(value) @@ -95,7 +99,7 @@ class LCDRange(QtWidgets.QWidget): def set_range(self, minValue, maxValue): if minValue < 0 or maxValue > 99 or minValue > maxValue: - QtCore.qWarning(f"LCDRange::setRange({minValue}, {maxValue})\n" + qWarning(f"LCDRange::setRange({minValue}, {maxValue})\n" "\tRange must be 0..99\n" "\tand minValue must not be greater than maxValue") return @@ -106,29 +110,32 @@ class LCDRange(QtWidgets.QWidget): self.label.setText(text) -class CannonField(QtWidgets.QWidget): - angle_changed = QtCore.Signal(int) - force_changed = QtCore.Signal(int) +class CannonField(QWidget): + + angle_changed = Signal(int) + force_changed = Signal(int) + hit = Signal() + missed = Signal() + def __init__(self, parent=None): - QtWidgets.QWidget.__init__(self, parent) + super().__init__(parent) self._current_angle = 45 self._current_force = 0 self._timer_count = 0 - self._auto_shoot_timer = QtCore.QTimer(self) - self.connect(self._auto_shoot_timer, QtCore.SIGNAL("timeout()"), - self.move_shot) + self._auto_shoot_timer = QTimer(self) + self._auto_shoot_timer.timeout.connect(self.move_shot) self._shoot_angle = 0 self._shoot_force = 0 - self.target = QtCore.QPoint(0, 0) - self.setPalette(QtGui.QPalette(QtGui.QColor(250, 250, 200))) + self.target = QPoint(0, 0) + self.setPalette(QPalette(QColor(250, 250, 200))) self.setAutoFillBackground(True) self.new_target() def angle(self): return self._current_angle - @QtCore.Slot(int) + @Slot(int) def set_angle(self, angle): if angle < 5: angle = 5 @@ -138,21 +145,21 @@ class CannonField(QtWidgets.QWidget): return self._current_angle = angle self.update() - self.emit(QtCore.SIGNAL("angleChanged(int)"), self._current_angle) + self.angle_changed.emit(self._current_angle) def force(self): return self._current_force - @QtCore.Slot(int) + @Slot(int) def set_force(self, force): if force < 0: force = 0 if self._current_force == force: return self._current_force = force - self.emit(QtCore.SIGNAL("forceChanged(int)"), self._current_force) + self.force_changed.emit(self._current_force) - @QtCore.Slot() + @Slot() def shoot(self): if self._auto_shoot_timer.isActive(): return @@ -166,32 +173,32 @@ class CannonField(QtWidgets.QWidget): def new_target(self): if CannonField.first_time: CannonField.first_time = False - midnight = QtCore.QTime(0, 0, 0) - random.seed(midnight.secsTo(QtCore.QTime.currentTime())) + midnight = QTime(0, 0, 0) + random.seed(midnight.secsTo(QTime.currentTime())) - self.target = QtCore.QPoint(200 + random.randint(0, 190 - 1), 10 + random.randint(0, 255 - 1)) + self.target = QPoint(200 + random.randint(0, 190 - 1), 10 + random.randint(0, 255 - 1)) self.update() - @QtCore.Slot() + @Slot() def move_shot(self): - region = QtGui.QRegion(self.shot_rect()) + region = QRegion(self.shot_rect()) self._timer_count += 1 shot_r = self.shot_rect() if shot_r.intersects(self.target_rect()): self._auto_shoot_timer.stop() - self.emit(QtCore.SIGNAL("hit()")) + self.hit.emit() elif shot_r.x() > self.width() or shot_r.y() > self.height(): self._auto_shoot_timer.stop() - self.emit(QtCore.SIGNAL("missed()")) + self.missed.emit() else: - region = region.united(QtGui.QRegion(shot_r)) + region = region.united(QRegion(shot_r)) self.update(region) def paintEvent(self, event): - painter = QtGui.QPainter(self) + painter = QPainter(self) self.paint_cannon(painter) if self._auto_shoot_timer.isActive(): @@ -200,30 +207,30 @@ class CannonField(QtWidgets.QWidget): self.paint_target(painter) def paint_shot(self, painter): - painter.setPen(QtCore.Qt.NoPen) - painter.setBrush(QtCore.Qt.black) + painter.setPen(Qt.NoPen) + painter.setBrush(Qt.black) painter.drawRect(self.shot_rect()) def paint_target(self, painter): - painter.setPen(QtCore.Qt.black) - painter.setBrush(QtCore.Qt.red) + painter.setPen(Qt.black) + painter.setBrush(Qt.red) painter.drawRect(self.target_rect()) - barrel_rect = QtCore.QRect(33, -4, 15, 8) + barrel_rect = QRect(33, -4, 15, 8) def paint_cannon(self, painter): - painter.setPen(QtCore.Qt.NoPen) - painter.setBrush(QtCore.Qt.blue) + painter.setPen(Qt.NoPen) + painter.setBrush(Qt.blue) painter.save() painter.translate(0, self.height()) - painter.drawPie(QtCore.QRect(-35, -35, 70, 70), 0, 90 * 16) + painter.drawPie(QRect(-35, -35, 70, 70), 0, 90 * 16) painter.rotate(-self._current_angle) painter.drawRect(CannonField.barrel_rect) painter.restore() def cannon_rect(self): - result = QtCore.QRect(0, 0, 50, 50) + result = QRect(0, 0, 50, 50) result.moveBottomLeft(self.rect().bottomLect()) return result @@ -232,7 +239,7 @@ class CannonField(QtWidgets.QWidget): time = self._timer_count / 40.0 velocity = self._shoot_force - radians = self._shoot_angle * 3.14159265 / 180 + radians = self._shoot_angle * math.pi / 180 velx = velocity * math.cos(radians) vely = velocity * math.sin(radians) @@ -241,25 +248,24 @@ class CannonField(QtWidgets.QWidget): x = x0 + velx * time y = y0 + vely * time - 0.5 * gravity * time * time - result = QtCore.QRect(0, 0, 6, 6) - result.moveCenter(QtCore.QPoint(round(x), self.height() - 1 - round(y))) + result = QRect(0, 0, 6, 6) + result.moveCenter(QPoint(round(x), self.height() - 1 - round(y))) return result def target_rect(self): - result = QtCore.QRect(0, 0, 20, 10) - result.moveCenter(QtCore.QPoint(self.target.x(), self.height() - 1 - self.target.y())) + result = QRect(0, 0, 20, 10) + result.moveCenter(QPoint(self.target.x(), self.height() - 1 - self.target.y())) return result -class MyWidget(QtWidgets.QWidget): +class MyWidget(QWidget): def __init__(self, parent=None): - QtWidgets.QWidget.__init__(self, parent) + super().__init__(parent) - quit = QtWidgets.QPushButton("&Quit") - quit.setFont(QtGui.QFont("Times", 18, QtGui.QFont.Bold)) + quit = QPushButton("&Quit") + quit.setFont(QFont("Times", 18, QFont.Bold)) - self.connect(quit, QtCore.SIGNAL("clicked()"), - qApp, QtCore.SLOT("quit()")) + quit.clicked.connect(qApp.quit) angle = LCDRange("ANGLE") angle.set_range(5, 70) @@ -269,44 +275,40 @@ class MyWidget(QtWidgets.QWidget): cannon_field = CannonField() - self.connect(angle, QtCore.SIGNAL("valueChanged(int)"), - cannon_field.set_angle) - self.connect(cannon_field, QtCore.SIGNAL("angleChanged(int)"), - angle.set_value) + angle.value_changed.connect(cannon_field.set_angle) + cannon_field.angle_changed.connect(angle.set_value) - self.connect(force, QtCore.SIGNAL("valueChanged(int)"), - cannon_field.set_force) - self.connect(cannon_field, QtCore.SIGNAL("forceChanged(int)"), - force.set_value) + force.value_changed.connect(cannon_field.set_force) + cannon_field.force_changed.connect(force.set_value) - shoot = QtWidgets.QPushButton("&Shoot") - shoot.setFont(QtGui.QFont("Times", 18, QtGui.QFont.Bold)) + shoot = QPushButton("&Shoot") + shoot.setFont(QFont("Times", 18, QFont.Bold)) - self.connect(shoot, QtCore.SIGNAL("clicked()"), cannon_field.shoot) + shoot.clicked.connect(cannon_field.shoot) - top_layout = QtWidgets.QHBoxLayout() + top_layout = QHBoxLayout() top_layout.addWidget(shoot) top_layout.addStretch(1) - left_layout = QtWidgets.QVBoxLayout() + left_layout = QVBoxLayout() left_layout.addWidget(angle) left_layout.addWidget(force) - grid_layout = QtWidgets.QGridLayout() + grid_layout = QGridLayout(self) grid_layout.addWidget(quit, 0, 0) grid_layout.addLayout(top_layout, 0, 1) grid_layout.addLayout(left_layout, 1, 0) grid_layout.addWidget(cannon_field, 1, 1, 2, 1) grid_layout.setColumnStretch(1, 10) - self.setLayout(grid_layout) angle.set_value(60) force.set_value(25) angle.setFocus() -app = QtWidgets.QApplication(sys.argv) -widget = MyWidget() -widget.setGeometry(100, 100, 500, 355) -widget.show() -sys.exit(app.exec_()) +if __name__ == '__main__': + app = QApplication(sys.argv) + widget = MyWidget() + widget.setGeometry(100, 100, 500, 355) + widget.show() + sys.exit(app.exec_()) diff --git a/examples/widgets/tutorials/cannon/t13.py b/examples/widgets/tutorials/cannon/t13.py index b0d56c166..9214611bd 100644 --- a/examples/widgets/tutorials/cannon/t13.py +++ b/examples/widgets/tutorials/cannon/t13.py @@ -1,7 +1,7 @@ ############################################################################# ## -## Copyright (C) 2016 The Qt Company Ltd. +## Copyright (C) 2021 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## ## This file is part of the Qt for Python examples of the Qt Toolkit. @@ -45,17 +45,25 @@ import sys import math import random -from PySide6 import QtCore, QtGui, QtWidgets +from PySide6.QtCore import (QPoint, QRect, QTime, QTimer, Qt, SIGNAL, SLOT, + Signal, Slot) +from PySide6.QtGui import QColor, QFont, QPainter, QPalette, QRegion +from PySide6.QtWidgets import (QApplication, QGridLayout, QHBoxLayout, QLabel, + QLCDNumber, QPushButton, QSizePolicy, QSlider, + QVBoxLayout, QWidget) + + +class LCDRange(QWidget): + + value_changed = Signal(int) -class LCDRange(QtWidgets.QWidget): - value_changed = QtCore.Signal(int) def __init__(self, text=None, parent=None): - if isinstance(text, QtWidgets.QWidget): + if isinstance(text, QWidget): parent = text text = None - QtWidgets.QWidget.__init__(self, parent) + super().__init__(parent) self.init() @@ -63,31 +71,28 @@ class LCDRange(QtWidgets.QWidget): self.set_text(text) def init(self): - lcd = QtWidgets.QLCDNumber(2) - self.slider = QtWidgets.QSlider(QtCore.Qt.Horizontal) + lcd = QLCDNumber(2) + self.slider = QSlider(Qt.Horizontal) self.slider.setRange(0, 99) self.slider.setValue(0) - self.label = QtWidgets.QLabel() - self.label.setAlignment(QtCore.Qt.AlignHCenter | QtCore.Qt.AlignTop) - self.label.setSizePolicy(QtWidgets.QSizePolicy.Preferred, QtWidgets.QSizePolicy.Fixed) + self.label = QLabel() + self.label.setAlignment(Qt.AlignHCenter | Qt.AlignTop) + self.label.setSizePolicy(QSizePolicy.Preferred, QSizePolicy.Fixed) - self.connect(self.slider, QtCore.SIGNAL("valueChanged(int)"), - lcd, QtCore.SLOT("display(int)")) - self.connect(self.slider, QtCore.SIGNAL("valueChanged(int)"), - self, QtCore.SIGNAL("valueChanged(int)")) + self.slider.valueChanged.connect(lcd.display) + self.slider.valueChanged.connect(self.value_changed) - layout = QtWidgets.QVBoxLayout() + layout = QVBoxLayout(self) layout.addWidget(lcd) layout.addWidget(self.slider) layout.addWidget(self.label) - self.setLayout(layout) self.setFocusProxy(self.slider) def value(self): return self.slider.value() - @QtCore.Slot(int) + @Slot(int) def set_value(self, value): self.slider.setValue(value) @@ -96,7 +101,7 @@ class LCDRange(QtWidgets.QWidget): def set_range(self, minValue, maxValue): if minValue < 0 or maxValue > 99 or minValue > maxValue: - QtCore.qWarning(f"LCDRange::setRange({minValue}, {maxValue})\n" + qWarning(f"LCDRange::setRange({minValue}, {maxValue})\n" "\tRange must be 0..99\n" "\tand minValue must not be greater than maxValue") return @@ -107,33 +112,34 @@ class LCDRange(QtWidgets.QWidget): self.label.setText(text) -class CannonField(QtWidgets.QWidget): - angle_changed = QtCore.Signal(int) - force_changed = QtCore.Signal(int) - hit = QtCore.Signal() - missed = QtCore.Signal() - can_shoot = QtCore.Signal(bool) +class CannonField(QWidget): + + angle_changed = Signal(int) + force_changed = Signal(int) + hit = Signal() + missed = Signal() + can_shoot = Signal(bool) + def __init__(self, parent=None): - QtWidgets.QWidget.__init__(self, parent) + super().__init__(parent) self._current_angle = 45 self._current_force = 0 self._timer_count = 0 - self._auto_shoot_timer = QtCore.QTimer(self) - self.connect(self._auto_shoot_timer, QtCore.SIGNAL("timeout()"), - self.move_shot) + self._auto_shoot_timer = QTimer(self) + self._auto_shoot_timer.timeout.connect(self.move_shot) self._shoot_angle = 0 self._shoot_force = 0 - self.target = QtCore.QPoint(0, 0) + self.target = QPoint(0, 0) self._game_ended = False - self.setPalette(QtGui.QPalette(QtGui.QColor(250, 250, 200))) + self.setPalette(QPalette(QColor(250, 250, 200))) self.setAutoFillBackground(True) self.new_target() def angle(self): return self._current_angle - @QtCore.Slot(int) + @Slot(int) def set_angle(self, angle): if angle < 5: angle = 5 @@ -143,21 +149,21 @@ class CannonField(QtWidgets.QWidget): return self._current_angle = angle self.update() - self.emit(QtCore.SIGNAL("angleChanged(int)"), self._current_angle) + self.angle_changed.emit(self._current_angle) def force(self): return self._current_force - @QtCore.Slot(int) + @Slot(int) def set_force(self, force): if force < 0: force = 0 if self._current_force == force: return self._current_force = force - self.emit(QtCore.SIGNAL("forceChanged(int)"), self._current_force) + self.force_changed.emit(self._current_force) - @QtCore.Slot() + @Slot() def shoot(self): if self.is_shooting(): return @@ -165,17 +171,17 @@ class CannonField(QtWidgets.QWidget): self._shoot_angle = self._current_angle self._shoot_force = self._current_force self._auto_shoot_timer.start(5) - self.emit(QtCore.SIGNAL("canShoot(bool)"), False) + self.can_shoot.emit(False) first_time = True def new_target(self): if CannonField.first_time: CannonField.first_time = False - midnight = QtCore.QTime(0, 0, 0) - random.seed(midnight.secsTo(QtCore.QTime.currentTime())) + midnight = QTime(0, 0, 0) + random.seed(midnight.secsTo(QTime.currentTime())) - self.target = QtCore.QPoint(200 + random.randint(0, 190 - 1), 10 + random.randint(0, 255 - 1)) + self.target = QPoint(200 + random.randint(0, 190 - 1), 10 + random.randint(0, 255 - 1)) self.update() def set_game_over(self): @@ -191,35 +197,35 @@ class CannonField(QtWidgets.QWidget): self._auto_shoot_timer.stop() self._game_ended = False self.update() - self.emit(QtCore.SIGNAL("canShoot(bool)"), True) + self.can_shoot.emit(True) - @QtCore.Slot() + @Slot() def move_shot(self): - region = QtGui.QRegion(self.shot_rect()) + region = QRegion(self.shot_rect()) self._timer_count += 1 shot_r = self.shot_rect() if shot_r.intersects(self.target_rect()): self._auto_shoot_timer.stop() - self.emit(QtCore.SIGNAL("hit()")) - self.emit(QtCore.SIGNAL("canShoot(bool)"), True) + self.hit.emit() + self.can_shoot.emit(True) elif shot_r.x() > self.width() or shot_r.y() > self.height(): self._auto_shoot_timer.stop() - self.emit(QtCore.SIGNAL("missed()")) - self.emit(QtCore.SIGNAL("canShoot(bool)"), True) + self.missed.emit() + self.can_shoot.emit(True) else: - region = region.united(QtGui.QRegion(shot_r)) + region = region.united(QRegion(shot_r)) self.update(region) def paintEvent(self, event): - painter = QtGui.QPainter(self) + painter = QPainter(self) if self._game_ended: - painter.setPen(QtCore.Qt.black) - painter.setFont(QtGui.QFont("Courier", 48, QtGui.QFont.Bold)) - painter.drawText(self.rect(), QtCore.Qt.AlignCenter, "Game Over") + painter.setPen(Qt.black) + painter.setFont(QFont("Courier", 48, QFont.Bold)) + painter.drawText(self.rect(), Qt.AlignCenter, "Game Over") self.paint_cannon(painter) if self.is_shooting(): @@ -228,30 +234,30 @@ class CannonField(QtWidgets.QWidget): self.paint_target(painter) def paint_shot(self, painter): - painter.setPen(QtCore.Qt.NoPen) - painter.setBrush(QtCore.Qt.black) + painter.setPen(Qt.NoPen) + painter.setBrush(Qt.black) painter.drawRect(self.shot_rect()) def paint_target(self, painter): - painter.setPen(QtCore.Qt.black) - painter.setBrush(QtCore.Qt.red) + painter.setPen(Qt.black) + painter.setBrush(Qt.red) painter.drawRect(self.target_rect()) - barrel_rect = QtCore.QRect(33, -4, 15, 8) + barrel_rect = QRect(33, -4, 15, 8) def paint_cannon(self, painter): - painter.setPen(QtCore.Qt.NoPen) - painter.setBrush(QtCore.Qt.blue) + painter.setPen(Qt.NoPen) + painter.setBrush(Qt.blue) painter.save() painter.translate(0, self.height()) - painter.drawPie(QtCore.QRect(-35, -35, 70, 70), 0, 90 * 16) + painter.drawPie(QRect(-35, -35, 70, 70), 0, 90 * 16) painter.rotate(-self._current_angle) painter.drawRect(CannonField.barrel_rect) painter.restore() def cannon_rect(self): - result = QtCore.QRect(0, 0, 50, 50) + result = QRect(0, 0, 50, 50) result.moveBottomLeft(self.rect().bottomLect()) return result @@ -260,7 +266,7 @@ class CannonField(QtWidgets.QWidget): time = self._timer_count / 40.0 velocity = self._shoot_force - radians = self._shoot_angle * 3.14159265 / 180 + radians = self._shoot_angle * math.pi / 180 velx = velocity * math.cos(radians) vely = velocity * math.sin(radians) @@ -269,13 +275,13 @@ class CannonField(QtWidgets.QWidget): x = x0 + velx * time y = y0 + vely * time - 0.5 * gravity * time * time - result = QtCore.QRect(0, 0, 6, 6) - result.moveCenter(QtCore.QPoint(round(x), self.height() - 1 - round(y))) + result = QRect(0, 0, 6, 6) + result.moveCenter(QPoint(round(x), self.height() - 1 - round(y))) return result def target_rect(self): - result = QtCore.QRect(0, 0, 20, 10) - result.moveCenter(QtCore.QPoint(self.target.x(), self.height() - 1 - self.target.y())) + result = QRect(0, 0, 20, 10) + result.moveCenter(QPoint(self.target.x(), self.height() - 1 - self.target.y())) return result def game_over(self): @@ -285,15 +291,14 @@ class CannonField(QtWidgets.QWidget): return self._auto_shoot_timer.isActive() -class GameBoard(QtWidgets.QWidget): +class GameBoard(QWidget): def __init__(self, parent=None): - QtWidgets.QWidget.__init__(self, parent) + super().__init__(parent) - quit = QtWidgets.QPushButton("&Quit") - quit.setFont(QtGui.QFont("Times", 18, QtGui.QFont.Bold)) + quit = QPushButton("&Quit") + quit.setFont(QFont("Times", 18, QFont.Bold)) - self.connect(quit, QtCore.SIGNAL("clicked()"), - qApp, QtCore.SLOT("quit()")) + quit.clicked.connect(qApp.quit) angle = LCDRange("ANGLE") angle.set_range(5, 70) @@ -303,37 +308,32 @@ class GameBoard(QtWidgets.QWidget): self._cannon_field = CannonField() - self.connect(angle, QtCore.SIGNAL("valueChanged(int)"), - self._cannon_field.set_angle) - self.connect(self._cannon_field, QtCore.SIGNAL("angleChanged(int)"), - angle.set_value) + angle.value_changed.connect(self._cannon_field.set_angle) + self._cannon_field.angle_changed.connect(angle.set_value) - self.connect(force, QtCore.SIGNAL("valueChanged(int)"), - self._cannon_field.set_force) - self.connect(self._cannon_field, QtCore.SIGNAL("forceChanged(int)"), - force.set_value) + force.value_changed.connect(self._cannon_field.set_force) + self._cannon_field.force_changed.connect(force.set_value) - self.connect(self._cannon_field, QtCore.SIGNAL("hit()"), self.hit) - self.connect(self._cannon_field, QtCore.SIGNAL("missed()"), self.missed) + self._cannon_field.hit.connect(self.hit) + self._cannon_field.missed.connect(self.missed) - shoot = QtWidgets.QPushButton("&Shoot") - shoot.setFont(QtGui.QFont("Times", 18, QtGui.QFont.Bold)) + shoot = QPushButton("&Shoot") + shoot.setFont(QFont("Times", 18, QFont.Bold)) - self.connect(shoot, QtCore.SIGNAL("clicked()"), self.fire) - self.connect(self._cannon_field, QtCore.SIGNAL("canShoot(bool)"), - shoot, QtCore.SLOT("setEnabled(bool)")) + shoot.clicked.connect(self.fire) + self._cannon_field.can_shoot.connect(shoot.setEnabled) - restart = QtWidgets.QPushButton("&New Game") - restart.setFont(QtGui.QFont("Times", 18, QtGui.QFont.Bold)) + restart = QPushButton("&New Game") + restart.setFont(QFont("Times", 18, QFont.Bold)) - self.connect(restart, QtCore.SIGNAL("clicked()"), self.new_game) + restart.clicked.connect(self.new_game) - self.hits = QtWidgets.QLCDNumber(2) - self._shots_left = QtWidgets.QLCDNumber(2) - hits_label = QtWidgets.QLabel("HITS") - shots_left_label = QtWidgets.QLabel("SHOTS LEFT") + self.hits = QLCDNumber(2) + self._shots_left = QLCDNumber(2) + hits_label = QLabel("HITS") + shots_left_label = QLabel("SHOTS LEFT") - top_layout = QtWidgets.QHBoxLayout() + top_layout = QHBoxLayout() top_layout.addWidget(shoot) top_layout.addWidget(self.hits) top_layout.addWidget(hits_label) @@ -342,17 +342,16 @@ class GameBoard(QtWidgets.QWidget): top_layout.addStretch(1) top_layout.addWidget(restart) - left_layout = QtWidgets.QVBoxLayout() + left_layout = QVBoxLayout() left_layout.addWidget(angle) left_layout.addWidget(force) - grid_layout = QtWidgets.QGridLayout() + grid_layout = QGridLayout(self) grid_layout.addWidget(quit, 0, 0) grid_layout.addLayout(top_layout, 0, 1) grid_layout.addLayout(left_layout, 1, 0) grid_layout.addWidget(self._cannon_field, 1, 1, 2, 1) grid_layout.setColumnStretch(1, 10) - self.setLayout(grid_layout) angle.set_value(60) force.set_value(25) @@ -360,14 +359,14 @@ class GameBoard(QtWidgets.QWidget): self.new_game() - @QtCore.Slot() + @Slot() def fire(self): if self._cannon_field.game_over() or self._cannon_field.is_shooting(): return self._shots_left.display(self._shots_left.intValue() - 1) self._cannon_field.shoot() - @QtCore.Slot() + @Slot() def hit(self): self.hits.display(self.hits.intValue() + 1) if self._shots_left.intValue() == 0: @@ -375,12 +374,12 @@ class GameBoard(QtWidgets.QWidget): else: self._cannon_field.new_target() - @QtCore.Slot() + @Slot() def missed(self): if self._shots_left.intValue() == 0: self._cannon_field.set_game_over() - @QtCore.Slot() + @Slot() def new_game(self): self._shots_left.display(15) self.hits.display(0) @@ -388,8 +387,9 @@ class GameBoard(QtWidgets.QWidget): self._cannon_field.new_target() -app = QtWidgets.QApplication(sys.argv) -board = GameBoard() -board.setGeometry(100, 100, 500, 355) -board.show() -sys.exit(app.exec_()) +if __name__ == '__main__': + app = QApplication(sys.argv) + board = GameBoard() + board.setGeometry(100, 100, 500, 355) + board.show() + sys.exit(app.exec_()) diff --git a/examples/widgets/tutorials/cannon/t14.py b/examples/widgets/tutorials/cannon/t14.py index f0f5698d6..3fd298e4d 100644 --- a/examples/widgets/tutorials/cannon/t14.py +++ b/examples/widgets/tutorials/cannon/t14.py @@ -1,7 +1,7 @@ ############################################################################# ## -## Copyright (C) 2016 The Qt Company Ltd. +## Copyright (C) 2021 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## ## This file is part of the Qt for Python examples of the Qt Toolkit. @@ -45,17 +45,26 @@ import sys import math import random -from PySide6 import QtCore, QtGui, QtWidgets +from PySide6.QtCore import (QPoint, QRect, QTime, QTimer, QSize, Qt, SIGNAL, + SLOT, Signal, Slot) +from PySide6.QtGui import (QColor, QFont, QKeySequence, QPainter, QPalette, + QShortcut, QRegion) +from PySide6.QtWidgets import (QApplication, QFrame, QGridLayout, QHBoxLayout, + QLabel, QLCDNumber, QPushButton, QSizePolicy, + QSlider, QVBoxLayout, QWidget) + + +class LCDRange(QWidget): + + value_changed = Signal(int) -class LCDRange(QtWidgets.QWidget): - value_changed = QtCore.Signal(int) def __init__(self, text=None, parent=None): - if isinstance(text, QtWidgets.QWidget): + if isinstance(text, QWidget): parent = text text = None - QtWidgets.QWidget.__init__(self, parent) + super().__init__(parent) self.init() @@ -63,31 +72,28 @@ class LCDRange(QtWidgets.QWidget): self.set_text(text) def init(self): - lcd = QtWidgets.QLCDNumber(2) - self.slider = QtWidgets.QSlider(QtCore.Qt.Horizontal) + lcd = QLCDNumber(2) + self.slider = QSlider(Qt.Horizontal) self.slider.setRange(0, 99) self.slider.setValue(0) - self.label = QtWidgets.QLabel() - self.label.setAlignment(QtCore.Qt.AlignHCenter | QtCore.Qt.AlignTop) - self.label.setSizePolicy(QtWidgets.QSizePolicy.Preferred, QtWidgets.QSizePolicy.Fixed) + self.label = QLabel() + self.label.setAlignment(Qt.AlignHCenter | Qt.AlignTop) + self.label.setSizePolicy(QSizePolicy.Preferred, QSizePolicy.Fixed) - self.connect(self.slider, QtCore.SIGNAL("valueChanged(int)"), - lcd, QtCore.SLOT("display(int)")) - self.connect(self.slider, QtCore.SIGNAL("valueChanged(int)"), - self, QtCore.SIGNAL("valueChanged(int)")) + self.slider.valueChanged.connect(lcd.display) + self.slider.valueChanged.connect(self.value_changed) - layout = QtWidgets.QVBoxLayout() + layout = QVBoxLayout(self) layout.addWidget(lcd) layout.addWidget(self.slider) layout.addWidget(self.label) - self.setLayout(layout) self.setFocusProxy(self.slider) def value(self): return self.slider.value() - @QtCore.Slot(int) + @Slot(int) def set_value(self, value): self.slider.setValue(value) @@ -96,7 +102,7 @@ class LCDRange(QtWidgets.QWidget): def set_range(self, minValue, maxValue): if minValue < 0 or maxValue > 99 or minValue > maxValue: - QtCore.qWarning(f"LCDRange::setRange({minValue}, {maxValue})\n" + qWarning(f"LCDRange::setRange({minValue}, {maxValue})\n" "\tRange must be 0..99\n" "\tand minValue must not be greater than maxValue") return @@ -107,34 +113,35 @@ class LCDRange(QtWidgets.QWidget): self.label.setText(text) -class CannonField(QtWidgets.QWidget): - angle_changed = QtCore.Signal(int) - force_changed = QtCore.Signal(int) - hit = QtCore.Signal() - missed = QtCore.Signal() - can_shoot = QtCore.Signal(bool) +class CannonField(QWidget): + + angle_changed = Signal(int) + force_changed = Signal(int) + hit = Signal() + missed = Signal() + can_shoot = Signal(bool) + def __init__(self, parent=None): - QtWidgets.QWidget.__init__(self, parent) + super().__init__(parent) self._current_angle = 45 self._current_force = 0 self._timer_count = 0 - self._auto_shoot_timer = QtCore.QTimer(self) - self.connect(self._auto_shoot_timer, QtCore.SIGNAL("timeout()"), - self.move_shot) + self._auto_shoot_timer = QTimer(self) + self._auto_shoot_timer.timeout.connect(self.move_shot) self._shoot_angle = 0 self._shoot_force = 0 - self.target = QtCore.QPoint(0, 0) + self.target = QPoint(0, 0) self._game_ended = False self._barrel_pressed = False - self.setPalette(QtGui.QPalette(QtGui.QColor(250, 250, 200))) + self.setPalette(QPalette(QColor(250, 250, 200))) self.setAutoFillBackground(True) self.new_target() def angle(self): return self._current_angle - @QtCore.Slot(int) + @Slot(int) def set_angle(self, angle): if angle < 5: angle = 5 @@ -144,21 +151,21 @@ class CannonField(QtWidgets.QWidget): return self._current_angle = angle self.update() - self.emit(QtCore.SIGNAL("angleChanged(int)"), self._current_angle) + self.angle_changed.emit(self._current_angle) def force(self): return self._current_force - @QtCore.Slot(int) + @Slot(int) def set_force(self, force): if force < 0: force = 0 if self._current_force == force: return self._current_force = force - self.emit(QtCore.SIGNAL("forceChanged(int)"), self._current_force) + self.force_changed.emit(self._current_force) - @QtCore.Slot() + @Slot() def shoot(self): if self.is_shooting(): return @@ -166,17 +173,17 @@ class CannonField(QtWidgets.QWidget): self._shoot_angle = self._current_angle self._shoot_force = self._current_force self._auto_shoot_timer.start(5) - self.emit(QtCore.SIGNAL("canShoot(bool)"), False) + self.can_shoot.emit(False) first_time = True def new_target(self): if CannonField.first_time: CannonField.first_time = False - midnight = QtCore.QTime(0, 0, 0) - random.seed(midnight.secsTo(QtCore.QTime.currentTime())) + midnight = QTime(0, 0, 0) + random.seed(midnight.secsTo(QTime.currentTime())) - self.target = QtCore.QPoint(200 + random.randint(0, 190 - 1), 10 + random.randint(0, 255 - 1)) + self.target = QPoint(200 + random.randint(0, 190 - 1), 10 + random.randint(0, 255 - 1)) self.update() def set_game_over(self): @@ -192,30 +199,30 @@ class CannonField(QtWidgets.QWidget): self._auto_shoot_timer.stop() self._game_ended = False self.update() - self.emit(QtCore.SIGNAL("canShoot(bool)"), True) + self.can_shoot.emit(True) - @QtCore.Slot() + @Slot() def move_shot(self): - region = QtGui.QRegion(self.shot_rect()) + region = QRegion(self.shot_rect()) self._timer_count += 1 shot_r = self.shot_rect() if shot_r.intersects(self.target_rect()): self._auto_shoot_timer.stop() - self.emit(QtCore.SIGNAL("hit()")) - self.emit(QtCore.SIGNAL("canShoot(bool)"), True) + self.hit.emit() + self.can_shoot.emit(True) elif shot_r.x() > self.width() or shot_r.y() > self.height() or shot_r.intersects(self.barrier_rect()): self._auto_shoot_timer.stop() - self.emit(QtCore.SIGNAL("missed()")) - self.emit(QtCore.SIGNAL("canShoot(bool)"), True) + self.missed.emit() + self.can_shoot.emit(True) else: - region = region.united(QtGui.QRegion(shot_r)) + region = region.united(QRegion(shot_r)) self.update(region) def mousePressEvent(self, event): - if event.button() != QtCore.Qt.LeftButton: + if event.button() != Qt.LeftButton: return if self.barrel_hit(event.position().toPoint()): self._barrel_pressed = True @@ -229,19 +236,19 @@ class CannonField(QtWidgets.QWidget): if pos.y() >= self.height(): pos.setY(self.height() - 1) rad = math.atan((float(self.rect().bottom()) - pos.y()) / pos.x()) - self.set_angle(round(rad * 180 / 3.14159265)) + self.set_angle(round(rad * 180 / math.pi)) def mouseReleaseEvent(self, event): - if event.button() == QtCore.Qt.LeftButton: + if event.button() == Qt.LeftButton: self._barrel_pressed = False def paintEvent(self, event): - painter = QtGui.QPainter(self) + painter = QPainter(self) if self._game_ended: - painter.setPen(QtCore.Qt.black) - painter.setFont(QtGui.QFont("Courier", 48, QtGui.QFont.Bold)) - painter.drawText(self.rect(), QtCore.Qt.AlignCenter, "Game Over") + painter.setPen(Qt.black) + painter.setFont(QFont("Courier", 48, QFont.Bold)) + painter.drawText(self.rect(), Qt.AlignCenter, "Game Over") self.paint_cannon(painter) self.paint_barrier(painter) @@ -251,35 +258,35 @@ class CannonField(QtWidgets.QWidget): self.paint_target(painter) def paint_shot(self, painter): - painter.setPen(QtCore.Qt.NoPen) - painter.setBrush(QtCore.Qt.black) + painter.setPen(Qt.NoPen) + painter.setBrush(Qt.black) painter.drawRect(self.shot_rect()) def paint_target(self, painter): - painter.setPen(QtCore.Qt.black) - painter.setBrush(QtCore.Qt.red) + painter.setPen(Qt.black) + painter.setBrush(Qt.red) painter.drawRect(self.target_rect()) def paint_barrier(self, painter): - painter.setPen(QtCore.Qt.black) - painter.setBrush(QtCore.Qt.yellow) + painter.setPen(Qt.black) + painter.setBrush(Qt.yellow) painter.drawRect(self.barrier_rect()) - barrel_rect = QtCore.QRect(33, -4, 15, 8) + barrel_rect = QRect(33, -4, 15, 8) def paint_cannon(self, painter): - painter.setPen(QtCore.Qt.NoPen) - painter.setBrush(QtCore.Qt.blue) + painter.setPen(Qt.NoPen) + painter.setBrush(Qt.blue) painter.save() painter.translate(0, self.height()) - painter.drawPie(QtCore.QRect(-35, -35, 70, 70), 0, 90 * 16) + painter.drawPie(QRect(-35, -35, 70, 70), 0, 90 * 16) painter.rotate(-self._current_angle) painter.drawRect(CannonField.barrel_rect) painter.restore() def cannon_rect(self): - result = QtCore.QRect(0, 0, 50, 50) + result = QRect(0, 0, 50, 50) result.moveBottomLeft(self.rect().bottomLect()) return result @@ -288,7 +295,7 @@ class CannonField(QtWidgets.QWidget): time = self._timer_count / 40.0 velocity = self._shoot_force - radians = self._shoot_angle * 3.14159265 / 180 + radians = self._shoot_angle * math.pi / 180 velx = velocity * math.cos(radians) vely = velocity * math.sin(radians) @@ -297,20 +304,20 @@ class CannonField(QtWidgets.QWidget): x = x0 + velx * time y = y0 + vely * time - 0.5 * gravity * time * time - result = QtCore.QRect(0, 0, 6, 6) - result.moveCenter(QtCore.QPoint(round(x), self.height() - 1 - round(y))) + result = QRect(0, 0, 6, 6) + result.moveCenter(QPoint(round(x), self.height() - 1 - round(y))) return result def target_rect(self): - result = QtCore.QRect(0, 0, 20, 10) - result.moveCenter(QtCore.QPoint(self.target.x(), self.height() - 1 - self.target.y())) + result = QRect(0, 0, 20, 10) + result.moveCenter(QPoint(self.target.x(), self.height() - 1 - self.target.y())) return result def barrier_rect(self): - return QtCore.QRect(145, self.height() - 100, 15, 99) + return QRect(145, self.height() - 100, 15, 99) def barrel_hit(self, pos): - matrix = QtGui.QTransform() + matrix = QTransform() matrix.translate(0, self.height()) matrix.rotate(-self._current_angle) matrix, invertible = matrix.inverted() @@ -323,18 +330,17 @@ class CannonField(QtWidgets.QWidget): return self._auto_shoot_timer.isActive() def sizeHint(self): - return QtCore.QSize(400, 300) + return QSize(400, 300) -class GameBoard(QtWidgets.QWidget): +class GameBoard(QWidget): def __init__(self, parent=None): - QtWidgets.QWidget.__init__(self, parent) + super().__init__(parent) - quit = QtWidgets.QPushButton("&Quit") - quit.setFont(QtGui.QFont("Times", 18, QtGui.QFont.Bold)) + quit = QPushButton("&Quit") + quit.setFont(QFont("Times", 18, QFont.Bold)) - self.connect(quit, QtCore.SIGNAL("clicked()"), - qApp, QtCore.SLOT("quit()")) + quit.clicked.connect(qApp.quit) angle = LCDRange("ANGLE") angle.set_range(5, 70) @@ -342,49 +348,41 @@ class GameBoard(QtWidgets.QWidget): force = LCDRange("FORCE") force.set_range(10, 50) - cannon_box = QtWidgets.QFrame() - cannon_box.setFrameStyle(QtWidgets.QFrame.WinPanel | QtWidgets.QFrame.Sunken) + cannon_box = QFrame() + cannon_box.setFrameStyle(QFrame.WinPanel | QFrame.Sunken) self._cannon_field = CannonField() - self.connect(angle, QtCore.SIGNAL("valueChanged(int)"), - self._cannon_field.set_angle) - self.connect(self._cannon_field, QtCore.SIGNAL("angleChanged(int)"), - angle.set_value) + angle.value_changed.connect(self._cannon_field.set_angle) + self._cannon_field.angle_changed.connect(angle.set_value) - self.connect(force, QtCore.SIGNAL("valueChanged(int)"), - self._cannon_field.set_force) - self.connect(self._cannon_field, QtCore.SIGNAL("forceChanged(int)"), - force.set_value) + force.value_changed.connect(self._cannon_field.set_force) + self._cannon_field.force_changed.connect(force.set_value) - self.connect(self._cannon_field, QtCore.SIGNAL("hit()"), self.hit) - self.connect(self._cannon_field, QtCore.SIGNAL("missed()"), self.missed) + self._cannon_field.hit.connect(self.hit) + self._cannon_field.missed.connect(self.missed) - shoot = QtWidgets.QPushButton("&Shoot") - shoot.setFont(QtGui.QFont("Times", 18, QtGui.QFont.Bold)) + shoot = QPushButton("&Shoot") + shoot.setFont(QFont("Times", 18, QFont.Bold)) - self.connect(shoot, QtCore.SIGNAL("clicked()"), self.fire) - self.connect(self._cannon_field, QtCore.SIGNAL("canShoot(bool)"), - shoot, QtCore.SLOT("setEnabled(bool)")) + shoot.clicked.connect(self.fire) + self._cannon_field.can_shoot.connect(shoot.setEnabled) - restart = QtWidgets.QPushButton("&New Game") - restart.setFont(QtGui.QFont("Times", 18, QtGui.QFont.Bold)) + restart = QPushButton("&New Game") + restart.setFont(QFont("Times", 18, QFont.Bold)) - self.connect(restart, QtCore.SIGNAL("clicked()"), self.new_game) + restart.clicked.connect(self.new_game) - self.hits = QtWidgets.QLCDNumber(2) - self._shots_left = QtWidgets.QLCDNumber(2) - hits_label = QtWidgets.QLabel("HITS") - shots_left_label = QtWidgets.QLabel("SHOTS LEFT") + self.hits = QLCDNumber(2) + self._shots_left = QLCDNumber(2) + hits_label = QLabel("HITS") + shots_left_label = QLabel("SHOTS LEFT") - QtGui.QShortcut(QtGui.QKeySequence(QtCore.Qt.Key_Enter), - self, self.fire) - QtGui.QShortcut(QtGui.QKeySequence(QtCore.Qt.Key_Return), - self, self.fire) - QtGui.QShortcut(QtGui.QKeySequence(QtCore.Qt.CTRL + QtCore.Qt.Key_Q), - self, QtCore.SLOT("close()")) + QShortcut(QKeySequence(Qt.Key_Enter), self, self.fire) + QShortcut(QKeySequence(Qt.Key_Return), self, self.fire) + QShortcut(QKeySequence(Qt.CTRL + Qt.Key_Q), self, self.close) - top_layout = QtWidgets.QHBoxLayout() + top_layout = QHBoxLayout() top_layout.addWidget(shoot) top_layout.addWidget(self.hits) top_layout.addWidget(hits_label) @@ -393,21 +391,20 @@ class GameBoard(QtWidgets.QWidget): top_layout.addStretch(1) top_layout.addWidget(restart) - left_layout = QtWidgets.QVBoxLayout() + left_layout = QVBoxLayout() left_layout.addWidget(angle) left_layout.addWidget(force) - cannon_layout = QtWidgets.QVBoxLayout() + cannon_layout = QVBoxLayout() cannon_layout.addWidget(self._cannon_field) cannon_box.setLayout(cannon_layout) - grid_layout = QtWidgets.QGridLayout() + grid_layout = QGridLayout(self) grid_layout.addWidget(quit, 0, 0) grid_layout.addLayout(top_layout, 0, 1) grid_layout.addLayout(left_layout, 1, 0) grid_layout.addWidget(cannon_box, 1, 1, 2, 1) grid_layout.setColumnStretch(1, 10) - self.setLayout(grid_layout) angle.set_value(60) force.set_value(25) @@ -415,14 +412,14 @@ class GameBoard(QtWidgets.QWidget): self.new_game() - @QtCore.Slot() + @Slot() def fire(self): if self._cannon_field.game_over() or self._cannon_field.is_shooting(): return self._shots_left.display(self._shots_left.intValue() - 1) self._cannon_field.shoot() - @QtCore.Slot() + @Slot() def hit(self): self.hits.display(self.hits.intValue() + 1) if self._shots_left.intValue() == 0: @@ -430,12 +427,12 @@ class GameBoard(QtWidgets.QWidget): else: self._cannon_field.new_target() - @QtCore.Slot() + @Slot() def missed(self): if self._shots_left.intValue() == 0: self._cannon_field.set_game_over() - @QtCore.Slot() + @Slot() def new_game(self): self._shots_left.display(15) self.hits.display(0) @@ -443,8 +440,9 @@ class GameBoard(QtWidgets.QWidget): self._cannon_field.new_target() -app = QtWidgets.QApplication(sys.argv) -board = GameBoard() -board.setGeometry(100, 100, 500, 355) -board.show() -sys.exit(app.exec_()) +if __name__ == '__main__': + app = QApplication(sys.argv) + board = GameBoard() + board.setGeometry(100, 100, 500, 355) + board.show() + sys.exit(app.exec_()) diff --git a/examples/widgets/tutorials/cannon/t2.py b/examples/widgets/tutorials/cannon/t2.py index d51986f47..a912db39b 100644 --- a/examples/widgets/tutorials/cannon/t2.py +++ b/examples/widgets/tutorials/cannon/t2.py @@ -1,7 +1,7 @@ ############################################################################# ## -## Copyright (C) 2016 The Qt Company Ltd. +## Copyright (C) 2021 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## ## This file is part of the Qt for Python examples of the Qt Toolkit. @@ -43,17 +43,20 @@ import sys -from PySide6 import QtCore, QtGui, QtWidgets +from PySide6.QtCore import (QPoint, QRect, QTime, QTimer, Qt) +from PySide6.QtGui import QFont +from PySide6.QtWidgets import (QApplication, QPushButton) -app = QtWidgets.QApplication(sys.argv) -quit = QtWidgets.QPushButton("Quit") -quit.resize(75, 30) -quit.setFont(QtGui.QFont("Times", 18, QtGui.QFont.Bold)) +if __name__ == '__main__': + app = QApplication(sys.argv) -QtCore.QObject.connect(quit, QtCore.SIGNAL("clicked()"), - app, QtCore.SLOT("quit()")) + quit = QPushButton("Quit") + quit.resize(75, 30) + quit.setFont(QFont("Times", 18, QFont.Bold)) -quit.show() -sys.exit(app.exec_()) + quit.clicked.connect(app.quit) + + quit.show() + sys.exit(app.exec_()) diff --git a/examples/widgets/tutorials/cannon/t3.py b/examples/widgets/tutorials/cannon/t3.py index fa96d6ff1..cc551beda 100644 --- a/examples/widgets/tutorials/cannon/t3.py +++ b/examples/widgets/tutorials/cannon/t3.py @@ -1,7 +1,7 @@ ############################################################################# ## -## Copyright (C) 2016 The Qt Company Ltd. +## Copyright (C) 2021 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## ## This file is part of the Qt for Python examples of the Qt Toolkit. @@ -43,19 +43,21 @@ import sys -from PySide6 import QtCore, QtGui, QtWidgets +from PySide6.QtGui import QFont +from PySide6.QtWidgets import (QApplication, QPushButton, QWidget) -app = QtWidgets.QApplication(sys.argv) -window = QtWidgets.QWidget() -window.resize(200, 120) +if __name__ == '__main__': + app = QApplication(sys.argv) -quit = QtWidgets.QPushButton("Quit", window) -quit.setFont(QtGui.QFont("Times", 18, QtGui.QFont.Bold)) -quit.setGeometry(10, 40, 180, 40) -QtCore.QObject.connect(quit, QtCore.SIGNAL("clicked()"), - app, QtCore.SLOT("quit()")) + window = QWidget() + window.resize(200, 120) -window.show() -sys.exit(app.exec_()) + quit = QPushButton("Quit", window) + quit.setFont(QFont("Times", 18, QFont.Bold)) + quit.setGeometry(10, 40, 180, 40) + quit.clicked.connect(app.quit) + + window.show() + sys.exit(app.exec_()) diff --git a/examples/widgets/tutorials/cannon/t4.py b/examples/widgets/tutorials/cannon/t4.py index 4c30dfcbb..686358e36 100644 --- a/examples/widgets/tutorials/cannon/t4.py +++ b/examples/widgets/tutorials/cannon/t4.py @@ -1,7 +1,7 @@ ############################################################################# ## -## Copyright (C) 2016 The Qt Company Ltd. +## Copyright (C) 2021 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## ## This file is part of the Qt for Python examples of the Qt Toolkit. @@ -43,24 +43,26 @@ import sys -from PySide6 import QtCore, QtGui, QtWidgets +from PySide6.QtGui import QFont +from PySide6.QtWidgets import (QApplication, QPushButton, QWidget) -class MyWidget(QtWidgets.QWidget): + +class MyWidget(QWidget): def __init__(self, parent=None): - QtWidgets.QWidget.__init__(self, parent) + super().__init__(parent) self.setFixedSize(200, 120) - self.quit = QtWidgets.QPushButton("Quit", self) + self.quit = QPushButton("Quit", self) self.quit.setGeometry(62, 40, 75, 30) - self.quit.setFont(QtGui.QFont("Times", 18, QtGui.QFont.Bold)) + self.quit.setFont(QFont("Times", 18, QFont.Bold)) - self.connect(self.quit, QtCore.SIGNAL("clicked()"), - qApp, QtCore.SLOT("quit()")) + self.quit.clicked.connect(qApp.quit) -app = QtWidgets.QApplication(sys.argv) -widget = MyWidget() -widget.show() -sys.exit(app.exec_()) +if __name__ == '__main__': + app = QApplication(sys.argv) + widget = MyWidget() + widget.show() + sys.exit(app.exec_()) diff --git a/examples/widgets/tutorials/cannon/t5.py b/examples/widgets/tutorials/cannon/t5.py index af36578cd..352d334f9 100644 --- a/examples/widgets/tutorials/cannon/t5.py +++ b/examples/widgets/tutorials/cannon/t5.py @@ -1,7 +1,7 @@ ############################################################################# ## -## Copyright (C) 2016 The Qt Company Ltd. +## Copyright (C) 2021 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## ## This file is part of the Qt for Python examples of the Qt Toolkit. @@ -43,35 +43,37 @@ import sys -from PySide6 import QtCore, QtGui, QtWidgets +from PySide6.QtCore import Qt +from PySide6.QtGui import QFont +from PySide6.QtWidgets import (QApplication, QLCDNumber, QPushButton, + QSlider, QVBoxLayout, QWidget) -class MyWidget(QtWidgets.QWidget): + +class MyWidget(QWidget): def __init__(self, parent=None): - QtWidgets.QWidget.__init__(self, parent) + super().__init__(parent) - quit = QtWidgets.QPushButton("Quit") - quit.setFont(QtGui.QFont("Times", 18, QtGui.QFont.Bold)) + quit = QPushButton("Quit") + quit.setFont(QFont("Times", 18, QFont.Bold)) - lcd = QtWidgets.QLCDNumber(2) + lcd = QLCDNumber(2) - slider = QtWidgets.QSlider(QtCore.Qt.Horizontal) + slider = QSlider(Qt.Horizontal) slider.setRange(0, 99) slider.setValue(0) - self.connect(quit, QtCore.SIGNAL("clicked()"), - qApp, QtCore.SLOT("quit()")) - self.connect(slider, QtCore.SIGNAL("valueChanged(int)"), - lcd, QtCore.SLOT("display(int)")) + quit.clicked.connect(qApp.quit) + slider.valueChanged.connect(lcd.display) - layout = QtWidgets.QVBoxLayout() + layout = QVBoxLayout(self) layout.addWidget(quit) layout.addWidget(lcd) layout.addWidget(slider) - self.setLayout(layout) -app = QtWidgets.QApplication(sys.argv) -widget = MyWidget() -widget.show() -sys.exit(app.exec_()) +if __name__ == '__main__': + app = QApplication(sys.argv) + widget = MyWidget() + widget.show() + sys.exit(app.exec_()) diff --git a/examples/widgets/tutorials/cannon/t6.py b/examples/widgets/tutorials/cannon/t6.py index 9094c0ce9..e9be01413 100644 --- a/examples/widgets/tutorials/cannon/t6.py +++ b/examples/widgets/tutorials/cannon/t6.py @@ -1,7 +1,7 @@ ############################################################################# ## -## Copyright (C) 2016 The Qt Company Ltd. +## Copyright (C) 2021 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## ## This file is part of the Qt for Python examples of the Qt Toolkit. @@ -43,48 +43,47 @@ import sys -from PySide6 import QtCore, QtGui, QtWidgets +from PySide6.QtCore import Qt +from PySide6.QtGui import QFont +from PySide6.QtWidgets import (QApplication, QGridLayout, QLCDNumber, + QPushButton, QSlider, QVBoxLayout, QWidget) -class LCDRange(QtWidgets.QWidget): + +class LCDRange(QWidget): def __init__(self, parent=None): - QtWidgets.QWidget.__init__(self, parent) + super().__init__(parent) - lcd = QtWidgets.QLCDNumber(2) - slider = QtWidgets.QSlider(QtCore.Qt.Horizontal) + lcd = QLCDNumber(2) + slider = QSlider(Qt.Horizontal) slider.setRange(0, 99) slider.setValue(0) - self.connect(slider, QtCore.SIGNAL("valueChanged(int)"), - lcd, QtCore.SLOT("display(int)")) + slider.valueChanged.connect(lcd.display) - layout = QtWidgets.QVBoxLayout() + layout = QVBoxLayout(self) layout.addWidget(lcd) layout.addWidget(slider) - self.setLayout(layout) -class MyWidget(QtWidgets.QWidget): +class MyWidget(QWidget): def __init__(self, parent=None): - QtWidgets.QWidget.__init__(self, parent) + super().__init__(parent) - quit = QtWidgets.QPushButton("Quit") - quit.setFont(QtGui.QFont("Times", 18, QtGui.QFont.Bold)) - self.connect(quit, QtCore.SIGNAL("clicked()"), - qApp, QtCore.SLOT("quit()")) + quit = QPushButton("Quit") + quit.setFont(QFont("Times", 18, QFont.Bold)) + quit.clicked.connect(qApp.quit) - grid = QtWidgets.QGridLayout() - layout = QtWidgets.QVBoxLayout() + layout = QVBoxLayout(self) layout.addWidget(quit) + grid = QGridLayout() layout.addLayout(grid) - self.setLayout(layout) for row in range(3): for column in range(3): grid.addWidget(LCDRange(), row, column) - - -app = QtWidgets.QApplication(sys.argv) -widget = MyWidget() -widget.show() -sys.exit(app.exec_()) +if __name__ == '__main__': + app = QApplication(sys.argv) + widget = MyWidget() + widget.show() + sys.exit(app.exec_()) diff --git a/examples/widgets/tutorials/cannon/t7.py b/examples/widgets/tutorials/cannon/t7.py index 6d6bdab8e..700185f41 100644 --- a/examples/widgets/tutorials/cannon/t7.py +++ b/examples/widgets/tutorials/cannon/t7.py @@ -1,7 +1,7 @@ ############################################################################# ## -## Copyright (C) 2016 The Qt Company Ltd. +## Copyright (C) 2021 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## ## This file is part of the Qt for Python examples of the Qt Toolkit. @@ -43,56 +43,55 @@ import sys -from PySide6 import QtCore, QtGui, QtWidgets +from PySide6.QtCore import Signal, Slot, Qt +from PySide6.QtGui import QFont +from PySide6.QtWidgets import (QApplication, QGridLayout, QLCDNumber, + QPushButton, QSlider, QVBoxLayout, QWidget) + + +class LCDRange(QWidget): + + value_changed = Signal(int) -class LCDRange(QtWidgets.QWidget): - value_changed = QtCore.Signal(int) def __init__(self, parent=None): - QtWidgets.QWidget.__init__(self, parent) + super().__init__(parent) - lcd = QtWidgets.QLCDNumber(2) + lcd = QLCDNumber(2) - self.slider = QtWidgets.QSlider(QtCore.Qt.Horizontal) + self.slider = QSlider(Qt.Horizontal) self.slider.setRange(0, 99) self.slider.setValue(0) - self.connect(self.slider, QtCore.SIGNAL("valueChanged(int)"), - lcd, QtCore.SLOT("display(int)")) - self.connect(self.slider, QtCore.SIGNAL("valueChanged(int)"), - self, QtCore.SIGNAL("valueChanged(int)")) + self.slider.valueChanged.connect(lcd.display) + self.slider.valueChanged.connect(self.value_changed) - layout = QtWidgets.QVBoxLayout() + layout = QVBoxLayout(self) layout.addWidget(lcd) layout.addWidget(self.slider) - self.setLayout(layout) def value(self): return self.slider.value() - @QtCore.Slot(int) + @Slot(int) def set_value(self, value): self.slider.setValue(value) -class MyWidget(QtWidgets.QWidget): +class MyWidget(QWidget): def __init__(self, parent=None): - QtWidgets.QWidget.__init__(self, parent) + super().__init__(parent) - quit = QtWidgets.QPushButton("Quit") - quit.setFont(QtGui.QFont("Times", 18, QtGui.QFont.Bold)) + quit = QPushButton("Quit") + quit.setFont(QFont("Times", 18, QFont.Bold)) + quit.clicked.connect(qApp.quit) - self.connect(quit, QtCore.SIGNAL("clicked()"), - qApp, QtCore.SLOT("quit()")) - - grid = QtWidgets.QGridLayout() previous_range = None - - layout = QtWidgets.QVBoxLayout() + layout = QVBoxLayout(self) layout.addWidget(quit) + grid = QGridLayout() layout.addLayout(grid) - self.setLayout(layout) for row in range(3): for column in range(3): @@ -100,14 +99,13 @@ class MyWidget(QtWidgets.QWidget): grid.addWidget(lcd_range, row, column) if previous_range: - self.connect(lcd_range, QtCore.SIGNAL("valueChanged(int)"), - previous_range.set_value) + lcd_range.value_changed.connect(previous_range.set_value) previous_range = lcd_range - -app = QtWidgets.QApplication(sys.argv) -widget = MyWidget() -widget.show() -sys.exit(app.exec_()) +if __name__ == '__main__': + app = QApplication(sys.argv) + widget = MyWidget() + widget.show() + sys.exit(app.exec_()) diff --git a/examples/widgets/tutorials/cannon/t8.py b/examples/widgets/tutorials/cannon/t8.py index 32aaaddbe..20763741f 100644 --- a/examples/widgets/tutorials/cannon/t8.py +++ b/examples/widgets/tutorials/cannon/t8.py @@ -1,7 +1,7 @@ ############################################################################# ## -## Copyright (C) 2016 The Qt Company Ltd. +## Copyright (C) 2021 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## ## This file is part of the Qt for Python examples of the Qt Toolkit. @@ -43,41 +43,44 @@ import sys -from PySide6 import QtCore, QtGui, QtWidgets +from PySide6.QtCore import Signal, Slot, Qt +from PySide6.QtGui import QColor, QFont, QPainter, QPalette +from PySide6.QtWidgets import (QApplication, QGridLayout, QLCDNumber, + QPushButton, QSlider, QVBoxLayout, QWidget) + + +class LCDRange(QWidget): + + value_changed = Signal(int) -class LCDRange(QtWidgets.QWidget): - value_changed = QtCore.Signal(int) def __init__(self, parent=None): - QtWidgets.QWidget.__init__(self, parent) + super().__init__(parent) - lcd = QtWidgets.QLCDNumber(2) - self.slider = QtWidgets.QSlider(QtCore.Qt.Horizontal) + lcd = QLCDNumber(2) + self.slider = QSlider(Qt.Horizontal) self.slider.setRange(0, 99) self.slider.setValue(0) - self.connect(self.slider, QtCore.SIGNAL("valueChanged(int)"), - lcd, QtCore.SLOT("display(int)")) - self.connect(self.slider, QtCore.SIGNAL("valueChanged(int)"), - self, QtCore.SIGNAL("valueChanged(int)")) + self.slider.valueChanged.connect(lcd.display) + self.slider.valueChanged.connect(self.value_changed) - layout = QtWidgets.QVBoxLayout() + layout = QVBoxLayout(self) layout.addWidget(lcd) layout.addWidget(self.slider) - self.setLayout(layout) self.setFocusProxy(self.slider) def value(self): return self.slider.value() - @QtCore.Slot(int) + @Slot(int) def set_value(self, value): self.slider.setValue(value) def set_range(self, minValue, maxValue): if minValue < 0 or maxValue > 99 or minValue > maxValue: - QtCore.qWarning("LCDRange.setRange({minValue}, {maxValue})\n" + qWarning("LCDRange.setRange({minValue}, {maxValue})\n" "\tRange must be 0..99\n" "\tand minValue must not be greater than maxValue") return @@ -85,19 +88,21 @@ class LCDRange(QtWidgets.QWidget): self.slider.setRange(minValue, maxValue) -class CannonField(QtWidgets.QWidget): - angle_changed = QtCore.Signal(int) +class CannonField(QWidget): + + angle_changed = Signal(int) + def __init__(self, parent=None): - QtWidgets.QWidget.__init__(self, parent) + super().__init__(parent) self._current_angle = 45 - self.setPalette(QtGui.QPalette(QtGui.QColor(250, 250, 200))) + self.setPalette(QPalette(QColor(250, 250, 200))) self.setAutoFillBackground(True) def angle(self): return self._current_angle - @QtCore.Slot(int) + @Slot(int) def set_angle(self, angle): if angle < 5: angle = 5 @@ -107,46 +112,43 @@ class CannonField(QtWidgets.QWidget): return self._current_angle = angle self.update() - self.emit(QtCore.SIGNAL("angleChanged(int)"), self._current_angle) + self.angle_changed.emit(self._current_angle) def paintEvent(self, event): - painter = QtGui.QPainter(self) + painter = QPainter(self) painter.drawText(200, 200, f"Angle = {self._current_angle}") -class MyWidget(QtWidgets.QWidget): +class MyWidget(QWidget): def __init__(self, parent=None): - QtWidgets.QWidget.__init__(self, parent) + super().__init__(parent) - quit = QtWidgets.QPushButton("Quit") - quit.setFont(QtGui.QFont("Times", 18, QtGui.QFont.Bold)) + quit = QPushButton("Quit") + quit.setFont(QFont("Times", 18, QFont.Bold)) - self.connect(quit, QtCore.SIGNAL("clicked()"), - qApp, QtCore.SLOT("quit()")) + quit.clicked.connect(qApp.quit) angle = LCDRange() angle.set_range(5, 70) cannon_field = CannonField() - self.connect(angle, QtCore.SIGNAL("valueChanged(int)"), - cannon_field.set_angle) - self.connect(cannon_field, QtCore.SIGNAL("angleChanged(int)"), - angle.set_value) + angle.value_changed.connect(cannon_field.set_angle) + cannon_field.angle_changed.connect(angle.set_value) - grid_layout = QtWidgets.QGridLayout() + grid_layout = QGridLayout(self) grid_layout.addWidget(quit, 0, 0) grid_layout.addWidget(angle, 1, 0) grid_layout.addWidget(cannon_field, 1, 1, 2, 1) grid_layout.setColumnStretch(1, 10) - self.setLayout(grid_layout) angle.set_value(60) angle.setFocus() -app = QtWidgets.QApplication(sys.argv) -widget = MyWidget() -widget.setGeometry(100, 100, 500, 355) -widget.show() -sys.exit(app.exec_()) +if __name__ == '__main__': + app = QApplication(sys.argv) + widget = MyWidget() + widget.setGeometry(100, 100, 500, 355) + widget.show() + sys.exit(app.exec_()) diff --git a/examples/widgets/tutorials/cannon/t9.py b/examples/widgets/tutorials/cannon/t9.py index d88e78c6f..ce36a8b89 100644 --- a/examples/widgets/tutorials/cannon/t9.py +++ b/examples/widgets/tutorials/cannon/t9.py @@ -1,7 +1,7 @@ ############################################################################# ## -## Copyright (C) 2016 The Qt Company Ltd. +## Copyright (C) 2021 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## ## This file is part of the Qt for Python examples of the Qt Toolkit. @@ -43,41 +43,44 @@ import sys -from PySide6 import QtCore, QtGui, QtWidgets +from PySide6.QtCore import QRect, Qt, Signal, Slot +from PySide6.QtGui import QColor, QFont, QPainter, QPalette +from PySide6.QtWidgets import (QApplication, QGridLayout, QLCDNumber, + QPushButton, QSlider, QVBoxLayout, QWidget) + + +class LCDRange(QWidget): + + value_changed = Signal(int) -class LCDRange(QtWidgets.QWidget): - value_changed = QtCore.Signal(int) def __init__(self, parent=None): - QtWidgets.QWidget.__init__(self, parent) + super().__init__(parent) - lcd = QtWidgets.QLCDNumber(2) - self.slider = QtWidgets.QSlider(QtCore.Qt.Horizontal) + lcd = QLCDNumber(2) + self.slider = QSlider(Qt.Horizontal) self.slider.setRange(0, 99) self.slider.setValue(0) - self.connect(self.slider, QtCore.SIGNAL("valueChanged(int)"), - lcd, QtCore.SLOT("display(int)")) - self.connect(self.slider, QtCore.SIGNAL("valueChanged(int)"), - self, QtCore.SIGNAL("valueChanged(int)")) + self.slider.valueChanged.connect(lcd.display) + self.slider.valueChanged.connect(self.value_changed) - layout = QtWidgets.QVBoxLayout() + layout = QVBoxLayout(self) layout.addWidget(lcd) layout.addWidget(self.slider) - self.setLayout(layout) self.setFocusProxy(self.slider) def value(self): return self.slider.value() - @QtCore.Slot(int) + @Slot(int) def set_value(self, value): self.slider.setValue(value) def set_range(self, minValue, maxValue): if minValue < 0 or maxValue > 99 or minValue > maxValue: - QtCore.qWarning(f"LCDRange::setRange({minValue}, {maxValue})\n" + qWarning(f"LCDRange::setRange({minValue}, {maxValue})\n" "\tRange must be 0..99\n" "\tand minValue must not be greater than maxValue") return @@ -85,19 +88,21 @@ class LCDRange(QtWidgets.QWidget): self.slider.setRange(minValue, maxValue) -class CannonField(QtWidgets.QWidget): - angle_changed = QtCore.Signal(int) +class CannonField(QWidget): + + angle_changed = Signal(int) + def __init__(self, parent=None): - QtWidgets.QWidget.__init__(self, parent) + super().__init__(parent) self._current_angle = 45 - self.setPalette(QtGui.QPalette(QtGui.QColor(250, 250, 200))) + self.setPalette(QPalette(QColor(250, 250, 200))) self.setAutoFillBackground(True) def angle(self): return self._current_angle - @QtCore.Slot(int) + @Slot(int) def set_angle(self, angle): if angle < 5: angle = 5 @@ -107,53 +112,50 @@ class CannonField(QtWidgets.QWidget): return self._current_angle = angle self.update() - self.emit(QtCore.SIGNAL("angleChanged(int)"), self._current_angle) + self.angle_changed.emit(self._current_angle) def paintEvent(self, event): - painter = QtGui.QPainter(self) + painter = QPainter(self) - painter.setPen(QtCore.Qt.NoPen) - painter.setBrush(QtCore.Qt.blue) + painter.setPen(Qt.NoPen) + painter.setBrush(Qt.blue) painter.translate(0, self.rect().height()) - painter.drawPie(QtCore.QRect(-35, -35, 70, 70), 0, 90 * 16) + painter.drawPie(QRect(-35, -35, 70, 70), 0, 90 * 16) painter.rotate(-self._current_angle) - painter.drawRect(QtCore.QRect(33, -4, 15, 8)) + painter.drawRect(QRect(33, -4, 15, 8)) -class MyWidget(QtWidgets.QWidget): +class MyWidget(QWidget): def __init__(self, parent=None): - QtWidgets.QWidget.__init__(self, parent) + super().__init__(parent) - quit = QtWidgets.QPushButton("Quit") - quit.setFont(QtGui.QFont("Times", 18, QtGui.QFont.Bold)) + quit = QPushButton("Quit") + quit.setFont(QFont("Times", 18, QFont.Bold)) - self.connect(quit, QtCore.SIGNAL("clicked()"), - qApp, QtCore.SLOT("quit()")) + quit.clicked.connect(qApp.quit) angle = LCDRange() angle.set_range(5, 70) cannon_field = CannonField() - self.connect(angle, QtCore.SIGNAL("valueChanged(int)"), - cannon_field.set_angle) - self.connect(cannon_field, QtCore.SIGNAL("angleChanged(int)"), - angle.set_value) + angle.value_changed.connect(cannon_field.set_angle) + cannon_field.angle_changed.connect(angle.set_value) - grid_layout = QtWidgets.QGridLayout() + grid_layout = QGridLayout(self) grid_layout.addWidget(quit, 0, 0) grid_layout.addWidget(angle, 1, 0) grid_layout.addWidget(cannon_field, 1, 1, 2, 1) grid_layout.setColumnStretch(1, 10) - self.setLayout(grid_layout) angle.set_value(60) angle.setFocus() -app = QtWidgets.QApplication(sys.argv) -widget = MyWidget() -widget.setGeometry(100, 100, 500, 355) -widget.show() -sys.exit(app.exec_()) +if __name__ == '__main__': + app = QApplication(sys.argv) + widget = MyWidget() + widget.setGeometry(100, 100, 500, 355) + widget.show() + sys.exit(app.exec_()) |