已经看到 GTK 具有针对不同语言偏好的绑定 - C、C++、Python。
它有 Fortran 的绑定吗?曾经遇到过gtk-fortran library
,但不知道它是GTK的一部分还是一个单独的库。它是否与 GTK 版本 (GTK-4) 兼容https://www.gtk.org/
?
已经看到 GTK 具有针对不同语言偏好的绑定 - C、C++、Python。
它有 Fortran 的绑定吗?曾经遇到过gtk-fortran library
,但不知道它是GTK的一部分还是一个单独的库。它是否与 GTK 版本 (GTK-4) 兼容https://www.gtk.org/
?
我正在尝试使用 GTK4 编译 C GUI 应用程序。我之前在这里被告知Ubuntu 21.04 和 21.10 都将具有 GTK3 和 GTK4。但是,当我安装 Ubuntu 21.04 时,只有 GTK3 存在。然后我进行了 dist-upgrade 到 21.10,发现 GTK 的两个版本都是原生的:
user@user: dpkg -l libgtk* | grep -e '^i' | grep -e 'libgtk-*[0-9]'
ii libgtk-3-0:amd64 3.24.30-1ubuntu1 amd64 GTK graphical user interface library
ii libgtk-3-bin 3.24.30-1ubuntu1 amd64 programs for the GTK graphical user interface library
ii libgtk-3-common 3.24.30-1ubuntu1 all common files for the GTK graphical user interface library
ii libgtk-3-dev:amd64 3.24.30-1ubuntu1 amd64 development files for the GTK library
ii libgtk-3-doc 3.24.30-1ubuntu1 all documentation for the GTK graphical user interface library
ii libgtk-4-1:amd64 4.4.0+ds1-5 amd64 GTK graphical user interface library
ii libgtk-4-bin 4.4.0+ds1-5 amd64 programs for the GTK graphical user interface library
ii libgtk-4-common 4.4.0+ds1-5 all common files for the GTK graphical user interface library
ii libgtk2.0-0:amd64 2.24.33-2ubuntu1 amd64 GTK graphical user interface library - old version
ii libgtk2.0-bin 2.24.33-2ubuntu1 amd64 programs for the GTK graphical user interface library
ii libgtk2.0-common 2.24.33-2ubuntu1 all common files for the GTK graphical user interface library
ii libgtk3-perl 0.038-1 all Perl bindings for the GTK+ graphical user interface library
只需仔细检查 Ubuntu 的版本即可:
user@user: lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 21.10
Release: 21.10
Codename: impish
GTK页面说使用以下代码来编译 GTK4 应用程序pkg-config
:
gcc $( pkg-config --cflags gtk4 ) -o example-0 example-0.c $( pkg-config --libs gtk4 )
这与以前的 GTK 版本非常相似。对于 GTK3,它是:
gcc $( pkg-config --cflags gtk+-3.0 ) -o example-0 example-0.c $( pkg-config --libs gtk+-3.0 )
但是,尝试使用 GTK4 编译程序会导致:
user@user: make
Package gtk4 was not found in the pkg-config search path.
Perhaps you should add the directory containing `gtk4.pc'
to the PKG_CONFIG_PATH environment variable
No package 'gtk4' found
所以然后基于here我跑了:
user@user: pkg-config --variable pc_path pkg-config
/usr/local/lib/x86_64-linux-gnu/pkgconfig:/usr/local/lib/pkgconfig:/usr/local/share/pkgconfig:/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/lib/pkgconfig:/usr/share/pkgconfig
搜索所有这些路径,我只找到与 GTK 相关的 .pc 文件,/usr/lib/x86_64-linux-gnu/pkgconfig
我没有找到任何与 GTK4 相关的内容。我确实在gtk+-3.0.pc
那里找到。所以我的问题是,如果 GTK4 是 Ubuntu 21.10 原生的,为什么会丢失 pkg-config 文件?我从哪里获得它们以便我可以使用 pkg-config 进行编译?
旁白:我没有足够的声誉来创建gtk4
标签。有足够声誉的人可以这样做吗?
我不确定 Ask Ubuntu 是否适合回答这个问题,或者我是否应该在https://discourse.ubuntu.com/上问这个问题,但我期待下一个 LTS 版本并希望它包含GTK4。我开发了 GTK 应用程序,在 GTK 3.22.30(Ubuntu 18.04 的最高版本)中存在一个错误,其中 GtkProgressBar 上的脉冲无法正常工作。这后来在适用于 Ubuntu 20.04 的 GTK 3.24 中进行了修补,但我不想将客户计算机从 Ubuntu 16.04 更新到 Ubuntu 20.04,然后当我必须将所有内容从 GTK3 迁移到 GTK4 时不可避免地再次更新。我知道 Ubuntu 22.04 将拥有 GNOME 40 桌面,但我还没有看到任何关于 GTK4 的任何东西。如果有人对此有任何更新,将不胜感激。谢谢!
编辑:关于 GTK4 的可用性,我没有问这个问题。它更多地用于 Ubuntu 本机使用的 GTK 版本(可通过 apt-get upgrade 获得)。例如,可用于不同 LTS 版本的 GTK 的最高版本:
Ubuntu 16.04 LTS -> GTK 3.20.8
Ubuntu 18.04 LTS -> GTK 3.22.30
Ubuntu 20.04 LTS -> GTK 3.24.20
我在 Ubuntu 20.04.2 LTS 上。
当我想在终端中打开 Jupyter-Notebook 时,会打开电报桌面应用程序。
Jupyter-Notebook 实际上是在后台打开的。所以我可以打开浏览器并使用它。
这是输出:
(geospatial) siavash@siavash-fra:~$ jupyter-notebook
[I 16:59:52.522 NotebookApp] Serving notebooks from local directory: /home/siavash
[I 16:59:52.522 NotebookApp] The Jupyter Notebook is running at:
[I 16:59:52.522 NotebookApp] http://localhost:8888/?token=192817dbf13703bc25bbd1f348df5e9c1c7c9275d579aef3
[I 16:59:52.522 NotebookApp] Use Control-C to stop this server and shut down all kernels (twice to skip confirmation).
[C 16:59:52.526 NotebookApp]
To access the notebook, open this file in a browser:
file:///home/siavash/.local/share/jupyter/runtime/nbserver-5326-open.html
Or copy and paste one of these URLs:
http://localhost:8888/?token=192817dbf13703bc25bbd1f348df5e9c1c7c9275d579aef3
(telegram-desktop:5339): lib_base-WARNING **: 16:59:53.204: Unfortunately, GTK integration conflicts with qgtk2 platformtheme and style. Therefore, QT_QPA_PLATFORMTHEME and QT_STYLE_OVERRIDE will be unset.
lib_base-Message: 16:59:53.204: This can be ignored by setting DESKTOP_APP_I_KNOW_ABOUT_GTK_INCOMPATIBILITY environment variable to any value, however, if qgtk2 theme or style is used, this will lead to a crash.
lib_base-Message: 16:59:53.204: GTK integration can be disabled by setting DESKTOP_APP_DISABLE_GTK_INTEGRATION to any value. Keep in mind that this will lead to some features being unavailable.
Gtk-Message: 16:59:53.412: Failed to load module "canberra-gtk-module"
Gtk-Message: 16:59:53.413: Failed to load module "canberra-gtk-module"
[ALSOFT] (EE) Failed to set real-time priority for thread: Operation not permitted (1)
我也看过这个类似的问题,但它没有回答我的问题。
启动 VM 时qemu-system-x86_64 (...) -display gtk
产生错误Display 'gtk' not available
。这是一个标准的桌面安装(即不修改 qemu 版本)。
如何让 QEMU 在 GTK 窗口中启动 VM?
当 Qt 应用程序(KeePassXC、AntiMicroX)自动启动(通过自动启动)时,不会应用 GTK 主题。
apt
包安装的(我知道快照主题问题)。20.04
,我使用 Yaru dark gtk 主题。qt5-style-plugins
apt 包(及其所有依赖项)/etc/environment
:QT_QPA_PLATFORMTHEME=gtk2
额外的摆弄表明,在冷启动时,主题永远不会被正确应用,但是,在重新启动时,它有时确实有效。
如何确保正确使用深色 gtk 应用程序主题?
我会假设当自动启动发生时,某些设置没有加载,因此会损坏。这些应用程序是否需要等待某种“服务” ?
我应该尝试增加延迟吗?
dpkg -s libgtk-3-0|grep '^Version'
说Version: 3.22.30-1ubuntu4
我现在必须做什么才能让 pspp 找到 gtk 4?我可以以某种方式在 sudo ./configure 命令中明确声明吗?
更新 - 不知道它是否有帮助......
我正在尝试安装 gtk+3.4(与 gtksource 有什么区别?)
然后发出find /usr/ -iname "*glib*.pc"
它报告说:没有 glib 3 .....
/usr/local/lib/x86_64-linux-gnu/pkgconfig/glib-2.0.pc
/usr/lib/x86_64-linux-gnu/pkgconfig/fso-glib-1.0.pc
/usr/lib/x86_64-linux-gnu/pkgconfig/libpulse-mainloop-glib.pc
/usr/lib/x86_64-linux-gnu/pkgconfig/glib-2.0.pc
/usr/lib/pkgconfig/glib-sharp-3.0.pc
/usr/lib/pkgconfig/glib-sharp-2.0.pc
注意:
elias@eliasc:$ echo $LD_LIBRARY_PATH
/usr/local/lib:/usr/local/lib/:/usr/lib/:/usr/lib64/
elias@eliasc:$ echo $PKG_CONFIG_PATH
/usr/local/lib/pkgconfig
请注意,对于 gtk+-3.4.2:
elias@eliasc:$ sudo ./configure --prefix=/usr --sysconfdir=/etc
*** 'pkg-config --modversion glib-2.0' returned 2.64.0, but GLIB (2.56.4)
*** was found! If pkg-config was correct, then it is best
*** to remove the old version of GLib. You may also be able to fix the error
*** by modifying your LD_LIBRARY_PATH enviroment variable, or by editing
*** /etc/ld.so.conf. Make sure you have run ldconfig if that is
*** required on your system.
*** If pkg-config was wrong, set the environment variable PKG_CONFIG_PATH
*** to point to the correct configuration files
no
configure: error:
*** GLIB 2.32.0 or better is required. The latest version of
*** GLIB is always available from ftp://ftp.gtk.org/pub/gtk/.
请注意,它已成功从源代码安装 gtksourceview-4.0.0(对于 PSPP v1.4)和从源代码成功安装 glib-2.64.4(对于 gtk+-3.4.2),但它们似乎也没有被“发现”尊重需要它们的应用程序。
注意...
通过从软件和更新中选择,第一个选项卡中的源...并通过运行“sudo apt-get build-dep pspp”安装 libgtksourceview-3.0-dev...。
然后...为 pspp v1.4 运行 sudo ./configure。正在工作中。它已安装成功!