Skip to content

Commit

Permalink
Method call parameters cannot be set #1 done
Browse files Browse the repository at this point in the history
  • Loading branch information
Fanda Vacek committed Oct 9, 2023
1 parent 6d61183 commit 8e313cf
Show file tree
Hide file tree
Showing 19 changed files with 477 additions and 29 deletions.
6 changes: 6 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ add_subdirectory(3rdparty/libshv)

qt_add_executable(shvspym
shvspym.qrc
src/version.h
src/main.cpp
src/settings.cpp
src/application.cpp
Expand Down Expand Up @@ -53,6 +54,11 @@ qt_add_qml_module(shvspym
images/plus.svg
images/eye.svg
images/menu.svg
images/copy.svg
images/play.svg
images/params.svg
images/params-some.svg
images/methods.svg

)

Expand Down
64 changes: 64 additions & 0 deletions images/copy.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
61 changes: 61 additions & 0 deletions images/methods.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
68 changes: 68 additions & 0 deletions images/params-some.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
61 changes: 61 additions & 0 deletions images/params.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion images/pencil.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
61 changes: 61 additions & 0 deletions images/play.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 7 additions & 1 deletion qml/BrokerDelegate.qml
Original file line number Diff line number Diff line change
Expand Up @@ -56,5 +56,11 @@ Rectangle {
}
}
}

Rectangle {
anchors.left: parent.left
anchors.right: parent.right
anchors.bottom: parent.bottom
height: 2
color: "lightgray"
}
}
8 changes: 7 additions & 1 deletion qml/Main.qml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,13 @@ ApplicationWindow {
}
}
}

Rectangle {
anchors.right: parent.right
anchors.left: parent.left
anchors.bottom: parent.bottom
height: 1
color: app.settings.delegateColor
}
}
StackView {
id: stackView
Expand Down
Loading

0 comments on commit 8e313cf

Please sign in to comment.