I still have to try myself but this is the link I mentioned before:
"http://maemo.org/community/maemo-developers/keeping_backlight_on/":http://maemo.org/community/maemo-developers/keeping_backlight_on/
I would recommend trying KDSoap, which we (KDAB) just released it. See http://www.kdab.com/products/kd-soap for more details.
It does include a code generator in order to generate a C++ class from a WSDL file, and is a much more complete solution than Qt Soap: support for sync and async calls, support for RPC and document types of communication, etc.
KDSoap is available under the GPL license from ftp://ftp.kdab.com/pub/kdsoap (for opensource applications and for evaluation purposes), and under a commercial license from http://www.kdab.com/products/license-prices
[quote author="teukkam" date="1290419378"]there are dependencies to precompiled Windows libraries that are closed-source only.[/quote]
What do you mean: "precompiled Windows libraries"? Is it Windows system libraries from Microsoft or Nokia closed-source libraries?
In other words: is it possible even theoretically to port this code to Linux by community efforts? Or it may be done only by Nokia because of closed-source modules?
There is an Auto Detected path Qt in Path which is not found by the creator. However, the options doesn't allow me to modify it. I tried adding a new manual path pointing to Qt SDK but still the project doesn't show any option to set it.
Ok,
as far as I can see, the QAudioEndpointSelector class is used for this and the plugins (directshow, gstreamer, symbian) have to inherit this class and implement the features for the underlying audio system. But unfortunately only in symbian and directshow (see ../qt-mobility-opensource-src-1.1.0/plugins/multimedia/...) exists the classes S60MediaPlayerAudioEndpointSelector and respectively DirectShowAudioEndpointControl but not for gstreamer. So the question is now (are there the some of the writers here?): will it be implemented for gstreamer so I can use this under linux and when?
kind regards!
Seems that SDK is available at http://dl.openhandhelds.org/cgi-bin/caanoo.cgi?0,0,0,0,17,477 (from your link). So, the task is to install SDK and try to compile Qt :)
Please, drop here some message about results.
Good Luck!
Keys are hard-coded in QTreeview::keyPressEvent() and QAbstractItemView::keyPressEvent().
So, you should use event filter or re-implement keyPressEvent() in your subclass.
This causes a little bit of flickering, but...
@
<ADirtyHack>
call showFullScreen() for your dialog
immediately after, resize the dialog to whatever size you want it to have
</ADirtyHack>
@
For auto-capitalization there seems to be some indication that there will be new input hints for it in Qt4.8.0:
http://bugreports.qt.nokia.com/browse/QTBUG-6980
http://bugreports.qt.nokia.com/browse/QTBUG-6850
in "MobilePaint":http://www.forum.nokia.com/info/sw.nokia.com/id/25765c1e-a7e8-4ad4-9066-c7cf453b4ec1/Qt_QMobilePaint_Example_v1_2_en.zip.html example they use native symbian functions. Here is a part of main.cpp:
@
// Lock S60 orientation
#ifdef Q_OS_SYMBIAN
#include <eikenv.h>
#include <eikappui.h>
#include <aknenv.h>
#include <aknappui.h>
#endif
...
// Lock S60 orientation
#ifdef Q_OS_SYMBIAN
CAknAppUi* appUi = dynamic_cast<CAknAppUi*> (CEikonEnv::Static()->AppUi());
TRAPD(error,
if (appUi) {
appUi->SetOrientationL(CAknAppUi::EAppUiOrientationLandscape);
}
);
#endif@
this libraries also must be mentioned in pro file
@ LIBS += -lcone -leikcore -lavkon@
P.S. ok, it's late answer, but maybe someone else will find this thread. Really, I don't know why nokia guys haven't created any tutorial for such things
The version on the N900 is 1.0.0 I think, and yeah I noticed that the liblocation wrapper wasn't converting from kph in that version. Any chance of a qt mobility update for the N900? Thanks, Tom.