qml/controlbarcontrols: Create RendererButton

This commit is contained in:
Benjamin Arnaud 2022-03-28 17:27:17 +02:00 committed by Jean-Baptiste Kempf
parent 97d60ade06
commit eff2fe40a9
4 changed files with 48 additions and 0 deletions

View File

@ -845,6 +845,7 @@ libqt_plugin_la_QML = \
gui/qt/player/qml/controlbarcontrols/PreviousButton.qml \
gui/qt/player/qml/controlbarcontrols/QuitButton.qml \
gui/qt/player/qml/controlbarcontrols/RandomButton.qml \
gui/qt/player/qml/controlbarcontrols/RendererButton.qml \
gui/qt/player/qml/controlbarcontrols/RecordButton.qml \
gui/qt/player/qml/controlbarcontrols/ReverseButton.qml \
gui/qt/player/qml/controlbarcontrols/SkipBackButton.qml \

View File

@ -74,6 +74,7 @@ public:
DVD_MENUS_BUTTON,
REVERSE_BUTTON,
BOOKMARK_BUTTON,
RENDERER_BUTTON,
SPECIAL_MAX,
WIDGET_SPACER = 0x40,

View File

@ -0,0 +1,45 @@
/*****************************************************************************
* Copyright (C) 2021 VLC authors and VideoLAN
*
* Authors: Benjamin Arnaud <bunjee@omega.gg>
*
* 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 2 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, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
import QtQuick 2.11
import org.videolan.vlc 0.1
import "qrc:///widgets/" as Widgets
import "qrc:///style/"
Widgets.IconControlButton {
size: VLCStyle.icon_medium
iconText: VLCIcons.renderer
text: I18n.qtr("Renderer")
// NOTE: We want to pop the menu after the button.
onClicked: menu.popup(this.mapToGlobal(width, 0))
QmlRendererMenu {
id: menu
ctx: MainCtx
onAboutToShow: playerControlLayout.requestLockUnlockAutoHide(true, menu)
onAboutToHide: playerControlLayout.requestLockUnlockAutoHide(false, menu)
}
}

View File

@ -382,6 +382,7 @@
<file alias="PreviousButton.qml">player/qml/controlbarcontrols/PreviousButton.qml</file>
<file alias="QuitButton.qml">player/qml/controlbarcontrols/QuitButton.qml</file>
<file alias="RandomButton.qml">player/qml/controlbarcontrols/RandomButton.qml</file>
<file alias="RendererButton.qml">player/qml/controlbarcontrols/RendererButton.qml</file>
<file alias="RecordButton.qml">player/qml/controlbarcontrols/RecordButton.qml</file>
<file alias="ReverseButton.qml">player/qml/controlbarcontrols/ReverseButton.qml</file>
<file alias="SkipBackButton.qml">player/qml/controlbarcontrols/SkipBackButton.qml</file>