/*!
 *
 * Copyright (c) 2020-2024 Diality Inc. - All Rights Reserved.
 * \copyright
 * THIS CODE MAY NOT BE COPIED OR REPRODUCED IN ANY FORM, IN PART OR IN
 * WHOLE, WITHOUT THE EXPLICIT PERMISSION OF THE COPYRIGHT OWNER.
 *
 * \file    ImageLogoD.qml
 * \author  (last)      Behrouz NematiPour
 * \date    (last)      06-May-2021
 * \author  (original)  Behrouz NematiPour
 * \date    (original)  18-May-2020
 *
 */

// Qt
import QtQuick 2.12

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

/*!
 * \brief   Denali project simple logo (No 'Diality')
 */
Item { id : _root
    // align it with the in-Treatment logo
    // and also move it up to not to be covered
    // by alarm dialog so changed from headerHeight to mainMenuHeight
    height : Variables.mainMenuHeight
    anchors {
        top     : parent.top
        left    : parent.left
        right   : parent.right
    }

    Image { id: _image
        anchors.centerIn: parent
        width : Variables.logoDiameter
        height: Variables.logoDiameter
        source: "qrc:/images/iLogoD"
    }
}
