/*!
 *
 * Copyright (c) 2019-2020 Diality Inc. - All Rights Reserved.
 * \copyright                                                       \n
 *          THIS CODE MAY NOT BE COPIED OR REPRODUCED IN ANY FORM,  \n
 *          IN PART OR IN WHOLE,                                    \n
 *          WITHOUT THE EXPLICIT PERMISSION OF THE COPYRIGHT OWNER. \n
 *
 * \file    TreatmentUltrafiltration.qml
 * \date    2020/01/27
 * \author  Behrouz NematiPour
 *
 */

// Qt
import QtQuick 2.12

// Project

//  Qml imports
import "qrc:/globals"
import "qrc:/components"

/*!
 * \brief   Treatment Screen Ultrafiltration section
 */
TouchArea { id: _root
    property alias  minimum : _progressbarex.minimum
    property alias  maximum : _progressbarex.maximum
    property alias  value   : _progressbarex.value
    property alias  valueEx : _progressbarex.valueEx

    clip: false
    x   : 0
    y   : 0
    width   : 200
    height  : 200
    isTouchable : true
    orientation : TouchArea.Orientation.Vertical
    title   : qsTr("ULTRAFILTRATION VOLUME") + " " + qsTr("(mL)")

    ProgressBarEx { id: _progressbarex
        y       : 75
        width   : parent.width
        height  : Variables.progressbarHeight
        value   : 0
        valueEx : 0
    }
}
