mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-12-23 10:05:46 -05:00
SDRdaemonFEC: renamed UI class to SDRdaemonSourceGui
This commit is contained in:
parent
06c8df5d75
commit
067c5b30d5
@ -29,8 +29,8 @@ set(sdrdaemonfec_HEADERS
|
||||
sdrdaemonfecudphandler.h
|
||||
)
|
||||
|
||||
set(sdrdaemonfec_FORMS
|
||||
sdrdaemonfecgui.ui
|
||||
set(sdrdaemonsource_FORMS
|
||||
sdrdaemonsourcegui.ui
|
||||
)
|
||||
|
||||
#include(${QT_USE_FILE})
|
||||
@ -39,12 +39,12 @@ add_definitions(-DQT_PLUGIN)
|
||||
add_definitions(-DQT_SHARED)
|
||||
|
||||
#qt4_wrap_cpp(sdrdaemonfec_HEADERS_MOC ${sdrdaemonfec_HEADERS})
|
||||
qt5_wrap_ui(sdrdaemonfec_FORMS_HEADERS ${sdrdaemonfec_FORMS})
|
||||
qt5_wrap_ui(sdrdaemonsource_FORMS_HEADERS ${sdrdaemonsource_FORMS})
|
||||
|
||||
add_library(inputsdrdaemonfec SHARED
|
||||
${sdrdaemonfec_SOURCES}
|
||||
${sdrdaemonfec_HEADERS_MOC}
|
||||
${sdrdaemonfec_FORMS_HEADERS}
|
||||
${sdrdaemonsource_FORMS_HEADERS}
|
||||
)
|
||||
|
||||
if (BUILD_DEBIAN)
|
||||
|
@ -31,7 +31,7 @@
|
||||
#include <nanomsg/nn.h>
|
||||
#include <nanomsg/pair.h>
|
||||
|
||||
#include "ui_sdrdaemonfecgui.h"
|
||||
#include "ui_sdrdaemonsourcegui.h"
|
||||
#include "gui/colormapper.h"
|
||||
#include "gui/glspectrum.h"
|
||||
#include "dsp/dspengine.h"
|
||||
@ -44,7 +44,7 @@
|
||||
|
||||
SDRdaemonFECGui::SDRdaemonFECGui(DeviceSourceAPI *deviceAPI, QWidget* parent) :
|
||||
QWidget(parent),
|
||||
ui(new Ui::SDRdaemonFECGui),
|
||||
ui(new Ui::SDRdaemonSourceGui),
|
||||
m_deviceAPI(deviceAPI),
|
||||
m_sampleSource(NULL),
|
||||
m_acquisition(false),
|
||||
|
@ -27,7 +27,7 @@ class DeviceSourceAPI;
|
||||
class FileRecord;
|
||||
|
||||
namespace Ui {
|
||||
class SDRdaemonFECGui;
|
||||
class SDRdaemonSourceGui;
|
||||
}
|
||||
|
||||
class SDRdaemonFECGui : public QWidget, public PluginGUI {
|
||||
@ -49,7 +49,7 @@ public:
|
||||
virtual bool handleMessage(const Message& message);
|
||||
|
||||
private:
|
||||
Ui::SDRdaemonFECGui* ui;
|
||||
Ui::SDRdaemonSourceGui* ui;
|
||||
|
||||
DeviceSourceAPI* m_deviceAPI;
|
||||
SDRdaemonFECSettings m_settings; //!< current settings
|
||||
|
@ -1,7 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<ui version="4.0">
|
||||
<class>SDRdaemonFECGui</class>
|
||||
<widget class="QWidget" name="SDRdaemonFECGui">
|
||||
<class>SDRdaemonSourceGui</class>
|
||||
<widget class="QWidget" name="SDRdaemonSourceGui">
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>0</x>
|
||||
@ -23,7 +23,7 @@
|
||||
</font>
|
||||
</property>
|
||||
<property name="windowTitle">
|
||||
<string>SDRdaemon</string>
|
||||
<string>SDRdaemon Source</string>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout">
|
||||
<property name="spacing">
|
||||
@ -1032,7 +1032,7 @@
|
||||
</size>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Send commands to remote SDRdaemon instance</string>
|
||||
<string>Send commands to remote SDRdaemonRx instance</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Send</string>
|
Loading…
Reference in New Issue
Block a user