Bug 477036 - Graphs are shown with tamil fonts
Summary: Graphs are shown with tamil fonts
Status: RESOLVED FIXED
Alias: None
Product: kgraphviewer
Classification: Applications
Component: general (show other bugs)
Version: unspecified
Platform: Manjaro Linux
: NOR normal
Target Milestone: ---
Assignee: Gaël de Chalendar (aka Kleag)
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2023-11-15 10:28 UTC by Angelo Puglisi
Modified: 2024-04-16 09:22 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In: 2.5.0
Sentry Crash Report:


Attachments
kgraphviewer screenshot (495.71 KB, image/png)
2023-11-15 10:28 UTC, Angelo Puglisi
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Angelo Puglisi 2023-11-15 10:28:43 UTC
Created attachment 163179 [details]
kgraphviewer screenshot

SUMMARY
***
NOTE: If you are reporting a crash, please try to attach a backtrace with debug symbols.
See https://community.kde.org/Guidelines_and_HOWTOs/Debugging/How_to_create_useful_crash_reports
***
Whenever I open a dot file, it's rendered with tamil fonts, and I get this in the console output:
```
org.kde.kgraphviewer.lib: Unknown DOT font ' "" '. returning Qt default.
```
If I edit the dot file and add e.g.:
```
node [fontname="notomono"];
edge [fontname="notomono"];
```
then I can properly see it.

This is particularly annoying when working with massif-visualizer, which generates the callgraph on the fly.
STEPS TO REPRODUCE
1. 
2. 
3. 

OBSERVED RESULT


EXPECTED RESULT


SOFTWARE/OS VERSIONS
Windows: 
macOS: 
Linux/KDE Plasma: 
(available in About System)
KDE Plasma Version: 
KDE Frameworks Version: 
Qt Version: 

ADDITIONAL INFORMATION
Comment 1 Angelo Puglisi 2023-11-15 16:17:26 UTC
It works properly with:
```
diff --git a/src/part/dot2qtconsts.cpp b/src/part/dot2qtconsts.cpp
index c600f70..91d7515 100644
--- a/src/part/dot2qtconsts.cpp
+++ b/src/part/dot2qtconsts.cpp
@@ -24,6 +24,7 @@
 
 #include <QColor>
 #include <QDebug>
+#include <qapplication.h>
 
 const Dot2QtConsts Dot2QtConsts::m_componentData;
 
@@ -841,6 +842,9 @@ Dot2QtConsts::Dot2QtConsts()
         i++;
     }
 
+    // Add a default font too
+    m_psFonts[""] = QApplication::font();
+
     uint j = 0;
     while (color_lib[j].name) {
         //     () << "Adding color " << color_lib[j].name;
```
Comment 2 Friedrich W. H. Kossebau 2024-04-16 09:22:53 UTC
Git commit acb5fec4e9614324acdbc4cfce4f387df65bd0f4 by Friedrich W. H. Kossebau.
Committed on 16/04/2024 at 09:16.
Pushed by kossebau into branch 'master'.

Fix bad defaults for fonts, also for colors, shapes & style

The refactoring started in 117f22918f594a046e8e541701a3cd863539cdd0 seems
to have missed out follow-up work to ensure defaults are used where not
set explicitly, as before. e47e5ae6d38c0e16b90714f1887b827a009999d4
later only ensured explicit default font size values exist.
Dot2QtConsts covers many of the defaults indirectly. For QFont though
it was using "" as fort family name, which resulted in random fonts being
picked by Qt.

The implementation now avoids adding explicit attribute instances, but
instead returns default values if not set, for less runtime memory usage.
Related: bug 470523
FIXED-IN: 2.5.0

M  +59   -11   src/part/graphelement.cpp
M  +7    -28   src/part/graphelement.h

https://invent.kde.org/graphics/kgraphviewer/-/commit/acb5fec4e9614324acdbc4cfce4f387df65bd0f4