crowning
Well-known member
Skinnable themes for the UI looks extremely doable -- the following code (cannibalized from http://stackoverflow.com/questions/...olor-for-the-whole-window-of-a-qt-application) seems like the key :-D
QFile file(":/qss/default.qss");
file.open(QFile::ReadOnly);QString styleSheet =QLatin1String(file.readAll());
ui->setupUi(this); // from Darkcoin code
ui->setStyleSheet(styleSheet);
I'm an android xml layout novice, but pretty good w/ CSS - I'm gonna give a try :-D
Coincidentally I've started some experiments with the Darkcoin-wallet and CSS yesterday...right now I try to find a generic way for it (instead of loading the CSS for each individual form, which already works).
If you have some beautiful CSS (I would especially like a blue-ish Darkcoin default theme) let me know.
If you need information about the names of the UI-elements I can also help there.