#include "widget.h" #include #include #include #include #include int main(int argc, char *argv[]) { QApplication a(argc, argv); Widget w; w.show(); // QVector> vLab; // vLab.append(QMap({"labRed", "#DB000F"})); // vLab.append(QMap({"labYellow", "#FFCF53"})); // vLab.append(QMap({"labGreen", "#12F63B"})); // vLab.append(QMap({"labBlue", "#0E70FF"})); // vLab.append(QMap({"labPink", "#FB4288"})); // vLab.append(QMap({"labBlack", "#323232"})); // vLab.append(QMap({"labWhite", "#FBFBFB"})); // vLab.append(QMap({"labPick", "#FFDB34"})); // // qDebug() << vLab[2].first() << " "; // QPushButton* btn = new QPushButton("btn123"); // QIcon icon("D:/projects/PicShot/src/resourcesicons/normal/gif.svg"); // btn->setIcon(icon); // btn->show(); return a.exec(); }