aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside6/doc/tutorials/basictutorial/qrcfiles.rst
diff options
context:
space:
mode:
Diffstat (limited to 'sources/pyside6/doc/tutorials/basictutorial/qrcfiles.rst')
-rw-r--r--sources/pyside6/doc/tutorials/basictutorial/qrcfiles.rst4
1 files changed, 4 insertions, 0 deletions
diff --git a/sources/pyside6/doc/tutorials/basictutorial/qrcfiles.rst b/sources/pyside6/doc/tutorials/basictutorial/qrcfiles.rst
index 5ac560a8f..3e998abfc 100644
--- a/sources/pyside6/doc/tutorials/basictutorial/qrcfiles.rst
+++ b/sources/pyside6/doc/tutorials/basictutorial/qrcfiles.rst
@@ -4,6 +4,10 @@ Using `.qrc` Files (`pyside6-rcc`)
The `Qt Resource System`_ is a mechanism for storing binary files
in an application.
+The files will be embedded into the application and be acessible for the
+``QFile`` class and the constructors of the ``QIcon`` and ``QPixmap``
+classes taking a file name by using a special file name starting with ``:/``.
+
The most common uses are for custom images, icons, fonts, among others.
In this tutorial you will learn how to load custom images as button icons.