mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-12-23 18:15:45 -05:00
Add popups for dials
This commit is contained in:
parent
92e348afa2
commit
7e7a9fdb84
@ -20,6 +20,7 @@
|
|||||||
#include <QDebug>
|
#include <QDebug>
|
||||||
|
|
||||||
#include "gui/cwkeyergui.h"
|
#include "gui/cwkeyergui.h"
|
||||||
|
#include "gui/dialpopup.h"
|
||||||
#include "ui_cwkeyergui.h"
|
#include "ui_cwkeyergui.h"
|
||||||
#include "dsp/cwkeyer.h"
|
#include "dsp/cwkeyer.h"
|
||||||
#include "util/simpleserializer.h"
|
#include "util/simpleserializer.h"
|
||||||
@ -38,6 +39,7 @@ CWKeyerGUI::CWKeyerGUI(QWidget* parent) :
|
|||||||
m_commandKeyReceiver = new CommandKeyReceiver();
|
m_commandKeyReceiver = new CommandKeyReceiver();
|
||||||
m_commandKeyReceiver->setRelease(true);
|
m_commandKeyReceiver->setRelease(true);
|
||||||
this->installEventFilter(m_commandKeyReceiver);
|
this->installEventFilter(m_commandKeyReceiver);
|
||||||
|
DialPopup::addPopupsToChildDials(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
CWKeyerGUI::~CWKeyerGUI()
|
CWKeyerGUI::~CWKeyerGUI()
|
||||||
|
@ -23,6 +23,7 @@
|
|||||||
#include "glscopegui.h"
|
#include "glscopegui.h"
|
||||||
#include "glscope.h"
|
#include "glscope.h"
|
||||||
#include "ui_glscopegui.h"
|
#include "ui_glscopegui.h"
|
||||||
|
#include "gui/dialpopup.h"
|
||||||
#include "util/simpleserializer.h"
|
#include "util/simpleserializer.h"
|
||||||
#include "util/db.h"
|
#include "util/db.h"
|
||||||
|
|
||||||
@ -48,6 +49,7 @@ GLScopeGUI::GLScopeGUI(QWidget* parent) :
|
|||||||
m_focusedTriggerColor.setRgb(0,255,0);
|
m_focusedTriggerColor.setRgb(0,255,0);
|
||||||
ui->traceText->setText("X");
|
ui->traceText->setText("X");
|
||||||
ui->mem->setMaximum(GLScopeSettings::m_nbTraceMemories - 1);
|
ui->mem->setMaximum(GLScopeSettings::m_nbTraceMemories - 1);
|
||||||
|
DialPopup::addPopupsToChildDials(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
GLScopeGUI::~GLScopeGUI()
|
GLScopeGUI::~GLScopeGUI()
|
||||||
|
Loading…
Reference in New Issue
Block a user