Skip to content

Instantly share code, notes, and snippets.

@misaka4e21
Last active October 27, 2016 08:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save misaka4e21/52f499206a2b3d85fcf6 to your computer and use it in GitHub Desktop.
Save misaka4e21/52f499206a2b3d85fcf6 to your computer and use it in GitHub Desktop.
A simple QML-layouting in metro style
import QtQuick 2.2
import QtQuick.Controls 1.1
import QtQuick.Window 2.0
ApplicationWindow {
visibility: Qt.WindowFullScreen
visible: true
flags:Qt.FramelessWindowHint
color: "#23a"
ScrollView {
id: main
x:25
y:50
width: parent.width - 50
height: parent.height - 100
Grid {
rows: 4
spacing: 5
flow: Grid.TopToBottom
Rectangle {width: 125;height:125;color:"#FFF"}
Rectangle {width: 125;height:125;color:"#FFF"}
Rectangle { width: 125;height:125;color:"#FFF"}
Rectangle { width: 255;height:125;color:"#FFF"}
Rectangle { width: 125;height:125;color:"#FFF"}
Rectangle { width: 255;height:125;color:"#FFF"}
Rectangle { width: 125;height:125;color:"#FFF"}
Rectangle { width: 255;height:125;color:"#FFF"}
Rectangle { width: 255;height:125;color:"#FFF"}
Rectangle { width: 255;height:125;color:"#FFF"}
Rectangle { width: 255;height:125;color:"#FFF"}
Rectangle { width: 255;height:125;color:"#FFF"}
Rectangle { width: 255;height:125;color:"#FFF"}
Rectangle { width: 255;height:125;color:"#FFF"}
Rectangle { width: 255;height:125;color:"#FFF"}
Rectangle { width: 125;height:125;color:"#FFF"}
Rectangle { width: 255;height:125;color:"#FFF"}
Rectangle { width: 125;height:125;color:"#FFF"}
Rectangle { width: 255;height:125;color:"#FFF"}
Rectangle { width: 125;height:125;color:"#FFF"}
Rectangle { width: 255;height:125;color:"#FFF"}
Rectangle { width: 125;height:125;color:"#FFF"}
Rectangle { width: 255;height:125;color:"#FFF"}
Rectangle { width: 125;height:125;color:"#FFF"}
Rectangle { width: 255;height:125;color:"#FFF"}
Rectangle { width: 125;height:125;color:"#FFF"}
Rectangle { width: 125;height:125;color:"#FFF"}
Rectangle { width: 125;height:125;color:"#FFF"}
Rectangle { width: 125;height:125;color:"#FFF"}
Rectangle { width: 125;height:125;color:"#FFF"}
Rectangle { width: 125;height:125;color:"#FFF"}
Rectangle { width: 255;height:125;color:"#FFF"}
Rectangle { width: 125;height:125;color:"#FFF"}
Rectangle { width: 255;height:125;color:"#FFF"}
Rectangle { width: 125;height:125;color:"#FFF"}
}
}
}
@MingcongBai
Copy link

It will be pretty hard to make them in an array of tiles... just imagine.

@wickedpygmy
Copy link

wickedpygmy commented Oct 27, 2016

Qt.WindowFullScreen is from the wrong enum, it is from Qt::WindowStates

Should be using enum QWindow::Visibility.

Qt.WindowFullScreen has a value of 4, which is actually equal to QWindow::Maximized. This explains why it is necessary to also set Qt.FramelessWindowHint flags to get rid of the border.

Instead use QWindow::FullScreen, which has a value of 5. This will take care of full screen and borderless in one go. It can be accessed from QML as:
visibility: Window.FullScreen
after including:
import QtQuick.Window 2.0

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment