summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkali <kali@leap.se>2021-10-04 12:59:01 +0200
committerkali kaneko (leap communications) <kali@leap.se>2021-10-06 18:38:22 +0200
commit2c13aa8076391d471ae3d434d0410b9c573c986a (patch)
tree756f24ffaae781c8c8619935a25b396718981c62
parent0e356d7f3def84926992a93c61455d5232549b53 (diff)
[ui] workarounds for font in osx
-rw-r--r--gui/components/Footer.qml10
-rw-r--r--gui/components/Locations.qml3
-rw-r--r--gui/components/MainView.qml8
-rw-r--r--gui/components/Splash.qml2
-rw-r--r--gui/components/VPNState.qml2
-rw-r--r--gui/gui.qrc1
-rw-r--r--gui/main.cpp7
-rw-r--r--gui/main.qml13
-rw-r--r--gui/qtquickcontrols2.conf6
-rw-r--r--gui/resources/fonts/Roboto-Bold.ttfbin0 -> 167336 bytes
10 files changed, 45 insertions, 7 deletions
diff --git a/gui/components/Footer.qml b/gui/components/Footer.qml
index 71477b4..11f5114 100644
--- a/gui/components/Footer.qml
+++ b/gui/components/Footer.qml
@@ -11,7 +11,7 @@ ToolBar {
Material.background: Theme.bgColor
Material.foreground: "black"
Material.elevation: 0
- visible: stackView.depth > 1 && ctx !== undefined ? false : true
+ visible: isFooterVisible()
Item {
@@ -186,4 +186,12 @@ ToolBar {
return false
}
}
+
+ function isFooterVisible() {
+ console.debug(stackView.depth)
+ if (stackView.depth > 1) {
+ return false
+ }
+ return true
+ }
}
diff --git a/gui/components/Locations.qml b/gui/components/Locations.qml
index a93700a..097f9fe 100644
--- a/gui/components/Locations.qml
+++ b/gui/components/Locations.qml
@@ -60,6 +60,7 @@ ThemedPage {
id: recommendedLabel
//: Location Selection: label for radio button that selects automatically
text: qsTr("Recommended")
+ font.weight: Font.Bold
font.bold: true
}
WrappedRadioButton {
@@ -203,7 +204,7 @@ ThemedPage {
}
},
State {
- when: ctx && ctx.status == "on"
+ when: ctx != undefined && ctx.status == "on"
PropertyChanges {
target: manualLabel
text: manualSelectionLabel
diff --git a/gui/components/MainView.qml b/gui/components/MainView.qml
index 95bb212..c103565 100644
--- a/gui/components/MainView.qml
+++ b/gui/components/MainView.qml
@@ -130,7 +130,7 @@ Page {
}
font.pixelSize: 14
textFormat: Text.RichText
- text: getLink(ctx.donateURL)
+ text: getLink(ctx)
onLinkActivated: Qt.openUrlExternally(ctx.donateURL)
}
@@ -150,7 +150,11 @@ Page {
onYes: Qt.openUrlExternally(ctx.donateURL)
}
- function getLink(url) {
+ function getLink(ctx) {
+ if (!ctx) {
+ return ""
+ }
+ let url = ctx.donateURL
return "<style>a:link {color:'" + Theme.blue + "'; }</style><a href='#'>" + url + "</a>"
}
diff --git a/gui/components/Splash.qml b/gui/components/Splash.qml
index 625ab18..cf75108 100644
--- a/gui/components/Splash.qml
+++ b/gui/components/Splash.qml
@@ -57,7 +57,7 @@ Page {
if (root.error != "") {
return
}
- if (ctx && ctx.isReady) {
+ if (ctx && ctx.isReady || qmlDebug) {
splashTimer.stop()
loader.source = "MainView.qml"
} else {
diff --git a/gui/components/VPNState.qml b/gui/components/VPNState.qml
index 189fd0b..64a109a 100644
--- a/gui/components/VPNState.qml
+++ b/gui/components/VPNState.qml
@@ -20,7 +20,7 @@ StateGroup {
name: initializing
},
State {
- when: ctx && ctx.status == "off" && startingUI == true
+ when: ctx != undefined && ctx.status == "off" && startingUI == true
PropertyChanges {
target: connectionState
text: qsTr("Connecting")
diff --git a/gui/gui.qrc b/gui/gui.qrc
index 5aeb85b..31082ee 100644
--- a/gui/gui.qrc
+++ b/gui/gui.qrc
@@ -62,6 +62,7 @@
<file alias="poppins-bold.ttf">resources/fonts/Poppins-Light.ttf</file>
<file alias="monserrat-bold.ttf">resources/fonts/Montserrat-SemiBold.ttf</file>
<file alias="roboto.ttf">resources/fonts/Roboto-Regular.ttf</file>
+ <file alias="roboto-bold.ttf">resources/fonts/Roboto-Bold.ttf</file>
<!-- begin, to remove -->
<file>qml/VpnState.qml</file>
diff --git a/gui/main.cpp b/gui/main.cpp
index be1be0a..581aedd 100644
--- a/gui/main.cpp
+++ b/gui/main.cpp
@@ -1,5 +1,6 @@
#include <csignal>
#include <unistd.h>
+#include <QtGui/qfontdatabase.h>
#include <QApplication>
#include <QTimer>
#include <QTranslator>
@@ -55,6 +56,12 @@ int main(int argc, char **argv) {
Backend backend;
+ const int fontId = QFontDatabase::addApplicationFont(":/resources/fonts/Roboto-Regular.ttf");
+ if (fontId == -1)
+ qWarning() << "Failed to add Roboto as app font";
+ else
+ qDebug() << QFontDatabase::applicationFontFamilies(fontId);
+
QApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
QApplication::setApplicationVersion(backend.getVersion());
QApplication app(argc, argv);
diff --git a/gui/main.qml b/gui/main.qml
index c063739..7469620 100644
--- a/gui/main.qml
+++ b/gui/main.qml
@@ -68,7 +68,18 @@ ApplicationWindow {
source: "qrc:/monserrat-bold.ttf"
}
- font.family: lightFont.name
+ FontLoader {
+ id: robotoFont
+ source: "qrc:/roboto.ttf"
+ }
+
+ FontLoader {
+ id: robotoBoldFont
+ source: "qrc:/roboto-bold.ttf"
+ }
+
+ font.family: robotoFont.name
+ font.weight: Font.Light
Loader {
id: loader
diff --git a/gui/qtquickcontrols2.conf b/gui/qtquickcontrols2.conf
index 1e387cc..de2b30f 100644
--- a/gui/qtquickcontrols2.conf
+++ b/gui/qtquickcontrols2.conf
@@ -1,6 +1,12 @@
+[Default]
+Font\Family=Poppins
+
[Controls]
Style=Material
[Material]
Theme=Light
Variant=Dense
+
+[Material\Font]
+Family=Poppins
diff --git a/gui/resources/fonts/Roboto-Bold.ttf b/gui/resources/fonts/Roboto-Bold.ttf
new file mode 100644
index 0000000..3742457
--- /dev/null
+++ b/gui/resources/fonts/Roboto-Bold.ttf
Binary files differ