I have a simple problem but I can't solve it yet.
I hame something like this:
QColor someColor = getColor();
After this I need to get color code that in range (0-65535), I pay your attention that I don't need color codes in range (0-255).
So what I must to do? Maybe something like:
someColor.get...()
QColor is a combination of 3 bytes (RGB), so you should be looking for a color range from 0 to 2^24-1 [0, 16777215]
You could do something like:
Regards.