diff options
author | Dheerendra Purohit <[email protected]> | 2025-06-05 15:43:50 +0530 |
---|---|---|
committer | Dheerendra Purohit <[email protected]> | 2025-06-08 22:25:47 +0530 |
commit | 045eb2179ca57d6838218b0c77ed93743f985764 (patch) | |
tree | 3527135f8743f7b8f7327132e0125e2627b2eba9 /src/gui/doc | |
parent | d2cd406b349a7c58c3af953c9c7dbf47137c0c73 (diff) |
Doc: Improve opening description of Qt's Paint System
Clarified the Paint System introduction to better convey
its purpose and highlight its flexibility across different surfaces.
Fixes: QTBUG-136487
Change-Id: Ib636087b9bae4d08541566145c4a0943dccb5432
Reviewed-by: Axel Spoerl <[email protected]>
Diffstat (limited to 'src/gui/doc')
-rw-r--r-- | src/gui/doc/src/paintsystem.qdoc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/gui/doc/src/paintsystem.qdoc b/src/gui/doc/src/paintsystem.qdoc index a376aa5fc75..fb5cc10b085 100644 --- a/src/gui/doc/src/paintsystem.qdoc +++ b/src/gui/doc/src/paintsystem.qdoc @@ -28,8 +28,9 @@ \ingroup qt-basic-concepts - Qt's paint system enables painting on screen and print devices - using the same API, and is primarily based on the QPainter, + Qt's paint system provides a unified and flexible framework for + rendering graphics on various surfaces, such as on-screen widgets, + images, and printed pages. It is primarily built around the QPainter, QPaintDevice, and QPaintEngine classes. QPainter is used to perform drawing operations, QPaintDevice is an |