Evgenii Legotckoi
Nov. 6, 2015, 7:17 p.m.

QML - Lesson 014. GridLayout QML – Positioning of elements

A short note, born out of the question of one of the regular readers of the site. When developing the application interface under QML for positioning objects in the GridLayout is necessary to use the functionality of embedded properties Layout. Such as:

  • Layout.row - indicates the line where the object is located;
  • Layout.column - indicates the column in which the object is located;
  • Layout.rowSpan - indicates how many lines should be stretched object;
  • Layout.columnSpan - indicates how many columns should be stretched object;
  • Layout.minimumWidth - the minimum width of an object in a layer;
  • Layout.minimumHeight - the minimum height of the object in a layer;
  • Layout.preferredWidth - the preferred width of the object in a layer;
  • Layout.preferredHeight - the preferred height of the object in a layer;
  • Layout.maximumWidth - the maximum width of the object in a layer;
  • Layout.maximumHeight - the maximum height of an object in a layer;
  • Layout.fillWidth - filling in width;
  • Layout.fillHeight - filling height;
  • Layout.alignment - alignment layer;

GridLayout properties

Also, for the sake of completeness, I specify the properties GridLayout and what they are responsible:

  • columnSpacing : real - the spacing between the columns (the gap between the objects);
  • columns : int - the number of columns;
  • flow : enumeration - the direction of arrangement of objects in a GridLayout
  • GridLayout.LeftToRight (default) - left to right
  • GridLayout.TopToBottom - top down
  • layoutDirection : enumeration - the direction of transfer of the objects at a given flow
  • Qt.LeftToRight (default) - left to right
  • Qt.RightToLeft - from right to left
  • rowSpacing : real - spaces between lines (gap between the objects);
  • rows : int - number of lines;

If set:

  • flow: GridLayout.TopToBottom
  • layoutDirection: Qt.RightToLeft

So as a result we find that the first element of the string is at the top, and the last line item is at the bottom. In the case of two lines, the first line elements are located on the right.

Word with GridLayout

To demonstrate the elements of positioning in the bed I offer the following code. In which several rectangles will stretch for several GridLayout cell.

  1. import QtQuick 2.5
  2. import QtQuick.Controls 1.4
  3. import QtQuick.Layouts 1.1
  4.  
  5. ApplicationWindow {
  6. visible: true
  7. width: 480
  8. height: 480
  9. title: qsTr("Hello World")
  10.  
  11. GridLayout {
  12. id: grid
  13. anchors.fill: parent
  14.  
  15. rows: 3
  16. columns: 3
  17.  
  18. Rectangle {
  19. color: "red"
  20. Layout.fillHeight: true
  21. Layout.fillWidth: true
  22. Layout.columnSpan: 2
  23. Layout.rowSpan: 1
  24. Layout.row: 1
  25. Layout.column: 2
  26. }
  27.  
  28. Rectangle {
  29. color: "blue"
  30. Layout.fillHeight: true
  31. Layout.fillWidth: true
  32. Layout.columnSpan: 1
  33. Layout.rowSpan: 2
  34. Layout.row: 1
  35. Layout.column: 1
  36. }
  37.  
  38. Rectangle {
  39. color: "green"
  40. Layout.fillHeight: true
  41. Layout.fillWidth: true
  42. Layout.columnSpan: 1
  43. Layout.rowSpan: 2
  44. Layout.row: 2
  45. Layout.column: 3
  46. }
  47.  
  48. Rectangle {
  49. color: "white"
  50. Layout.fillHeight: true
  51. Layout.fillWidth: true
  52. Layout.columnSpan: 1
  53. Layout.rowSpan: 1
  54. Layout.row: 2
  55. Layout.column: 2
  56. }
  57.  
  58. Rectangle {
  59. color: "yellow"
  60. Layout.fillHeight: true
  61. Layout.fillWidth: true
  62. Layout.columnSpan: 2
  63. Layout.rowSpan: 1
  64. Layout.row: 3
  65. Layout.column: 1
  66. }
  67. }
  68. }

Conclusion

The result of this code is shown in the figure. Also, the above arrangement of objects logic applies to other objects Layout .

Do you like it? Share on social networks!

Comments

Only authorized users can post comments.
Please, Log in or Sign up
  • Last comments
  • Evgenii Legotckoi
    March 9, 2025, 9:02 p.m.
    К сожалению, я этого подсказать не могу, поскольку у меня нет необходимости в обходе блокировок и т.д. Поэтому я и не задавался решением этой проблемы. Ну выглядит так, что вам действитель…
  • VP
    March 9, 2025, 4:14 p.m.
    Здравствуйте! Я устанавливал Qt6 из исходников а также Qt Creator по отдельности. Все компоненты, связанные с разработкой для Android, установлены. Кроме одного... Когда пытаюсь скомпилиров…
  • ИМ
    Nov. 22, 2024, 9:51 p.m.
    Добрый вечер Евгений! Я сделал себе авторизацию аналогичную вашей, все работает, кроме возврата к предидущей странице. Редеректит всегда на главную, хотя в логах сервера вижу запросы на правильн…
  • Evgenii Legotckoi
    Oct. 31, 2024, 11:37 p.m.
    Добрый день. Да, можно. Либо через такие же плагины, либо с постобработкой через python библиотеку Beautiful Soup
  • A
    Oct. 19, 2024, 5:19 p.m.
    Подскажите как это запустить? Я не шарю в программировании и кодинге. Скачал и установаил Qt, но куча ошибок выдается и не запустить. А очень надо fb3 переконвертировать в html