Create a "UI tour" (like in Qt Creator)
-
wrote on 22 Jan 2022, 12:21 last edited by
-
Fortunately Qt Creator is open-source, so you can take inspiration from there , if you want to :)
https://code.qt.io/cgit/qt-creator/qt-creator.git/tree/src/plugins/welcome
Before copying code though you should check the license details for this (Qt Creator is available under commercial licenses, and under GPLv3).
-
Fortunately Qt Creator is open-source, so you can take inspiration from there , if you want to :)
https://code.qt.io/cgit/qt-creator/qt-creator.git/tree/src/plugins/welcome
Before copying code though you should check the license details for this (Qt Creator is available under commercial licenses, and under GPLv3).
wrote on 24 Jan 2022, 18:53 last edited by@kkoehne Thanks for the link.
From what I could see highlighting happens in the paint event function. I want to ask if I can do the highlighting like in the second screenshot(the video editor app) in the paint event function too?
-
From what I could see highlighting happens in the paint event function. I want to ask if I can do the highlighting like in the second screenshot(the video editor app) in the paint event function too?
IntroductionWidget in the Qt Creator sources is a widget that covers all of the main window. So yes, inside this area you can draw pretty much everything in the paint() method (though I'd probably try to use sub-widgets / images).
-
From what I could see highlighting happens in the paint event function. I want to ask if I can do the highlighting like in the second screenshot(the video editor app) in the paint event function too?
IntroductionWidget in the Qt Creator sources is a widget that covers all of the main window. So yes, inside this area you can draw pretty much everything in the paint() method (though I'd probably try to use sub-widgets / images).
1/5