Вопрос

В чем разница между QT для Symbian и Qt для Meego?Я знаю, Qt - это перекрестная платформа.Значит ли это, что если я использую библиотеку из QT, той же библиотека работает на всех устройствах, которые поддерживают Qt (E.g. Symbian, Meego)?

Например:

Qtdesktopservices может запустить веб-браузер.Несмотря на то имя «Desktop» сбивает с толку для мобильных устройств, могу ли я запустить веб-браузер на каждом устройстве, который поддерживает QT?Если я посмотрю на Meego, Meego используется для различных видов устройств E.G.В автомобиле, телевизор, медиафон

Это гарантировано, что каждое устройство имеет веб-браузер на нем?Я так не думаю, и вот почему я спрашиваю.Если браузер гарантирован, какой браузер это?Какие особенности у него есть?Я знаю, что есть WRT, но пользователь здесь заявил, что WRT прекратился.Так что сейчас?

Должен ли я выбрать между Qt 4.7 и Qt Mobility 1.0?

Это было полезно?

Решение

What leinir said - Qt Mobility is a module that implements common features for mobile devices. Qt's API is the same on all platforms, though there are some platform-specific functions (mainly dealing with low-level stuff).

While the API (the interface) is the same, the implementation of course may be different. I suggest looking at the Qt online documentation - the pages linked under "Platform-specific Development"

According to "Platform notes - Symbian", the Symbian port is not complete and lacks some features (e.g. OpenGL support is "planned for a future release", while printing probably never will be supported). I'm pretty sure that the MeeGo/Maemo version supports OpenGL ES, as I've seen a Qt-based application using it (Stellarium on a Nokia N900).

Другие советы

QtMobility is an extra module for Qt, which provides a bunch of extra functionality which is more esoteric than the other 13 or so Qt modules, but functionality which is really useful when you are building applications the way you suggest.

So no, you don't choose between Qt 4.7 and QtMobility 1.0, because you have to use Qt to be able to use the extra module QtMobility :)

The browser will always be whatever is set up as the default browser on the system. So, no, there is no guarantees - for Windows, for example, you might have people using Firefox, Chrome, Internet Explorer 6 and many others. This is the nature of platform integration, i'm afraid :)

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top