Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#54-Subheader component #61

Merged
merged 21 commits into from
Feb 2, 2024
Merged
Show file tree
Hide file tree
Changes from 8 commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
a554623
#54-Subheader-Component creation
tGiech22 Jan 25, 2024
d7816ac
#54-Subheader-Component saving changes and cleaning branch
tGiech22 Jan 26, 2024
075b28a
Merge branch 'Subheader-Component' of https://github.com/Northeastern…
tGiech22 Jan 26, 2024
d73a1e5
#54-Subheader-Component
tGiech22 Jan 26, 2024
69789e3
#54 changed color of ValueText
tGiech22 Jan 30, 2024
2a62138
#54 reverting ValueText back to original form
tGiech22 Jan 30, 2024
7d3e154
removed NERO.qmlproject.qtds file
tGiech22 Jan 30, 2024
92e7db2
#54 reverting change to CMakeLists
tGiech22 Jan 30, 2024
a55518d
Reverting back to original commit
tGiech22 Jan 31, 2024
0a78fa4
#54 changing Label Text color
tGiech22 Jan 31, 2024
e108ca4
Reverting changes back to original
tGiech22 Jan 31, 2024
f7eb8d3
Revert "Reverting back to original commit"
tGiech22 Jan 31, 2024
9d1412b
Revert "#54 reverting change to CMakeLists"
tGiech22 Jan 31, 2024
89b5ff4
Revert "removed NERO.qmlproject.qtds file"
tGiech22 Jan 31, 2024
45d3e0a
Revert "#54 reverting ValueText back to original form"
tGiech22 Jan 31, 2024
8266fbc
Revert "#54 changed color of ValueText"
tGiech22 Jan 31, 2024
c434e2b
Revert "#54-Subheader-Component"
tGiech22 Jan 31, 2024
14ba575
Revert "#54-Subheader-Component saving changes and cleaning branch"
tGiech22 Jan 31, 2024
f292267
Revert "#54-Subheader-Component creation"
tGiech22 Jan 31, 2024
d752f0e
#54 changing color of LabelText
tGiech22 Jan 31, 2024
dcd55a9
#54 forgot the hashtags for the color
tGiech22 Feb 1, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
114 changes: 0 additions & 114 deletions NERODesign/NERO.qmlproject.qtds

This file was deleted.

2 changes: 1 addition & 1 deletion NERODesign/content/LabelText.qml
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ import QtQuick.Controls 2.15
Text {
font.family: webFont.name
font.pixelSize: 24
color: "white"
color: "BFBFBF"
}
2 changes: 0 additions & 2 deletions NERODevelopment/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -85,5 +85,3 @@ install(TARGETS NEROApp
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
)

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

undo changes


26 changes: 26 additions & 0 deletions NERODevelopment/content/SubheaderComponent.qml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
import QtQuick 2.15
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

delete entire file

import QtQuick.Controls 2.15

Item {
width: 200
height: 40
property string InputText: "CHARGE STATE"
Peyton-McKee marked this conversation as resolved.
Show resolved Hide resolved
property FontLoader applicationFont: FontLoader {
Peyton-McKee marked this conversation as resolved.
Show resolved Hide resolved
source: "Roboto-Black.ttf"
}

Text {
id: text1
x: 0
Peyton-McKee marked this conversation as resolved.
Show resolved Hide resolved
y: 0
width: parent.width
height: parent.height
color: "#bfbfbf"
text: InputText
font.pixelSize: 24
font.family: applicationFont
font.bold: true
}


}
Loading