Skip to content
Snippets Groups Projects
Commit 0370bc5e authored by Prince Gupta's avatar Prince Gupta :speech_balloon: Committed by Pierre Lamot
Browse files

qml: introduce MainGridView and MainTableView in MainInterface


for now they provide bottom margin for main views when miniplayer is visible

Signed-off-by: default avatarPierre Lamot <pierre@videolabs.io>
parent ecf8d1db
No related branches found
No related tags found
No related merge requests found
......@@ -615,6 +615,8 @@ libqt_plugin_la_QML = \
gui/qt/maininterface/qml/BannerSources.qml \
gui/qt/maininterface/qml/MainInterface.qml \
gui/qt/maininterface/qml/MainDisplay.qml \
gui/qt/maininterface/qml/MainGridView.qml \
gui/qt/maininterface/qml/MainTableView.qml \
gui/qt/maininterface/qml/MiniPlayerBottomMargin.qml \
gui/qt/maininterface/qml/NoMedialibHome.qml \
gui/qt/medialibrary/qml/ArtistTopBanner.qml \
......
/*****************************************************************************
* Copyright (C) 2020 VLC authors and VideoLAN
*
* 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 "qrc:///widgets/" as Widgets
Widgets.ExpandGridView {
id: root
footerDelegate: MiniPlayerBottomMargin {
width: root.width
}
}
/*****************************************************************************
* Copyright (C) 2020 VLC authors and VideoLAN
*
* 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 "qrc:///widgets/" as Widgets
Widgets.KeyNavigableTableView {
id: root
footer: MiniPlayerBottomMargin {
width: root.width
}
}
......@@ -180,6 +180,8 @@
<file alias="MainInterface.qml">maininterface/qml/MainInterface.qml</file>
<file alias="MainDisplay.qml">maininterface/qml/MainDisplay.qml</file>
<file alias="NoMedialibHome.qml">maininterface/qml/NoMedialibHome.qml</file>
<file alias="MainTableView.qml">maininterface/qml/MainTableView.qml</file>
<file alias="MainGridView.qml">maininterface/qml/MainGridView.qml</file>
<file alias="MiniPlayerBottomMargin.qml">maininterface/qml/MiniPlayerBottomMargin.qml</file>
</qresource>
<qresource prefix="/widgets">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment