From 866cbf13a375cd4b3bb5e003d97cfc0f5c68e79a Mon Sep 17 00:00:00 2001 From: anatasof wirapraja Date: Sat, 18 Mar 2023 11:31:40 +0700 Subject: add courseGridFilterbar.ui.qml --- CourseGridFilterbar.ui.qml | 71 ++++++++++++++++++++++++++++++++++++++++++ Material/svg/filled/search.svg | 1 + 2 files changed, 72 insertions(+) create mode 100644 CourseGridFilterbar.ui.qml create mode 100644 Material/svg/filled/search.svg diff --git a/CourseGridFilterbar.ui.qml b/CourseGridFilterbar.ui.qml new file mode 100644 index 0000000..6531261 --- /dev/null +++ b/CourseGridFilterbar.ui.qml @@ -0,0 +1,71 @@ +import QtQuick 2.15 +import QtQuick.Controls 2.15 +import QtQuick.Layouts 1.15 + +Rectangle { + id: bgLightBorder + color: "#f5f7f9" + height: filterBarControl.height + width: filterBarControl.width + Layout.maximumHeight: filterBarControl.height + radius: 8 + border.color: "#33000000" + GridLayout { + id: filterBarControl + anchors.fill: parent + rows: 6 + columns: 6 + rowSpacing: 16 + columnSpacing: 16 + flow: GridLayout.LeftToRight + Layout.fillWidth: true + TextField { + id: keywordInput + Layout.fillWidth: true + font.family: "Roboto" + font.pointSize: 16 + Layout.bottomMargin: 24 + Layout.topMargin: 24 + Layout.leftMargin: 24 + placeholderText: "Enter keyword" + } + + ComboBox { + id: categories + Layout.fillWidth: true + font.pointSize: 16 + font.family: "Roboto" + displayText: "Categories" + } + ComboBox { + id: priceLevel + Layout.fillWidth: true + font.pointSize: 16 + font.family: "Roboto" + displayText: "Price level" + } + ComboBox { + id: skillLevel + Layout.fillWidth: true + font.pointSize: 16 + font.family: "Roboto" + displayText: "Skill level" + } + ComboBox { + id: language + Layout.fillWidth: true + font.pointSize: 16 + font.family: "Roboto" + displayText: "Languange" + } + + Button { + id: searchButton + Layout.fillWidth: true + icon.color: "#ffffff" + icon.source: "Material/svg/filled/search.svg" + Layout.rightMargin: 24 + display: AbstractButton.IconOnly + } + } +} diff --git a/Material/svg/filled/search.svg b/Material/svg/filled/search.svg new file mode 100644 index 0000000..fa75017 --- /dev/null +++ b/Material/svg/filled/search.svg @@ -0,0 +1 @@ + \ No newline at end of file -- cgit v1.2.3