Skip to content
Snippets Groups Projects
  • Sébastien Blin's avatar
    e073c6f8
    i18n: support RTL languages · e073c6f8
    Sébastien Blin authored and Aline Gondim Santos's avatar Aline Gondim Santos committed
    This patch introduces some mechanisms to fully support RTL languages:
    1. RTL detection via UtilsAdapter::isRTL() checking the locale name
    2. Using QML mirroring when needed based on UtilsAdapter.isRTL
    3. Inverting panels in DualPaneView and JamiListView when needed
    with SinglePane support
    
    Moreover, lot of anchors are added to automatically manage layout
    updates.
    
    GitLab: #235
    Change-Id: I40c245f2d7fae96d796c53505af5403f5e813e7f
    e073c6f8
    History
    i18n: support RTL languages
    Sébastien Blin authored and Aline Gondim Santos's avatar Aline Gondim Santos committed
    This patch introduces some mechanisms to fully support RTL languages:
    1. RTL detection via UtilsAdapter::isRTL() checking the locale name
    2. Using QML mirroring when needed based on UtilsAdapter.isRTL
    3. Inverting panels in DualPaneView and JamiListView when needed
    with SinglePane support
    
    Moreover, lot of anchors are added to automatically manage layout
    updates.
    
    GitLab: #235
    Change-Id: I40c245f2d7fae96d796c53505af5403f5e813e7f
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
LevelMeter.qml 1.79 KiB
/*
 * Copyright (C) 2019-2023 Savoir-faire Linux Inc.
 * Author: Yang Wang   <yang.wang@savoirfairelinux.com>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
import QtQuick
import QtQuick.Controls
import net.jami.Models 1.1
import net.jami.Adapters 1.1
import net.jami.Constants 1.1

ProgressBar {
    id: root

    property real rmsLevel: 0

    LayoutMirroring.enabled: false

    value: {
        return clamp(rmsLevel * 300.0, 0.0, 100.0);
    }

    contentItem: Item {
        implicitWidth: parent.width
        implicitHeight: parent.height

        Rectangle {
            width: root.visualPosition * parent.width
            height: parent.height
            color: JamiTheme.tintedBlue
        }
    }

    onVisibleChanged: {
        if (visible) {
            rmsLevel = 0;
            AvAdapter.startAudioMeter();
        } else
            AvAdapter.stopAudioMeter();
    }

    function clamp(num, a, b) {
        return Math.max(Math.min(num, Math.max(a, b)), Math.min(a, b));
    }

    Connections {
        target: AVModel
        enabled: root.visible

        function onAudioMeter(id, level) {
            if (id === "audiolayer_id") {
                rmsLevel = level;
            }
        }
    }
}