refactory the project
@ -4,7 +4,7 @@
|
||||
#
|
||||
#-------------------------------------------------
|
||||
|
||||
QT += core gui xml network qml
|
||||
QT += core gui xml network
|
||||
|
||||
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
||||
|
||||
@ -27,8 +27,10 @@ CONFIG += c++11
|
||||
|
||||
# 子项目
|
||||
include(SAKSetup.pri)
|
||||
include(SAKBackend.pri)
|
||||
include(SAKFrontend.pri)
|
||||
include(SAKSetup.pri)
|
||||
include(SAKDataVis.pri)
|
||||
include(SAKModules.pri)
|
||||
include(SAKSerialPort.pri)
|
||||
|
||||
exists(private/SAKPrivate.pri){
|
||||
include(private/SAKPrivate.pri)
|
||||
@ -67,9 +69,175 @@ DISTFILES += \
|
||||
android/gradle/wrapper/gradle-wrapper.properties \
|
||||
android/gradlew \
|
||||
android/gradlew.bat \
|
||||
android/res/values/libs.xml
|
||||
android/res/values/libs.xml \
|
||||
src/Modules.pri \
|
||||
src/tools/filechecker/QtCryptographicHash.pri
|
||||
|
||||
contains(ANDROID_TARGET_ARCH,arm64-v8a) {
|
||||
ANDROID_PACKAGE_SOURCE_DIR = \
|
||||
$$PWD/android
|
||||
}
|
||||
|
||||
INCLUDEPATH += \
|
||||
src \
|
||||
src/base \
|
||||
src/common \
|
||||
src/page \
|
||||
src/page/input \
|
||||
src/page/other \
|
||||
src/page/other/autoresponse \
|
||||
src/page/other/highlight \
|
||||
src/page/other/more \
|
||||
src/page/other/readwrite \
|
||||
src/page/other/timing \
|
||||
src/page/other/transmission \
|
||||
src/page/output \
|
||||
src/page/output/save \
|
||||
src/page/statistics \
|
||||
src/tcpclient \
|
||||
src/tcpserver \
|
||||
src/tools/crccalculator \
|
||||
src/tools/filechecker \
|
||||
src/udp \
|
||||
src/update
|
||||
|
||||
FORMS += \
|
||||
src/SAKMainWindow.ui \
|
||||
src/SAKMoreInformation.ui \
|
||||
src/page/SAKDebugPage.ui \
|
||||
src/page/input/SAKInputDataItem.ui \
|
||||
src/page/input/SAKInputDataItemManager.ui \
|
||||
src/page/other/autoresponse/SAKAutoResponseItemWidget.ui \
|
||||
src/page/other/autoresponse/SAKAutoResponseSettingsWidget.ui \
|
||||
src/page/other/highlight/SAKHighlightSettingsWidget.ui \
|
||||
src/page/other/more/SAKMoreSettingsWidget.ui \
|
||||
src/page/other/readwrite/SAKReadWriteSettingsWidget.ui \
|
||||
src/page/other/timing/SAKTimingSendingItemWidget.ui \
|
||||
src/page/other/timing/SAKTimingSendingSettingsWidget.ui \
|
||||
src/page/other/transmission/SAKSerialPortTransmissionItemWidget.ui \
|
||||
src/page/other/transmission/SAKTcpTransmissionItemWidget.ui \
|
||||
src/page/other/transmission/SAKTransmissionPage.ui \
|
||||
src/page/other/transmission/SAKTransmissionSettings.ui \
|
||||
src/page/other/transmission/SAKUdpTransmissionItemWidget.ui \
|
||||
src/page/output/save/SAKSaveOutputDataSettings.ui \
|
||||
src/tcpclient/SAKTcpClientDeviceController.ui \
|
||||
src/tcpserver/SAKTcpServerDeviceController.ui \
|
||||
src/tools/crccalculator/SAKCRCCalculator.ui \
|
||||
src/tools/filechecker/QtCryptographicHashController.ui \
|
||||
src/udp/SAKUdpAdvanceSettingWidget.ui \
|
||||
src/udp/SAKUdpDeviceController.ui \
|
||||
src/update/SAKDownloadItemWidget.ui \
|
||||
src/update/SAKUpdateManager.ui
|
||||
|
||||
HEADERS += \
|
||||
src/SAKApplication.hh \
|
||||
src/SAKApplicationInformation.hh \
|
||||
src/SAKCodingStyle.hh \
|
||||
src/SAKGlobal.hh \
|
||||
src/SAKMainWindow.hh \
|
||||
src/SAKMoreInformation.hh \
|
||||
src/SAKSettings.hh \
|
||||
src/base/SAKDialog.hh \
|
||||
src/base/SAKMessageBox.hh \
|
||||
src/base/SAKWidget.hh \
|
||||
src/common/SAKCRCInterface.hh \
|
||||
src/common/SAKCommonInterface.hh \
|
||||
src/common/SAKDataStruct.hh \
|
||||
src/page/SAKDebugPage.hh \
|
||||
src/page/input/SAKDebugPageInputManager.hh \
|
||||
src/page/input/SAKInputDataFactory.hh \
|
||||
src/page/input/SAKInputDataItem.hh \
|
||||
src/page/input/SAKInputDataItemManager.hh \
|
||||
src/page/other/SAKOtherSettingsManager.hh \
|
||||
src/page/other/autoresponse/SAKAutoResponseItemWidget.hh \
|
||||
src/page/other/autoresponse/SAKAutoResponseSettingsWidget.hh \
|
||||
src/page/other/highlight/SAKHighlightSettings.hh \
|
||||
src/page/other/highlight/SAKHighlightSettingsWidget.hh \
|
||||
src/page/other/more/SAKMoreSettingsWidget.hh \
|
||||
src/page/other/readwrite/SAKReadWriteSettingsWidget.hh \
|
||||
src/page/other/timing/SAKTimingSendingItemWidget.hh \
|
||||
src/page/other/timing/SAKTimingSendingSettingsWidget.hh \
|
||||
src/page/other/transmission/SAKBaseTransmissionItemWidget.hh \
|
||||
src/page/other/transmission/SAKSerialPortTransmissionItemWidget.hh \
|
||||
src/page/other/transmission/SAKTcpTransmissionItemWidget.hh \
|
||||
src/page/other/transmission/SAKTransmissionItemDelegate.hh \
|
||||
src/page/other/transmission/SAKTransmissionPage.hh \
|
||||
src/page/other/transmission/SAKTransmissionSettings.hh \
|
||||
src/page/other/transmission/SAKUdpTransmissionItemWidget.hh \
|
||||
src/page/output/SAKDebugPageOutputManager.hh \
|
||||
src/page/output/SAKOutputDataFactory.hh \
|
||||
src/page/output/save/SAKSaveOutputDataSettings.hh \
|
||||
src/page/output/save/SAKSaveOutputDataThread.hh \
|
||||
src/page/statistics/SAKStatisticsManager.hh \
|
||||
src/tcpclient/SAKTcpClientDebugPage.hh \
|
||||
src/tcpclient/SAKTcpClientDevice.hh \
|
||||
src/tcpclient/SAKTcpClientDeviceController.hh \
|
||||
src/tcpserver/SAKTcpServerDebugPage.hh \
|
||||
src/tcpserver/SAKTcpServerDevice.hh \
|
||||
src/tcpserver/SAKTcpServerDeviceController.hh \
|
||||
src/tools/crccalculator/SAKCRCCalculator.hh \
|
||||
src/tools/filechecker/QtCryptographicHashCalculator.hh \
|
||||
src/tools/filechecker/QtCryptographicHashController.hh \
|
||||
src/udp/SAKUdpAdvanceSettingWidget.hh \
|
||||
src/udp/SAKUdpDebugPage.hh \
|
||||
src/udp/SAKUdpDevice.hh \
|
||||
src/udp/SAKUdpDeviceController.hh \
|
||||
src/update/SAKDownloadItemWidget.hh \
|
||||
src/update/SAKUpdateManager.hh
|
||||
|
||||
SOURCES += \
|
||||
src/SAKApplication.cc \
|
||||
src/SAKApplicationInformation.cc \
|
||||
src/SAKCodingStyle.cc \
|
||||
src/SAKGlobal.cc \
|
||||
src/SAKMainWindow.cc \
|
||||
src/SAKMoreInformation.cc \
|
||||
src/SAKSettings.cc \
|
||||
src/base/SAKDialog.cc \
|
||||
src/base/SAKMessageBox.cc \
|
||||
src/base/SAKWidget.cc \
|
||||
src/common/SAKCRCInterface.cc \
|
||||
src/common/SAKCommonInterface.cc \
|
||||
src/common/SAKDataStruct.cc \
|
||||
src/main.cc \
|
||||
src/page/SAKDebugPage.cc \
|
||||
src/page/input/SAKDebugPageInputManager.cc \
|
||||
src/page/input/SAKInputDataFactory.cc \
|
||||
src/page/input/SAKInputDataItem.cc \
|
||||
src/page/input/SAKInputDataItemManager.cc \
|
||||
src/page/other/SAKOtherSettingsManager.cc \
|
||||
src/page/other/autoresponse/SAKAutoResponseItemWidget.cc \
|
||||
src/page/other/autoresponse/SAKAutoResponseSettingsWidget.cc \
|
||||
src/page/other/highlight/SAKHighlightSettings.cc \
|
||||
src/page/other/highlight/SAKHighlightSettingsWidget.cc \
|
||||
src/page/other/more/SAKMoreSettingsWidget.cc \
|
||||
src/page/other/readwrite/SAKReadWriteSettingsWidget.cc \
|
||||
src/page/other/timing/SAKTimingSendingItemWidget.cc \
|
||||
src/page/other/timing/SAKTimingSendingSettingsWidget.cc \
|
||||
src/page/other/transmission/SAKBaseTransmissionItemWidget.cc \
|
||||
src/page/other/transmission/SAKSerialPortTransmissionItemWidget.cc \
|
||||
src/page/other/transmission/SAKTcpTransmissionItemWidget.cc \
|
||||
src/page/other/transmission/SAKTransmissionItemDelegate.cc \
|
||||
src/page/other/transmission/SAKTransmissionPage.cc \
|
||||
src/page/other/transmission/SAKTransmissionSettings.cc \
|
||||
src/page/other/transmission/SAKUdpTransmissionItemWidget.cc \
|
||||
src/page/output/SAKDebugPageOutputManager.cc \
|
||||
src/page/output/SAKOutputDataFactory.cc \
|
||||
src/page/output/save/SAKSaveOutputDataSettings.cc \
|
||||
src/page/output/save/SAKSaveOutputDataThread.cc \
|
||||
src/page/statistics/SAKStatisticsManager.cc \
|
||||
src/tcpclient/SAKTcpClientDebugPage.cc \
|
||||
src/tcpclient/SAKTcpClientDevice.cc \
|
||||
src/tcpclient/SAKTcpClientDeviceController.cc \
|
||||
src/tcpserver/SAKTcpServerDebugPage.cc \
|
||||
src/tcpserver/SAKTcpServerDevice.cc \
|
||||
src/tcpserver/SAKTcpServerDeviceController.cc \
|
||||
src/tools/crccalculator/SAKCRCCalculator.cc \
|
||||
src/tools/filechecker/QtCryptographicHashCalculator.cc \
|
||||
src/tools/filechecker/QtCryptographicHashController.cc \
|
||||
src/udp/SAKUdpAdvanceSettingWidget.cc \
|
||||
src/udp/SAKUdpDebugPage.cc \
|
||||
src/udp/SAKUdpDevice.cc \
|
||||
src/udp/SAKUdpDeviceController.cc \
|
||||
src/update/SAKDownloadItemWidget.cc \
|
||||
src/update/SAKUpdateManager.cc
|
||||
|
||||
@ -1,25 +0,0 @@
|
||||
INCLUDEPATH += \
|
||||
src \
|
||||
src/base \
|
||||
src/common
|
||||
|
||||
HEADERS += \
|
||||
$$PWD/src/SAKApplication.hh \
|
||||
$$PWD/src/SAKApplicationInformation.hh \
|
||||
$$PWD/src/SAKCodingStyle.hh \
|
||||
$$PWD/src/SAKGlobal.hh \
|
||||
$$PWD/src/SAKSettings.hh \
|
||||
$$PWD/src/common/SAKCRCInterface.hh \
|
||||
$$PWD/src/common/SAKCommonInterface.hh \
|
||||
$$PWD/src/common/SAKDataStruct.hh
|
||||
|
||||
SOURCES += \
|
||||
$$PWD/src/SAKApplication.cc \
|
||||
$$PWD/src/SAKApplicationInformation.cc \
|
||||
$$PWD/src/SAKCodingStyle.cc \
|
||||
$$PWD/src/SAKGlobal.cc \
|
||||
$$PWD/src/SAKSettings.cc \
|
||||
$$PWD/src/common/SAKCRCInterface.cc \
|
||||
$$PWD/src/common/SAKCommonInterface.cc \
|
||||
$$PWD/src/common/SAKDataStruct.cc \
|
||||
$$PWD/src/main.cc
|
||||
@ -4,20 +4,20 @@ qtHaveModule(charts){
|
||||
}
|
||||
|
||||
contains(DEFINES, SAK_IMPORT_CHARTS_MODULE){
|
||||
INCLUDEPATH += \
|
||||
$$PWD/ui/widgets/page/visualization \
|
||||
$$PWD/ui/widgets/page/visualization/throughput
|
||||
|
||||
FORMS += \
|
||||
$$PWD//ui/widgets/page/visualization/SAKDataVisualizationManager.ui
|
||||
$$PWD/src/page/visualization/SAKDataVisualizationManager.ui
|
||||
|
||||
HEADERS += \
|
||||
$$PWD//ui/widgets/page/visualization/SAKDataVisualizationManager.hh \
|
||||
$$PWD//ui/widgets/page/visualization/throughput/SAKThroughputWidget.hh
|
||||
$$PWD/src/page/visualization/SAKDataVisualizationManager.hh \
|
||||
$$PWD/src/page/visualization/throughput/SAKThroughputWidget.hh
|
||||
|
||||
SOURCES += \
|
||||
$$PWD//ui/widgets/page/visualization/SAKDataVisualizationManager.cc \
|
||||
$$PWD//ui/widgets/page/visualization/throughput/SAKThroughputWidget.cc
|
||||
$$PWD/src/page/visualization/SAKDataVisualizationManager.cc \
|
||||
$$PWD/src/page/visualization/throughput/SAKThroughputWidget.cc
|
||||
|
||||
INCLUDEPATH += \
|
||||
$$PWD/src/page/visualization \
|
||||
$$PWD/src/page/visualization/throughput
|
||||
}else {
|
||||
warning("The Qt edition has no charts module, the program will not have data visualization functioin.")
|
||||
}
|
||||
|
||||
@ -1,2 +0,0 @@
|
||||
include(SAKQml.pri)
|
||||
include(SAKWidgets.pri)
|
||||
2
SAKModules.pri
Normal file
@ -0,0 +1,2 @@
|
||||
include(modules/qtappstyle/QtAppStyle.pri)
|
||||
include(modules/qtstylesheet/QtStyleSheet.pri)
|
||||
@ -27,6 +27,5 @@
|
||||
<file>resources/images/Windows.png</file>
|
||||
<file>resources/images/Zip.png</file>
|
||||
<file>resources/images/Qt.png</file>
|
||||
<file alias="qml/mainwindow/MainWindow.qml">ui/qml/MainWindow.qml</file>
|
||||
</qresource>
|
||||
</RCC>
|
||||
|
||||
@ -4,18 +4,21 @@ qtHaveModule(serialport){
|
||||
}
|
||||
|
||||
contains(DEFINES, SAK_IMPORT_COM_MODULE){
|
||||
SOURCES += \
|
||||
ui/widgets/serialport/SAKSerialPortDebugPage.cc \
|
||||
ui/widgets/serialport/SAKSerialPortDeviceController.cc \
|
||||
ui/widgets/serialport/SAKSerialPortDevice.cc
|
||||
FORMS += \
|
||||
$$PWD/src/serialport/SAKSerialPortDeviceController.ui
|
||||
|
||||
HEADERS += \
|
||||
ui/widgets/serialport/SAKSerialPortDebugPage.hh \
|
||||
ui/widgets/serialport/SAKSerialPortDeviceController.hh \
|
||||
ui/widgets/serialport/SAKSerialPortDevice.hh
|
||||
FORMS += \
|
||||
ui/widgets/serialport/SAKSerialPortDeviceController.ui
|
||||
$$PWD/src/serialport/SAKSerialPortDebugPage.hh \
|
||||
$$PWD/src/serialport/SAKSerialPortDevice.hh \
|
||||
$$PWD/src/serialport/SAKSerialPortDeviceController.hh
|
||||
|
||||
SOURCES += \
|
||||
$$PWD/src/serialport/SAKSerialPortDebugPage.cc \
|
||||
$$PWD/src/serialport/SAKSerialPortDevice.cc \
|
||||
$$PWD/src/serialport/SAKSerialPortDeviceController.cc
|
||||
|
||||
INCLUDEPATH += \
|
||||
ui/widgets/serialport
|
||||
$$PWD/src/serialport
|
||||
}else {
|
||||
warning("The Qt edition has no serialport module, the program will not has serialport debuging functioin.")
|
||||
}
|
||||
|
||||
151
SAKWidgets.pri
@ -1,151 +0,0 @@
|
||||
include(SAKDataVis.pri)
|
||||
include(SAKSerialPort.pri)
|
||||
include(SAKSetup.pri)
|
||||
include($$PWD/ui/widgets/qtappstyle/QtAppStyle.pri)
|
||||
include($$PWD/ui/widgets/qtstylesheet/QtStyleSheet.pri)
|
||||
|
||||
INCLUDEPATH += \
|
||||
$$PWD/ui/widgets \
|
||||
$$PWD/ui/widgets/base \
|
||||
$$PWD/ui/widgets/page \
|
||||
$$PWD/ui/widgets/page/input \
|
||||
$$PWD/ui/widgets/page/other \
|
||||
$$PWD/ui/widgets/page/other/autoresponse \
|
||||
$$PWD/ui/widgets/page/other/highlight \
|
||||
$$PWD/ui/widgets/page/other/more \
|
||||
$$PWD/ui/widgets/page/other/readwrite \
|
||||
$$PWD/ui/widgets/page/other/timing \
|
||||
$$PWD/ui/widgets/page/other/transmission \
|
||||
$$PWD/ui/widgets/page/output \
|
||||
$$PWD/ui/widgets/page/output/save \
|
||||
$$PWD/ui/widgets/page/statistics \
|
||||
$$PWD/ui/widgets/tcpclient \
|
||||
$$PWD/ui/widgets/tcpserver \
|
||||
$$PWD/ui/widgets/tools/crccalculator \
|
||||
$$PWD/ui/widgets/tools/filechecker \
|
||||
$$PWD/ui/widgets/udp \
|
||||
$$PWD/ui/widgets/update
|
||||
|
||||
FORMS += \
|
||||
$$PWD/ui/widgets/SAKMainWindow.ui \
|
||||
$$PWD/ui/widgets/SAKMoreInformation.ui \
|
||||
$$PWD/ui/widgets/page/SAKDebugPage.ui \
|
||||
$$PWD/ui/widgets/page/input/SAKInputDataItem.ui \
|
||||
$$PWD/ui/widgets/page/input/SAKInputDataItemManager.ui \
|
||||
$$PWD/ui/widgets/page/other/autoresponse/SAKAutoResponseItemWidget.ui \
|
||||
$$PWD/ui/widgets/page/other/autoresponse/SAKAutoResponseSettingsWidget.ui \
|
||||
$$PWD/ui/widgets/page/other/highlight/SAKHighlightSettingsWidget.ui \
|
||||
$$PWD/ui/widgets/page/other/more/SAKMoreSettingsWidget.ui \
|
||||
$$PWD/ui/widgets/page/other/readwrite/SAKReadWriteSettingsWidget.ui \
|
||||
$$PWD/ui/widgets/page/other/timing/SAKTimingSendingItemWidget.ui \
|
||||
$$PWD/ui/widgets/page/other/timing/SAKTimingSendingSettingsWidget.ui \
|
||||
$$PWD/ui/widgets/page/other/transmission/SAKSerialPortTransmissionItemWidget.ui \
|
||||
$$PWD/ui/widgets/page/other/transmission/SAKTcpTransmissionItemWidget.ui \
|
||||
$$PWD/ui/widgets/page/other/transmission/SAKTransmissionPage.ui \
|
||||
$$PWD/ui/widgets/page/other/transmission/SAKTransmissionSettings.ui \
|
||||
$$PWD/ui/widgets/page/other/transmission/SAKUdpTransmissionItemWidget.ui \
|
||||
$$PWD/ui/widgets/page/output/save/SAKSaveOutputDataSettings.ui \
|
||||
$$PWD/ui/widgets/tcpclient/SAKTcpClientDeviceController.ui \
|
||||
$$PWD/ui/widgets/tcpserver/SAKTcpServerDeviceController.ui \
|
||||
$$PWD/ui/widgets/tools/crccalculator/SAKCRCCalculator.ui \
|
||||
$$PWD/ui/widgets/tools/filechecker/QtCryptographicHashController.ui \
|
||||
$$PWD/ui/widgets/udp/SAKUdpAdvanceSettingWidget.ui \
|
||||
$$PWD/ui/widgets/udp/SAKUdpDeviceController.ui \
|
||||
$$PWD/ui/widgets/update/SAKDownloadItemWidget.ui \
|
||||
$$PWD/ui/widgets/update/SAKUpdateManager.ui
|
||||
|
||||
HEADERS += \
|
||||
$$PWD/ui/widgets/SAKMainWindow.hh \
|
||||
$$PWD/ui/widgets/SAKMoreInformation.hh \
|
||||
$$PWD/ui/widgets/base/SAKDialog.hh \
|
||||
$$PWD/ui/widgets/base/SAKMessageBox.hh \
|
||||
$$PWD/ui/widgets/base/SAKWidget.hh \
|
||||
$$PWD/ui/widgets/page/SAKDebugPage.hh \
|
||||
$$PWD/ui/widgets/page/input/SAKDebugPageInputManager.hh \
|
||||
$$PWD/ui/widgets/page/input/SAKInputDataFactory.hh \
|
||||
$$PWD/ui/widgets/page/input/SAKInputDataItem.hh \
|
||||
$$PWD/ui/widgets/page/input/SAKInputDataItemManager.hh \
|
||||
$$PWD/ui/widgets/page/other/SAKOtherSettingsManager.hh \
|
||||
$$PWD/ui/widgets/page/other/autoresponse/SAKAutoResponseItemWidget.hh \
|
||||
$$PWD/ui/widgets/page/other/autoresponse/SAKAutoResponseSettingsWidget.hh \
|
||||
$$PWD/ui/widgets/page/other/highlight/SAKHighlightSettings.hh \
|
||||
$$PWD/ui/widgets/page/other/highlight/SAKHighlightSettingsWidget.hh \
|
||||
$$PWD/ui/widgets/page/other/more/SAKMoreSettingsWidget.hh \
|
||||
$$PWD/ui/widgets/page/other/readwrite/SAKReadWriteSettingsWidget.hh \
|
||||
$$PWD/ui/widgets/page/other/timing/SAKTimingSendingItemWidget.hh \
|
||||
$$PWD/ui/widgets/page/other/timing/SAKTimingSendingSettingsWidget.hh \
|
||||
$$PWD/ui/widgets/page/other/transmission/SAKBaseTransmissionItemWidget.hh \
|
||||
$$PWD/ui/widgets/page/other/transmission/SAKSerialPortTransmissionItemWidget.hh \
|
||||
$$PWD/ui/widgets/page/other/transmission/SAKTcpTransmissionItemWidget.hh \
|
||||
$$PWD/ui/widgets/page/other/transmission/SAKTransmissionItemDelegate.hh \
|
||||
$$PWD/ui/widgets/page/other/transmission/SAKTransmissionPage.hh \
|
||||
$$PWD/ui/widgets/page/other/transmission/SAKTransmissionSettings.hh \
|
||||
$$PWD/ui/widgets/page/other/transmission/SAKUdpTransmissionItemWidget.hh \
|
||||
$$PWD/ui/widgets/page/output/SAKDebugPageOutputManager.hh \
|
||||
$$PWD/ui/widgets/page/output/SAKOutputDataFactory.hh \
|
||||
$$PWD/ui/widgets/page/output/save/SAKSaveOutputDataSettings.hh \
|
||||
$$PWD/ui/widgets/page/output/save/SAKSaveOutputDataThread.hh \
|
||||
$$PWD/ui/widgets/page/statistics/SAKStatisticsManager.hh \
|
||||
$$PWD/ui/widgets/tcpclient/SAKTcpClientDebugPage.hh \
|
||||
$$PWD/ui/widgets/tcpclient/SAKTcpClientDevice.hh \
|
||||
$$PWD/ui/widgets/tcpclient/SAKTcpClientDeviceController.hh \
|
||||
$$PWD/ui/widgets/tcpserver/SAKTcpServerDebugPage.hh \
|
||||
$$PWD/ui/widgets/tcpserver/SAKTcpServerDevice.hh \
|
||||
$$PWD/ui/widgets/tcpserver/SAKTcpServerDeviceController.hh \
|
||||
$$PWD/ui/widgets/tools/crccalculator/SAKCRCCalculator.hh \
|
||||
$$PWD/ui/widgets/tools/filechecker/QtCryptographicHashCalculator.hh \
|
||||
$$PWD/ui/widgets/tools/filechecker/QtCryptographicHashController.hh \
|
||||
$$PWD/ui/widgets/udp/SAKUdpAdvanceSettingWidget.hh \
|
||||
$$PWD/ui/widgets/udp/SAKUdpDebugPage.hh \
|
||||
$$PWD/ui/widgets/udp/SAKUdpDevice.hh \
|
||||
$$PWD/ui/widgets/udp/SAKUdpDeviceController.hh \
|
||||
$$PWD/ui/widgets/update/SAKDownloadItemWidget.hh \
|
||||
$$PWD/ui/widgets/update/SAKUpdateManager.hh
|
||||
|
||||
SOURCES += \
|
||||
$$PWD/ui/widgets/SAKMainWindow.cc \
|
||||
$$PWD/ui/widgets/SAKMoreInformation.cc \
|
||||
$$PWD/ui/widgets/base/SAKDialog.cc \
|
||||
$$PWD/ui/widgets/base/SAKMessageBox.cc \
|
||||
$$PWD/ui/widgets/base/SAKWidget.cc \
|
||||
$$PWD/ui/widgets/page/SAKDebugPage.cc \
|
||||
$$PWD/ui/widgets/page/input/SAKDebugPageInputManager.cc \
|
||||
$$PWD/ui/widgets/page/input/SAKInputDataFactory.cc \
|
||||
$$PWD/ui/widgets/page/input/SAKInputDataItem.cc \
|
||||
$$PWD/ui/widgets/page/input/SAKInputDataItemManager.cc \
|
||||
$$PWD/ui/widgets/page/other/SAKOtherSettingsManager.cc \
|
||||
$$PWD/ui/widgets/page/other/autoresponse/SAKAutoResponseItemWidget.cc \
|
||||
$$PWD/ui/widgets/page/other/autoresponse/SAKAutoResponseSettingsWidget.cc \
|
||||
$$PWD/ui/widgets/page/other/highlight/SAKHighlightSettings.cc \
|
||||
$$PWD/ui/widgets/page/other/highlight/SAKHighlightSettingsWidget.cc \
|
||||
$$PWD/ui/widgets/page/other/more/SAKMoreSettingsWidget.cc \
|
||||
$$PWD/ui/widgets/page/other/readwrite/SAKReadWriteSettingsWidget.cc \
|
||||
$$PWD/ui/widgets/page/other/timing/SAKTimingSendingItemWidget.cc \
|
||||
$$PWD/ui/widgets/page/other/timing/SAKTimingSendingSettingsWidget.cc \
|
||||
$$PWD/ui/widgets/page/other/transmission/SAKBaseTransmissionItemWidget.cc \
|
||||
$$PWD/ui/widgets/page/other/transmission/SAKSerialPortTransmissionItemWidget.cc \
|
||||
$$PWD/ui/widgets/page/other/transmission/SAKTcpTransmissionItemWidget.cc \
|
||||
$$PWD/ui/widgets/page/other/transmission/SAKTransmissionItemDelegate.cc \
|
||||
$$PWD/ui/widgets/page/other/transmission/SAKTransmissionPage.cc \
|
||||
$$PWD/ui/widgets/page/other/transmission/SAKTransmissionSettings.cc \
|
||||
$$PWD/ui/widgets/page/other/transmission/SAKUdpTransmissionItemWidget.cc \
|
||||
$$PWD/ui/widgets/page/output/SAKDebugPageOutputManager.cc \
|
||||
$$PWD/ui/widgets/page/output/SAKOutputDataFactory.cc \
|
||||
$$PWD/ui/widgets/page/output/save/SAKSaveOutputDataSettings.cc \
|
||||
$$PWD/ui/widgets/page/output/save/SAKSaveOutputDataThread.cc \
|
||||
$$PWD/ui/widgets/page/statistics/SAKStatisticsManager.cc \
|
||||
$$PWD/ui/widgets/tcpclient/SAKTcpClientDebugPage.cc \
|
||||
$$PWD/ui/widgets/tcpclient/SAKTcpClientDevice.cc \
|
||||
$$PWD/ui/widgets/tcpclient/SAKTcpClientDeviceController.cc \
|
||||
$$PWD/ui/widgets/tcpserver/SAKTcpServerDebugPage.cc \
|
||||
$$PWD/ui/widgets/tcpserver/SAKTcpServerDevice.cc \
|
||||
$$PWD/ui/widgets/tcpserver/SAKTcpServerDeviceController.cc \
|
||||
$$PWD/ui/widgets/tools/crccalculator/SAKCRCCalculator.cc \
|
||||
$$PWD/ui/widgets/tools/filechecker/QtCryptographicHashCalculator.cc \
|
||||
$$PWD/ui/widgets/tools/filechecker/QtCryptographicHashController.cc \
|
||||
$$PWD/ui/widgets/udp/SAKUdpAdvanceSettingWidget.cc \
|
||||
$$PWD/ui/widgets/udp/SAKUdpDebugPage.cc \
|
||||
$$PWD/ui/widgets/udp/SAKUdpDevice.cc \
|
||||
$$PWD/ui/widgets/udp/SAKUdpDeviceController.cc \
|
||||
$$PWD/ui/widgets/update/SAKDownloadItemWidget.cc \
|
||||
$$PWD/ui/widgets/update/SAKUpdateManager.cc
|
||||
|
Before Width: | Height: | Size: 335 B After Width: | Height: | Size: 335 B |
|
Before Width: | Height: | Size: 376 B After Width: | Height: | Size: 376 B |
|
Before Width: | Height: | Size: 351 B After Width: | Height: | Size: 351 B |
|
Before Width: | Height: | Size: 362 B After Width: | Height: | Size: 362 B |
|
Before Width: | Height: | Size: 255 B After Width: | Height: | Size: 255 B |
|
Before Width: | Height: | Size: 435 B After Width: | Height: | Size: 435 B |
|
Before Width: | Height: | Size: 632 B After Width: | Height: | Size: 632 B |
|
Before Width: | Height: | Size: 667 B After Width: | Height: | Size: 667 B |
|
Before Width: | Height: | Size: 561 B After Width: | Height: | Size: 561 B |
|
Before Width: | Height: | Size: 623 B After Width: | Height: | Size: 623 B |
|
Before Width: | Height: | Size: 212 B After Width: | Height: | Size: 212 B |
|
Before Width: | Height: | Size: 264 B After Width: | Height: | Size: 264 B |
|
Before Width: | Height: | Size: 173 B After Width: | Height: | Size: 173 B |
|
Before Width: | Height: | Size: 177 B After Width: | Height: | Size: 177 B |
|
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.9 KiB |
|
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 1.0 KiB |
|
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.3 KiB |
|
Before Width: | Height: | Size: 346 B After Width: | Height: | Size: 346 B |
|
Before Width: | Height: | Size: 382 B After Width: | Height: | Size: 382 B |
|
Before Width: | Height: | Size: 363 B After Width: | Height: | Size: 363 B |
|
Before Width: | Height: | Size: 381 B After Width: | Height: | Size: 381 B |
|
Before Width: | Height: | Size: 272 B After Width: | Height: | Size: 272 B |
|
Before Width: | Height: | Size: 464 B After Width: | Height: | Size: 464 B |
|
Before Width: | Height: | Size: 672 B After Width: | Height: | Size: 672 B |
|
Before Width: | Height: | Size: 687 B After Width: | Height: | Size: 687 B |
|
Before Width: | Height: | Size: 577 B After Width: | Height: | Size: 577 B |
|
Before Width: | Height: | Size: 584 B After Width: | Height: | Size: 584 B |
|
Before Width: | Height: | Size: 243 B After Width: | Height: | Size: 243 B |
|
Before Width: | Height: | Size: 296 B After Width: | Height: | Size: 296 B |
|
Before Width: | Height: | Size: 178 B After Width: | Height: | Size: 178 B |
|
Before Width: | Height: | Size: 183 B After Width: | Height: | Size: 183 B |
|
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.9 KiB |
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.3 KiB |
|
Before Width: | Height: | Size: 346 B After Width: | Height: | Size: 346 B |
|
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
|
Before Width: | Height: | Size: 375 B After Width: | Height: | Size: 375 B |
|
Before Width: | Height: | Size: 366 B After Width: | Height: | Size: 366 B |
|
Before Width: | Height: | Size: 250 B After Width: | Height: | Size: 250 B |
|
Before Width: | Height: | Size: 432 B After Width: | Height: | Size: 432 B |
|
Before Width: | Height: | Size: 619 B After Width: | Height: | Size: 619 B |
|
Before Width: | Height: | Size: 652 B After Width: | Height: | Size: 652 B |
|
Before Width: | Height: | Size: 568 B After Width: | Height: | Size: 568 B |
|
Before Width: | Height: | Size: 653 B After Width: | Height: | Size: 653 B |
|
Before Width: | Height: | Size: 233 B After Width: | Height: | Size: 233 B |
|
Before Width: | Height: | Size: 273 B After Width: | Height: | Size: 273 B |
|
Before Width: | Height: | Size: 178 B After Width: | Height: | Size: 178 B |
|
Before Width: | Height: | Size: 181 B After Width: | Height: | Size: 181 B |
|
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |
|
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 2.0 KiB |
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 349 B After Width: | Height: | Size: 349 B |
|
Before Width: | Height: | Size: 385 B After Width: | Height: | Size: 385 B |
|
Before Width: | Height: | Size: 366 B After Width: | Height: | Size: 366 B |
|
Before Width: | Height: | Size: 341 B After Width: | Height: | Size: 341 B |
|
Before Width: | Height: | Size: 266 B After Width: | Height: | Size: 266 B |
|
Before Width: | Height: | Size: 452 B After Width: | Height: | Size: 452 B |
|
Before Width: | Height: | Size: 674 B After Width: | Height: | Size: 674 B |
|
Before Width: | Height: | Size: 763 B After Width: | Height: | Size: 763 B |
|
Before Width: | Height: | Size: 593 B After Width: | Height: | Size: 593 B |
|
Before Width: | Height: | Size: 598 B After Width: | Height: | Size: 598 B |
|
Before Width: | Height: | Size: 233 B After Width: | Height: | Size: 233 B |
|
Before Width: | Height: | Size: 296 B After Width: | Height: | Size: 296 B |
|
Before Width: | Height: | Size: 180 B After Width: | Height: | Size: 180 B |
|
Before Width: | Height: | Size: 184 B After Width: | Height: | Size: 184 B |
|
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.6 KiB |
|
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 2.0 KiB |
|
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.3 KiB |
|
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |
|
Before Width: | Height: | Size: 355 B After Width: | Height: | Size: 355 B |
|
Before Width: | Height: | Size: 361 B After Width: | Height: | Size: 361 B |
|
Before Width: | Height: | Size: 353 B After Width: | Height: | Size: 353 B |
|
Before Width: | Height: | Size: 367 B After Width: | Height: | Size: 367 B |
|
Before Width: | Height: | Size: 266 B After Width: | Height: | Size: 266 B |
|
Before Width: | Height: | Size: 455 B After Width: | Height: | Size: 455 B |
|
Before Width: | Height: | Size: 659 B After Width: | Height: | Size: 659 B |
|
Before Width: | Height: | Size: 701 B After Width: | Height: | Size: 701 B |
|
Before Width: | Height: | Size: 555 B After Width: | Height: | Size: 555 B |