-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
make library look nicer, clean up styling a bit as well
- Loading branch information
Showing
20 changed files
with
125 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,6 @@ | |
path = libs/SortFilterProxyModel | ||
url = https://github.com/CasparKielwein/SortFilterProxyModel.git | ||
branch = feature/full_integration_to_qt6 | ||
[submodule "libs/QmlBridgeForMaterialDesignIcons"] | ||
path = libs/QmlBridgeForMaterialDesignIcons | ||
url = [email protected]:mgn-norm/QmlBridgeForMaterialDesignIcons.git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule QmlBridgeForMaterialDesignIcons
added at
d0e3c7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
import QtQuick | ||
|
||
Item { | ||
id: base | ||
property alias image: icon.text | ||
property alias text: label.text | ||
signal clicked() | ||
Text { | ||
id: icon | ||
anchors { | ||
left: parent.left | ||
right: parent.right | ||
top: parent.top | ||
} | ||
font.family: "Material Design Icons" | ||
font.pixelSize: 20 | ||
horizontalAlignment: Text.AlignHCenter | ||
verticalAlignment: Text.AlignVCenter | ||
color: "#F5F5F5" | ||
} | ||
Text { | ||
id: label | ||
anchors { | ||
left: parent.left | ||
right: parent.right | ||
bottom: parent.bottom | ||
} | ||
font.family: "Roboto" | ||
font.pixelSize: 12 | ||
horizontalAlignment: Text.AlignHCenter | ||
color: "#F5F5F5" | ||
} | ||
MouseArea { | ||
anchors.fill: parent | ||
onClicked: base.clicked() | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.