application

Clone Tools
  • last updated a few minutes ago
Constraints
Constraints: committers
 
Constraints: files
Constraints: dates
DEN-7832: Implementations [Saline and Heparin change request]

- Also removed the UF state from response.

  1. … 6 more files in changeset.
It is now removed, WifiNetworkData is added to REGISTER_MODEL_METATYPES now

It is now removed, WifiNetworkData is added to REGISTER_MODEL_METATYPES now

DEN-7054: Added Network.h to Model namespace, refactoring

    • -0
    • +210
    /sources/model/MWifiNetwork.h
Moved this to onStart() and calling start() in main.cpp which emits a private signal didStart() that is connected to onStart as we discussed

Moved this to onStart() and calling start() in main.cpp which emits a private signal didStart() that is connected to onStart as we discussed

Done

Done

I agree it should be private. I've updated it to onAddNetwork and it is now private

I agree it should be private. I've updated it to onAddNetwork and it is now private

Updated it to use the settings stack specifically when popping or pushing

Updated it to use the settings stack specifically when popping or pushing

Just tested this and confirmed the alarm dialog shows up in front of the join / disconnect dialog

Just tested this and confirmed the alarm dialog shows up in front of the join / disconnect dialog

Done

Done

Done

Done

These are just thresholds by which to categorize the signal strength of an AP. So, the actual measured signal strength will vary independently of these levels.

These are just thresholds by which to categorize the signal strength of an AP. So, the actual measured signal strength will vary independently of these levels.

DEN-7054: Addressed code review comments

    • -4
    • +4
    /sources/gui/qml/pages/SettingsHome.qml
Clarify comment..."...and will a response..." Not clear on what that means.

Clarify comment..."...and will a response..." Not clear on what that means.

...cannot...

...cannot...

Note...will not (instead of won't informal language)...for more than...

Note...will not (instead of won't informal language)...for more than...

...each instruction...

...each instruction...

...instruction-based...

...instruction-based...

...that has...for each instruction-based...

...that has...for each instruction-based...

, the application

, the application

When...VM, (comma after VM)...the application

When...VM, (comma after VM)...the application

This...required...application...instruction-based.

This...required...application...instruction-based.

It..., for application...

It..., for application...

DEN-7147: Fixed a bug on arterial/venous pressures

- which was causing user to move low/high other than current default to be able to confirm for FW validation.

    • -0
    • +2
    /sources/gui/qml/components/RangeSlider.qml
DEN-7147: Fixed a bug on Sub-StepIndicator on bottom of the instructions

- Which was causing that to not to show correct number of the steps and titles.

- removed #include "MModel.h" in all the possible cases and include the specific model since the MModel has too much include.

- Showing the Heparin setup in the CART_INSTALL state only if we have a heparin volume setup.

- created a common template function name enumString in Gui namespace to get the enum name as string.

    • -4
    • +11
    /sources/gui/qml/components/StepIndicator.qml
  1. … 58 more files in changeset.
DEN-7147: preTx: Code Review 0

- The little count down progress circles become bigger.

- The completed text on the bottom of some screens with check marks become settable by code.

- Duplicate group removed from instruction file

- "Recirculate ..." text has been removed from the priming screen

- Added syringe pump state

    • -1
    • +2
    /sources/gui/qml/compounds/CheckListView.qml
    • -1
    • +1
    /sources/gui/qml/globals/Variables.qml
    • -6
    • +11
    /sources/view/settings/VSettings.cpp
DEN-7137: preTx: Update Design Documents

- Filled all the screen with the dynamic instruction so be able to capture for SDD.

- Removed the idea of reset and clear the stack, since it is not working.

UI-DEN-7135_UI Pre Treatment
UI-DEN-7135_UI Pre Treatment
Why Network being registered?

Why Network being registered?

Please take a closer look at the code. At this moment you are still in the main thread and not in the Wifi Thread.

Please take a closer look at the code.
At this moment you are still in the main thread and not in the Wifi Thread.

This is an exception that you have a view which you don't have access to its object but in general: whoever wants to use it to connect to a signal of another class should connect to that signal in ...

This is an exception that you have a view which you don't have access to its object but in general:
whoever wants to use it to connect to a signal of another class should connect to that signal in its own scop/class and do it with its private slots.
So in a case like this, these connections should be moved to the interface.
But as I said it is an exception and there no better way than what has been done here.