zz_colorSelectDialog.cpp

changeset 161
c9fba92c4e35
parent 160
edcb03f3ef75
child 179
f98391b179ab
equal deleted inserted replaced
160:edcb03f3ef75 161:c9fba92c4e35
85 qLayout->addWidget (lb_colorInfo); 85 qLayout->addWidget (lb_colorInfo);
86 qLayout->addWidget (bbx_buttons); 86 qLayout->addWidget (bbx_buttons);
87 setLayout (qLayout); 87 setLayout (qLayout);
88 88
89 setWindowIcon (getIcon ("palette")); 89 setWindowIcon (getIcon ("palette"));
90 setWindowTitle (APPNAME_DISPLAY); 90 setWindowTitle (APPNAME);
91 } 91 }
92 92
93 // ============================================================================= 93 // =============================================================================
94 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 94 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
95 // ============================================================================= 95 // =============================================================================
117 } 117 }
118 118
119 bool dark = (luma (col) < 80); 119 bool dark = (luma (col) < 80);
120 120
121 gs_scene->addRect (x, y, w, w, qPen, col); 121 gs_scene->addRect (x, y, w, w, qPen, col);
122 QGraphicsTextItem* qText = gs_scene->addText (format ("%lu", i).chars()); 122 QGraphicsTextItem* qText = gs_scene->addText (fmt ("%lu", i).chars());
123 qText->setDefaultTextColor ((dark) ? Qt::white : Qt::black); 123 qText->setDefaultTextColor ((dark) ? Qt::white : Qt::black);
124 qText->setPos (x, y); 124 qText->setPos (x, y);
125 125
126 if (i == selColor) { 126 if (i == selColor) {
127 auto curspic = gs_scene->addPixmap (getIcon ("colorcursor")); 127 auto curspic = gs_scene->addPixmap (getIcon ("colorcursor"));
139 if (selColor == -1 || !col) { 139 if (selColor == -1 || !col) {
140 lb_colorInfo->setText ("---"); 140 lb_colorInfo->setText ("---");
141 return; 141 return;
142 } 142 }
143 143
144 lb_colorInfo->setText (format ("%d - %s", 144 lb_colorInfo->setText (fmt ("%d - %s",
145 selColor, col->zName.chars())); 145 selColor, col->zName.chars()));
146 } 146 }
147 147
148 // ============================================================================= 148 // =============================================================================
149 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 149 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *

mercurial