diff --git a/src/01 PyQt QLabel/README.md b/src/01 PyQt QLabel/README.md index a0057f4..129f16c 100644 --- a/src/01 PyQt QLabel/README.md +++ b/src/01 PyQt QLabel/README.md @@ -12,7 +12,7 @@ label.show() app.exec_() ``` -For instructions how you can run this code, please see the [top-level README](https://github.com/1mh/pyqt-examples#running-the-examples). +For instructions how you can run this code, please see the [top-level README](https://github.com/pyqt/examples#running-the-examples). The code works as follows: First, we import the necessary PyQt classes via the statement: diff --git a/src/02 PyQt Widgets/README.md b/src/02 PyQt Widgets/README.md index 06f7db2..9773c53 100644 --- a/src/02 PyQt Widgets/README.md +++ b/src/02 PyQt Widgets/README.md @@ -18,4 +18,4 @@ Some of the widgets you can see in this screenshot are: * [QSlider](https://doc.qt.io/qt-5/qslider.html) * [QProgressBar](https://doc.qt.io/qt-5/qprogressbar.html) -The source code for this application is in [`main.py`](main.py). For instructions how to run it, please see [here](https://github.com/1mh/pyqt-examples#running-the-examples). Don't worry if you don't yet fully understand the source code. The main purpose of this example is to give you a feel for what a widget is, and which ones are available. The next examples give you a more gradual route to more advanced PyQt topics. +The source code for this application is in [`main.py`](main.py). For instructions how to run it, please see [here](https://github.com/pyqt/examples#running-the-examples). Don't worry if you don't yet fully understand the source code. The main purpose of this example is to give you a feel for what a widget is, and which ones are available. The next examples give you a more gradual route to more advanced PyQt topics. diff --git a/src/03 QVBoxLayout PyQt5/README.md b/src/03 QVBoxLayout PyQt5/README.md index 52f6204..d594fd6 100644 --- a/src/03 QVBoxLayout PyQt5/README.md +++ b/src/03 QVBoxLayout PyQt5/README.md @@ -36,6 +36,6 @@ We conclude by showing the window and (as is required) handing control over to Q window.show() app.exec_() -For instructions how you can run this example yourself, please see [here](https://github.com/1mh/pyqt-examples#running-the-examples). +For instructions how you can run this example yourself, please see [here](https://github.com/pyqt/examples#running-the-examples). The related [`QHBoxLayout`](https://doc.qt.io/qt-5/qhboxlayout.html) positions items horizontally. For an even more powerful approach, see [`QGridLayout`](https://doc.qt.io/qt-5/qgridlayout.html). diff --git a/src/04 PyQt Signals and Slots/README.md b/src/04 PyQt Signals and Slots/README.md index 93a14c7..06276e3 100644 --- a/src/04 PyQt Signals and Slots/README.md +++ b/src/04 PyQt Signals and Slots/README.md @@ -29,4 +29,4 @@ Finally, we show the button on the screen and hand control over to Qt: button.show() app.exec_() -For instructions how you can run this example yourself, please see [here](https://github.com/1mh/pyqt-examples#running-the-examples). +For instructions how you can run this example yourself, please see [here](https://github.com/pyqt/examples#running-the-examples). diff --git a/src/05 Qt Designer Python/README.md b/src/05 Qt Designer Python/README.md index cb04362..80378fe 100644 --- a/src/05 Qt Designer Python/README.md +++ b/src/05 Qt Designer Python/README.md @@ -44,4 +44,4 @@ We've now connected the necessary components for displaying the user interface g window.show() app.exec_() -For instructions how to run this example yourself, please see [here](https://github.com/1mh/pyqt-examples#running-the-examples). +For instructions how to run this example yourself, please see [here](https://github.com/pyqt/examples#running-the-examples). diff --git a/src/06 QML Python example/README.md b/src/06 QML Python example/README.md index f001515..d0c7898 100644 --- a/src/06 QML Python example/README.md +++ b/src/06 QML Python example/README.md @@ -53,6 +53,6 @@ engine.load("main.qml") app.exec_() ``` -If you'd like further instructions how you can run this code for yourself, please see [here](https://github.com/1mh/pyqt-examples#running-the-examples). +If you'd like further instructions how you can run this code for yourself, please see [here](https://github.com/pyqt/examples#running-the-examples). Some code in this directory has special license requirements. For more information, please see [`LICENSE.md`](LICENSE.md). diff --git a/src/07 Qt Text Editor/README.md b/src/07 Qt Text Editor/README.md index a82a4d3..6234ef5 100644 --- a/src/07 Qt Text Editor/README.md +++ b/src/07 Qt Text Editor/README.md @@ -15,4 +15,4 @@ It has a surprising number of features: * An *About* dialog. * A warning *Do you want to save before quitting?* if there are unmodified changes. -The full source code is in [`main.py`](main.py). For instructions on how to run it, please see [here](https://github.com/1mh/pyqt-examples#running-the-examples). +The full source code is in [`main.py`](main.py). For instructions on how to run it, please see [here](https://github.com/pyqt/examples#running-the-examples). diff --git a/src/08 PyQt5 exe/README.md b/src/08 PyQt5 exe/README.md index 12e0fa7..07c2845 100644 --- a/src/08 PyQt5 exe/README.md +++ b/src/08 PyQt5 exe/README.md @@ -38,7 +38,7 @@ Because we didn't create the `QApplication` ourselves, we finally use the follow appctxt.app.exec_() -To run this example yourself, you need fbs installed as per the instructions [here](https://github.com/1mh/pyqt-examples#running-the-examples). Then, you can do use the following command to run the text editor: +To run this example yourself, you need fbs installed as per the instructions [here](https://github.com/pyqt/examples#running-the-examples). Then, you can do use the following command to run the text editor: fbs run diff --git a/src/09 Qt dark theme/README.md b/src/09 Qt dark theme/README.md index ea4e647..232d5f6 100644 --- a/src/09 Qt dark theme/README.md +++ b/src/09 Qt dark theme/README.md @@ -18,4 +18,4 @@ As you can see in [`main.py`](main.py), this example uses `QApplication.setStyle The rest of the code is the same as for the [original version of the text editor](../07%20Qt%20Text%20Editor). -To run this example yourself, please follow the [instructions in the README of this repository](https://github.com/1mh/pyqt-examples#running-the-examples). +To run this example yourself, please follow the [instructions in the README of this repository](https://github.com/pyqt/examples#running-the-examples). diff --git a/src/10 QPainter Python example/README.md b/src/10 QPainter Python example/README.md index 80db4b0..1a14302 100644 --- a/src/10 QPainter Python example/README.md +++ b/src/10 QPainter Python example/README.md @@ -6,4 +6,4 @@ This example application demonstrates how you can use [`QPainter`](https://doc.q The crucial steps of this example are to [override `mousePressEvent(...)`](main.py#L13-L17) to handle the user's clicks, and [`paintEvent(...)`](main.py#L18-L22) to draw the bullets. See the top of [`main.py`](main.py) for how these features work in detail. -To run this example yourself, please follow [these instructions](https://github.com/1mh/pyqt-examples#running-the-examples). +To run this example yourself, please follow [these instructions](https://github.com/pyqt/examples#running-the-examples). diff --git a/src/11 PyQt Thread example/README.md b/src/11 PyQt Thread example/README.md index bbf4f9c..cbf1255 100644 --- a/src/11 PyQt Thread example/README.md +++ b/src/11 PyQt Thread example/README.md @@ -4,7 +4,7 @@ This example shows how you can use threads to make your PyQt application more re