Add popups for dials

pull/1539/head
Jon Beniston 2022-12-20 11:21:54 +00:00
rodzic 92e348afa2
commit 7e7a9fdb84
2 zmienionych plików z 4 dodań i 0 usunięć

Wyświetl plik

@ -20,6 +20,7 @@
#include <QDebug>
#include "gui/cwkeyergui.h"
#include "gui/dialpopup.h"
#include "ui_cwkeyergui.h"
#include "dsp/cwkeyer.h"
#include "util/simpleserializer.h"
@ -38,6 +39,7 @@ CWKeyerGUI::CWKeyerGUI(QWidget* parent) :
m_commandKeyReceiver = new CommandKeyReceiver();
m_commandKeyReceiver->setRelease(true);
this->installEventFilter(m_commandKeyReceiver);
DialPopup::addPopupsToChildDials(this);
}
CWKeyerGUI::~CWKeyerGUI()

Wyświetl plik

@ -23,6 +23,7 @@
#include "glscopegui.h"
#include "glscope.h"
#include "ui_glscopegui.h"
#include "gui/dialpopup.h"
#include "util/simpleserializer.h"
#include "util/db.h"
@ -48,6 +49,7 @@ GLScopeGUI::GLScopeGUI(QWidget* parent) :
m_focusedTriggerColor.setRgb(0,255,0);
ui->traceText->setText("X");
ui->mem->setMaximum(GLScopeSettings::m_nbTraceMemories - 1);
DialPopup::addPopupsToChildDials(this);
}
GLScopeGUI::~GLScopeGUI()