1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-11-21 15:51:47 -05:00

Pager: Add alpha and numeric columns. Implements #2319

This commit is contained in:
Jon Beniston 2024-11-10 15:48:36 +00:00
parent 86f4a5bc69
commit d7547e2d25

View File

@ -28,7 +28,7 @@
// Map main table column numbers to combo box indices
std::vector<int> PagerDemodNotificationDialog::m_columnMap = {
PagerDemodSettings::MESSAGE_COL_ADDRESS, PagerDemodSettings::MESSAGE_COL_MESSAGE
PagerDemodSettings::MESSAGE_COL_ADDRESS, PagerDemodSettings::MESSAGE_COL_MESSAGE, PagerDemodSettings::MESSAGE_COL_ALPHA, PagerDemodSettings::MESSAGE_COL_NUMERIC
};
PagerDemodNotificationDialog::PagerDemodNotificationDialog(PagerDemodSettings *settings,
@ -132,6 +132,8 @@ void PagerDemodNotificationDialog::addRow(PagerDemodSettings::NotificationSettin
match->addItem("Address");
match->addItem("Message");
match->addItem("Alpha");
match->addItem("Numeric");
QTableWidgetItem *regExpItem = new QTableWidgetItem();
QTableWidgetItem *speechItem = new QTableWidgetItem();