| 227 | } |
| 228 | |
| 229 | void |
| 230 | SigDiggerHelpers::populatePaletteCombo(QComboBox *cb) |
| 231 | { |
| 232 | int ndx = 0; |
| 233 | |
| 234 | cb->clear(); |
| 235 | |
| 236 | // Populate combo |
| 237 | for (auto p : this->palettes) { |
| 238 | cb->insertItem( |
| 239 | ndx, |
| 240 | QIcon(QPixmap::fromImage(p.getThumbnail())), |
| 241 | QString::fromStdString(p.getName()), |
| 242 | QVariant::fromValue(ndx)); |
| 243 | ++ndx; |
| 244 | } |
| 245 | } |
| 246 | |
| 247 | void |
| 248 | SigDiggerHelpers::populateAntennaCombo( |