import QtQuick 1.0 import "../Shared" Rectangle { id: mainPage anchors.fill: parent TopBarLogo { id: topBar anchors.top: parent.top } Tabbar{id: tabbar} Rectangle{ id: mainField anchors.top: topBar.bottom anchors.bottom: mainPage.bottom width: parent.width color: "#353535" opacity: 0.7 } MouseArea{ id: mouse anchors.fill: parent onClicked: {} } MessageBox{ anchors.centerIn: parent width: 320 height: 230 titleBox: "Сообщение" message: "Для просмотра видео подключитесь пожалуйста к Интернету посредством Wi-Fi или 3G/GPRS" textButton: "ОК" onClicked: { //startThePreroll() } } }