我可以用 Qt 编写一个与 Gnome 一起运行的应用程序吗?
我想用Qt为Linux编写一个程序。
我知道 KDE 是用 Qt 编码的,而 Gnome 不是。还可以用 Qt for Gnome 编写程序吗?
I want to write a program for linux with Qt.
I know KDE is coded in Qt and Gnome isn't. Is it still possible to write a program in Qt for Gnome?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您编写 Qt 应用程序,它将在 GNOME 下正常运行,前提是用户安装了 Qt 库(或者,这通常更好,您将它们与您的应用程序一起提供)< /p>
If you write a Qt app, it will run fine under GNOME, provided that the user has the Qt libraries installed (or, and this is often better, you ship them with your app)
Your Qt app will look almost native under GNOME if you make it use QGtkStyle as its widgetstyle (this is done via QApplication::setStyle). This means the app won't look ugly or foreign under GNOME (except for some very small details)
Qt 应用程序在 Gnome 上运行得很好。您只需要安装适当的库。
Qt applications run just fine on Gnome. You just need to install the appropriate libraries.