mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-10-31 15:47:10 -04:00
improve physical structure
This commit is contained in:
parent
50ce71b47a
commit
ee5d5c8ae9
@ -226,7 +226,7 @@ set (wsjt_qt_CXXSRCS
|
|||||||
qt_helpers.cpp
|
qt_helpers.cpp
|
||||||
widgets/MessageBox.cpp
|
widgets/MessageBox.cpp
|
||||||
MetaDataRegistry.cpp
|
MetaDataRegistry.cpp
|
||||||
NetworkServerLookup.cpp
|
Network/NetworkServerLookup.cpp
|
||||||
revision_utils.cpp
|
revision_utils.cpp
|
||||||
WFPalette.cpp
|
WFPalette.cpp
|
||||||
Radio.cpp
|
Radio.cpp
|
||||||
@ -244,16 +244,16 @@ set (wsjt_qt_CXXSRCS
|
|||||||
GetUserId.cpp
|
GetUserId.cpp
|
||||||
TraceFile.cpp
|
TraceFile.cpp
|
||||||
AudioDevice.cpp
|
AudioDevice.cpp
|
||||||
Transceiver.cpp
|
Transceiver/Transceiver.cpp
|
||||||
TransceiverBase.cpp
|
Transceiver/TransceiverBase.cpp
|
||||||
EmulateSplitTransceiver.cpp
|
Transceiver/EmulateSplitTransceiver.cpp
|
||||||
TransceiverFactory.cpp
|
Transceiver/TransceiverFactory.cpp
|
||||||
PollingTransceiver.cpp
|
Transceiver/PollingTransceiver.cpp
|
||||||
HamlibTransceiver.cpp
|
Transceiver/HamlibTransceiver.cpp
|
||||||
HRDTransceiver.cpp
|
Transceiver/HRDTransceiver.cpp
|
||||||
DXLabSuiteCommanderTransceiver.cpp
|
Transceiver/DXLabSuiteCommanderTransceiver.cpp
|
||||||
NetworkMessage.cpp
|
Network/NetworkMessage.cpp
|
||||||
MessageClient.cpp
|
Network/MessageClient.cpp
|
||||||
widgets/LettersSpinBox.cpp
|
widgets/LettersSpinBox.cpp
|
||||||
widgets/HintedSpinBox.cpp
|
widgets/HintedSpinBox.cpp
|
||||||
widgets/RestrictedSpinBox.cpp
|
widgets/RestrictedSpinBox.cpp
|
||||||
@ -268,7 +268,7 @@ set (wsjt_qt_CXXSRCS
|
|||||||
validators/MaidenheadLocatorValidator.cpp
|
validators/MaidenheadLocatorValidator.cpp
|
||||||
validators/CallsignValidator.cpp
|
validators/CallsignValidator.cpp
|
||||||
widgets/SplashScreen.cpp
|
widgets/SplashScreen.cpp
|
||||||
EqualizationToolsDialog.cpp
|
Transceiver/EqualizationToolsDialog.cpp
|
||||||
widgets/DoubleClickablePushButton.cpp
|
widgets/DoubleClickablePushButton.cpp
|
||||||
widgets/DoubleClickableRadioButton.cpp
|
widgets/DoubleClickableRadioButton.cpp
|
||||||
LotWUsers.cpp
|
LotWUsers.cpp
|
||||||
@ -303,7 +303,7 @@ set (jt9_CXXSRCS
|
|||||||
|
|
||||||
set (wsjtx_CXXSRCS
|
set (wsjtx_CXXSRCS
|
||||||
logbook/logbook.cpp
|
logbook/logbook.cpp
|
||||||
psk_reporter.cpp
|
Network/psk_reporter.cpp
|
||||||
Modulator.cpp
|
Modulator.cpp
|
||||||
Detector/Detector.cpp
|
Detector/Detector.cpp
|
||||||
widgets/logqso.cpp
|
widgets/logqso.cpp
|
||||||
@ -353,7 +353,7 @@ if (WIN32)
|
|||||||
|
|
||||||
set (wsjt_qt_CXXSRCS
|
set (wsjt_qt_CXXSRCS
|
||||||
${wsjt_qt_CXXSRCS}
|
${wsjt_qt_CXXSRCS}
|
||||||
OmniRigTransceiver.cpp
|
Transceiver/OmniRigTransceiver.cpp
|
||||||
)
|
)
|
||||||
endif (WIN32)
|
endif (WIN32)
|
||||||
|
|
||||||
@ -683,13 +683,13 @@ set (wsjtx_UISRCS
|
|||||||
set (UDP_library_CXXSRCS
|
set (UDP_library_CXXSRCS
|
||||||
Radio.cpp
|
Radio.cpp
|
||||||
RadioMetaType.cpp
|
RadioMetaType.cpp
|
||||||
NetworkMessage.cpp
|
Network/NetworkMessage.cpp
|
||||||
MessageServer.cpp
|
Network/MessageServer.cpp
|
||||||
)
|
)
|
||||||
|
|
||||||
set (UDP_library_HEADERS
|
set (UDP_library_HEADERS
|
||||||
Radio.hpp
|
Radio.hpp
|
||||||
MessageServer.hpp
|
Network/MessageServer.hpp
|
||||||
${PROJECT_BINARY_DIR}/udp_export.h
|
${PROJECT_BINARY_DIR}/udp_export.h
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -172,14 +172,14 @@
|
|||||||
#include "item_delegates/ForeignKeyDelegate.hpp"
|
#include "item_delegates/ForeignKeyDelegate.hpp"
|
||||||
#include "item_delegates/FrequencyDelegate.hpp"
|
#include "item_delegates/FrequencyDelegate.hpp"
|
||||||
#include "item_delegates/FrequencyDeltaDelegate.hpp"
|
#include "item_delegates/FrequencyDeltaDelegate.hpp"
|
||||||
#include "TransceiverFactory.hpp"
|
#include "Transceiver/TransceiverFactory.hpp"
|
||||||
#include "Transceiver.hpp"
|
#include "Transceiver/Transceiver.hpp"
|
||||||
#include "models/Bands.hpp"
|
#include "models/Bands.hpp"
|
||||||
#include "models/IARURegions.hpp"
|
#include "models/IARURegions.hpp"
|
||||||
#include "models/Modes.hpp"
|
#include "models/Modes.hpp"
|
||||||
#include "models/FrequencyList.hpp"
|
#include "models/FrequencyList.hpp"
|
||||||
#include "models/StationList.hpp"
|
#include "models/StationList.hpp"
|
||||||
#include "NetworkServerLookup.hpp"
|
#include "Network/NetworkServerLookup.hpp"
|
||||||
#include "widgets/MessageBox.hpp"
|
#include "widgets/MessageBox.hpp"
|
||||||
#include "validators/MaidenheadLocatorValidator.hpp"
|
#include "validators/MaidenheadLocatorValidator.hpp"
|
||||||
#include "validators/CallsignValidator.hpp"
|
#include "validators/CallsignValidator.hpp"
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
#include "Radio.hpp"
|
#include "Radio.hpp"
|
||||||
#include "models/IARURegions.hpp"
|
#include "models/IARURegions.hpp"
|
||||||
#include "AudioDevice.hpp"
|
#include "AudioDevice.hpp"
|
||||||
#include "Transceiver.hpp"
|
#include "Transceiver/Transceiver.hpp"
|
||||||
|
|
||||||
#include "pimpl_h.hpp"
|
#include "pimpl_h.hpp"
|
||||||
|
|
||||||
|
@ -9,8 +9,8 @@
|
|||||||
#include "AudioDevice.hpp"
|
#include "AudioDevice.hpp"
|
||||||
#include "Configuration.hpp"
|
#include "Configuration.hpp"
|
||||||
#include "models/StationList.hpp"
|
#include "models/StationList.hpp"
|
||||||
#include "Transceiver.hpp"
|
#include "Transceiver/Transceiver.hpp"
|
||||||
#include "TransceiverFactory.hpp"
|
#include "Transceiver/TransceiverFactory.hpp"
|
||||||
#include "WFPalette.hpp"
|
#include "WFPalette.hpp"
|
||||||
#include "models/IARURegions.hpp"
|
#include "models/IARURegions.hpp"
|
||||||
#include "models/DecodeHighlightingModel.hpp"
|
#include "models/DecodeHighlightingModel.hpp"
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
#include <QHostInfo>
|
#include <QHostInfo>
|
||||||
#include <QTimer>
|
#include <QTimer>
|
||||||
|
|
||||||
#include "MessageClient.hpp"
|
#include "Network/MessageClient.hpp"
|
||||||
|
|
||||||
#include "moc_psk_reporter.cpp"
|
#include "moc_psk_reporter.cpp"
|
||||||
|
|
@ -6,7 +6,7 @@
|
|||||||
#include <QThread>
|
#include <QThread>
|
||||||
#include <QDateTime>
|
#include <QDateTime>
|
||||||
|
|
||||||
#include "NetworkServerLookup.hpp"
|
#include "Network/NetworkServerLookup.hpp"
|
||||||
|
|
||||||
#include "moc_DXLabSuiteCommanderTransceiver.cpp"
|
#include "moc_DXLabSuiteCommanderTransceiver.cpp"
|
||||||
|
|
@ -8,7 +8,7 @@
|
|||||||
#include <QStandardPaths>
|
#include <QStandardPaths>
|
||||||
#include <QDir>
|
#include <QDir>
|
||||||
|
|
||||||
#include "NetworkServerLookup.hpp"
|
#include "Network/NetworkServerLookup.hpp"
|
||||||
|
|
||||||
namespace
|
namespace
|
||||||
{
|
{
|
@ -6,7 +6,7 @@
|
|||||||
#include <QThread>
|
#include <QThread>
|
||||||
#include <QEventLoop>
|
#include <QEventLoop>
|
||||||
|
|
||||||
#include "qt_helpers.hpP"
|
#include "qt_helpers.hpp"
|
||||||
|
|
||||||
#include "moc_OmniRigTransceiver.cpp"
|
#include "moc_OmniRigTransceiver.cpp"
|
||||||
|
|
@ -3,7 +3,7 @@
|
|||||||
|
|
||||||
#include <QObject>
|
#include <QObject>
|
||||||
|
|
||||||
#include "TransceiverBase.hpp"
|
#include "Transceiver/TransceiverBase.hpp"
|
||||||
|
|
||||||
class QTimer;
|
class QTimer;
|
||||||
|
|
@ -3,7 +3,7 @@
|
|||||||
|
|
||||||
#include <QStandardItemModel>
|
#include <QStandardItemModel>
|
||||||
|
|
||||||
#include "MessageServer.hpp"
|
#include "Network/MessageServer.hpp"
|
||||||
|
|
||||||
using Frequency = MessageServer::Frequency;
|
using Frequency = MessageServer::Frequency;
|
||||||
|
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
#include <QRegularExpression>
|
#include <QRegularExpression>
|
||||||
#include <QtWidgets>
|
#include <QtWidgets>
|
||||||
|
|
||||||
#include "MessageServer.hpp"
|
#include "Network/MessageServer.hpp"
|
||||||
|
|
||||||
class QAbstractItemModel;
|
class QAbstractItemModel;
|
||||||
class QModelIndex;
|
class QModelIndex;
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
|
|
||||||
#include <QStandardItemModel>
|
#include <QStandardItemModel>
|
||||||
|
|
||||||
#include "MessageServer.hpp"
|
#include "Network/MessageServer.hpp"
|
||||||
|
|
||||||
using Frequency = MessageServer::Frequency;
|
using Frequency = MessageServer::Frequency;
|
||||||
|
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
#include <QHash>
|
#include <QHash>
|
||||||
#include <QString>
|
#include <QString>
|
||||||
|
|
||||||
#include "MessageServer.hpp"
|
#include "Network/MessageServer.hpp"
|
||||||
|
|
||||||
class QDateTime;
|
class QDateTime;
|
||||||
class QStandardItemModel;
|
class QStandardItemModel;
|
||||||
|
@ -25,7 +25,7 @@
|
|||||||
#include <QHash>
|
#include <QHash>
|
||||||
#include <QDebug>
|
#include <QDebug>
|
||||||
|
|
||||||
#include "MessageServer.hpp"
|
#include "Network/MessageServer.hpp"
|
||||||
#include "Radio.hpp"
|
#include "Radio.hpp"
|
||||||
|
|
||||||
#include "qt_helpers.hpp"
|
#include "qt_helpers.hpp"
|
||||||
|
@ -41,11 +41,11 @@
|
|||||||
|
|
||||||
#include "revision_utils.hpp"
|
#include "revision_utils.hpp"
|
||||||
#include "qt_helpers.hpp"
|
#include "qt_helpers.hpp"
|
||||||
#include "NetworkAccessManager.hpp"
|
#include "Network/NetworkAccessManager.hpp"
|
||||||
#include "soundout.h"
|
#include "soundout.h"
|
||||||
#include "soundin.h"
|
#include "soundin.h"
|
||||||
#include "Modulator.hpp"
|
#include "Modulator.hpp"
|
||||||
#include "Detector.hpp"
|
#include "Detector/Detector.hpp"
|
||||||
#include "plotter.h"
|
#include "plotter.h"
|
||||||
#include "echoplot.h"
|
#include "echoplot.h"
|
||||||
#include "echograph.h"
|
#include "echograph.h"
|
||||||
@ -60,10 +60,10 @@
|
|||||||
#include "decodedtext.h"
|
#include "decodedtext.h"
|
||||||
#include "Radio.hpp"
|
#include "Radio.hpp"
|
||||||
#include "models/Bands.hpp"
|
#include "models/Bands.hpp"
|
||||||
#include "TransceiverFactory.hpp"
|
#include "Transceiver/TransceiverFactory.hpp"
|
||||||
#include "models/StationList.hpp"
|
#include "models/StationList.hpp"
|
||||||
#include "validators/LiveFrequencyValidator.hpp"
|
#include "validators/LiveFrequencyValidator.hpp"
|
||||||
#include "MessageClient.hpp"
|
#include "Network/MessageClient.hpp"
|
||||||
#include "wsprnet.h"
|
#include "wsprnet.h"
|
||||||
#include "signalmeter.h"
|
#include "signalmeter.h"
|
||||||
#include "HelpTextWindow.hpp"
|
#include "HelpTextWindow.hpp"
|
||||||
@ -72,7 +72,7 @@
|
|||||||
#include "MultiSettings.hpp"
|
#include "MultiSettings.hpp"
|
||||||
#include "validators/MaidenheadLocatorValidator.hpp"
|
#include "validators/MaidenheadLocatorValidator.hpp"
|
||||||
#include "validators/CallsignValidator.hpp"
|
#include "validators/CallsignValidator.hpp"
|
||||||
#include "EqualizationToolsDialog.hpp"
|
#include "Transceiver/EqualizationToolsDialog.hpp"
|
||||||
#include "LotWUsers.hpp"
|
#include "LotWUsers.hpp"
|
||||||
#include "logbook/AD1CCty.hpp"
|
#include "logbook/AD1CCty.hpp"
|
||||||
#include "models/FoxLog.hpp"
|
#include "models/FoxLog.hpp"
|
||||||
|
@ -29,13 +29,13 @@
|
|||||||
#include "models/FrequencyList.hpp"
|
#include "models/FrequencyList.hpp"
|
||||||
#include "Configuration.hpp"
|
#include "Configuration.hpp"
|
||||||
#include "WSPRBandHopping.hpp"
|
#include "WSPRBandHopping.hpp"
|
||||||
#include "Transceiver.hpp"
|
#include "Transceiver/Transceiver.hpp"
|
||||||
#include "DisplayManual.hpp"
|
#include "DisplayManual.hpp"
|
||||||
#include "psk_reporter.h"
|
#include "Network/psk_reporter.h"
|
||||||
#include "logbook/logbook.h"
|
#include "logbook/logbook.h"
|
||||||
#include "astro.h"
|
#include "astro.h"
|
||||||
#include "MessageBox.hpp"
|
#include "MessageBox.hpp"
|
||||||
#include "NetworkAccessManager.hpp"
|
#include "Network/NetworkAccessManager.hpp"
|
||||||
|
|
||||||
#define NUM_JT4_SYMBOLS 206 //(72+31)*2, embedded sync
|
#define NUM_JT4_SYMBOLS 206 //(72+31)*2, embedded sync
|
||||||
#define NUM_JT65_SYMBOLS 126 //63 data + 63 sync
|
#define NUM_JT65_SYMBOLS 126 //63 data + 63 sync
|
||||||
|
Loading…
Reference in New Issue
Block a user