feat: Remove data transfer in gui.
This commit is contained in:
@@ -67,8 +67,6 @@ public:
|
||||
void emitErrorCallback(const QString& msg);
|
||||
void emitInfoCallback(const QString& aMessage,const unsigned int aInfoType);
|
||||
bool hasValidEmptyScan();
|
||||
bool updateTransferProgress();
|
||||
int getTransferProgress();
|
||||
void prepareEmergencyReset();
|
||||
|
||||
public slots:
|
||||
@@ -105,7 +103,6 @@ private:
|
||||
void getAutoLocatePosition();
|
||||
bool getCEStatus();
|
||||
bool startCEScan();
|
||||
void startTransfer();
|
||||
void initEmptyScanMeasurementID();
|
||||
void controlDrainage(const QString& aCode);
|
||||
void checkInitStatus();
|
||||
@@ -122,7 +119,6 @@ private:
|
||||
void processAlarm(const QString& aAlarm);
|
||||
void processPreviewData(const QString& aPreviewData);
|
||||
void processDeviceTemperature(const QString& aResponseTemperature);
|
||||
void processTransferProgress(const QString& aProgress);
|
||||
void processShutDownDms(const QString& aResponse);
|
||||
void processPumpResult(const QString& aResponse);
|
||||
void processGetSoftwareVersion(const QString& aResponse);
|
||||
@@ -130,8 +126,6 @@ private:
|
||||
|
||||
void insertEmptyScanRecord();
|
||||
void insertScanRecord();
|
||||
void updateTransferState();
|
||||
|
||||
|
||||
private slots:
|
||||
//DMS
|
||||
@@ -157,13 +151,10 @@ signals:
|
||||
void responseStopScan(const QString& aResponse);
|
||||
void responsePreviewScan(const QString& aResponse);
|
||||
void responseGetSoftwareVersion(const QString& aSoftwareVersion);
|
||||
void responseTransfer(const QString& aResponse);
|
||||
void responseGetTransferProgress(const QString& aProgress);
|
||||
void responseGetCEStatus(const QString& aProgress);
|
||||
void responsePumpControl(const QString& aResponse);
|
||||
void responseSetSimulatorMode(const QString& aResponse);
|
||||
void responseSetHeartBeat(const QString& aResponese);
|
||||
void responseStopTransfer(const QString& aResponse);
|
||||
void responseShutDown(const QString& aResponse);
|
||||
void responseCheckInitStatus(const QString& aResponse);
|
||||
void responseStartAutoLocate(const QString& aResponse);
|
||||
@@ -180,7 +171,6 @@ signals:
|
||||
//GUI
|
||||
void initializeFinished();
|
||||
void initializeProgress(const QString& aProgress);
|
||||
void transferStatusUpdated();
|
||||
void startPreviewScanResult(bool aIsSucessful);
|
||||
void startPumpControlResult(bool aIsSucessful);
|
||||
void startAutoLocateResult(bool aIsSucessful);
|
||||
@@ -197,12 +187,9 @@ private:
|
||||
int mScanProgressTimer = -1;
|
||||
int mCheckInitStatusTimer = -1;
|
||||
int mGetAutoLocatePositionTimer = -1;
|
||||
int mTransferProgress = 0;
|
||||
int mEffectivePositionCount = 0;
|
||||
bool mIsEmptyScan = false;
|
||||
bool mIsTransferEmptyScan = false;
|
||||
bool mIsScanning = false;
|
||||
bool mIsTransfering = false;
|
||||
bool mIsPreviewing = false;
|
||||
bool mIsInitializing = false;
|
||||
bool mIsAutoLocating = false;
|
||||
@@ -214,8 +201,6 @@ private:
|
||||
QString mCurrentAccessionNumber = "";
|
||||
QString mCurrentLaterality = "";
|
||||
QString mCurrentOperatorName = "";
|
||||
QString mCurrentTransferMeasurementID = "";
|
||||
QString mCurrentTransferPatientID = "";
|
||||
QString mSoftwareVersion = "";
|
||||
QString mReconTransferPath = "";
|
||||
|
||||
@@ -226,8 +211,6 @@ private:
|
||||
DmsSyncAction* mPreviewScanAction = nullptr;
|
||||
DmsSyncAction* mCEScanAction = nullptr;
|
||||
DmsSyncAction* mStopScanAction = nullptr;
|
||||
DmsSyncAction* mTransferAction = nullptr;
|
||||
DmsSyncAction* mGetTransferProgressAction = nullptr;
|
||||
DmsSyncAction* mGetCEStatusAction = nullptr;
|
||||
DmsSyncAction* mSetSimulatorModeAction = nullptr;
|
||||
DmsSyncAction* mSetHeartBeatAction = nullptr;
|
||||
@@ -238,7 +221,6 @@ private:
|
||||
|
||||
DmsAsyncAction* mGetDeviceTemperatureAction = nullptr;
|
||||
DmsAsyncAction* mGetScanProgressAction = nullptr;
|
||||
DmsAsyncAction* mStopTransferAction = nullptr;
|
||||
DmsAsyncAction* mShutDownAction = nullptr;
|
||||
DmsAsyncAction* mPumpControlAction = nullptr;
|
||||
DmsAsyncAction* mGetAutoLocatePositionAction = nullptr;
|
||||
|
||||
Reference in New Issue
Block a user