Looking for a class
-
Hello everyone,
I'm asking you guys to help me with my issue. I'm searching through Qt source code and desire to find the class that describes the window of choosing resources for a QPixmap for a QLabel (like the one on the picture below) . Would you be so kind and give me some information about this class, please? Like its name or where exactly I could find it, anything would be very helpful for me, thank you.
-
Hello everyone,
I'm asking you guys to help me with my issue. I'm searching through Qt source code and desire to find the class that describes the window of choosing resources for a QPixmap for a QLabel (like the one on the picture below) . Would you be so kind and give me some information about this class, please? Like its name or where exactly I could find it, anything would be very helpful for me, thank you.
-
If you mean the class of the "Select Resource" window that's a class named
QtResourceViewDialog
and it's located in
<Qt install dir>\qttools\src\designer\src\lib\shared\qtresourceview.cpp
file.Note that this class is part of the private interface and is subject to change without notice, so you should not use it directly in your code.
-
If you mean the class of the "Select Resource" window that's a class named
QtResourceViewDialog
and it's located in
<Qt install dir>\qttools\src\designer\src\lib\shared\qtresourceview.cpp
file.Note that this class is part of the private interface and is subject to change without notice, so you should not use it directly in your code.
@Chris-Kawa Hello! Can you tell some correct way to use this dialog or getting resource information?