Forum: Development
2010-10-28, 23:33
|
Replies: 12
Views: 5,403
Re: N900 QMediaPlayer
See my pro file (http://code.google.com/p/qgvdial/source/browse/trunk/src/src.pro#173) line 173 onwards.
"target" is a tag for your executable binary.
Any additional files that you want installed...
|
Forum: Development
2010-10-28, 23:05
|
Replies: 12
Views: 5,403
Re: N900 QMediaPlayer
Where is ballhit.wav with respect to your executable binary?
Is it in the same directory? Then try "./ballhit.wav"
Use QFileInfo::exists to find out if your executable binary exists where you...
|
Forum: Development
2010-10-28, 21:39
|
Replies: 12
Views: 5,403
Re: N900 QMediaPlayer
I had this problem, and the only way I could fix it was to do the following:
QFileInfo info (path);
if (!info.exists ()) {
// error out
}
QString strFullname = info.absoluteFilePath ();...
|
Forum: Development
2010-10-28, 21:24
|
Replies: 12
Views: 5,403
Re: N900 QMediaPlayer
have you tryed adding it to the qrc file. im no expert but i do that with all my graphics befor i load them. This i think imbeds them in the executable tho which means its not optifyed. so before...
|
Forum: Development
2010-06-02, 20:17
|
Replies: 6
Views: 2,328
|
Forum: Development
2010-06-02, 20:12
|
Replies: 4
Views: 3,464
Re: How to detect maemo5 in QtCreator
You are looking for this, perhaps.
This works with Qt 4.6 (PR 1.2):
#if defined(Q_WS_MAEMO_5)
// stuff...
#endif
And this one with Qt 4.5 (PR 1.1):
|
Forum: Development
2010-06-02, 19:46
|
Replies: 6
Views: 2,328
Re: QtCreator PR 1.2 Debugging helper...
Hi,
it seems to be related to this thread (http://talk.maemo.org/showthread.php?t=53327). Even though it should have been fixed (http://talk.maemo.org/showpost.php?p=673123&postcount=7) in the...
|
Forum: Development
2010-03-03, 10:34
|
Replies: 7
Views: 4,302
|
Forum: Development
2010-03-02, 09:30
|
Replies: 5
Views: 3,519
Re: Network type detection
Ok, here we go. Please note that this is code I wrote on the fly by copying and pasting parts of my own code. It compiles fine but I haven't tested it.
You can also figure out whether you're...
|
Forum: Development
2010-02-26, 18:56
|
Replies: 7
Views: 4,302
|
Forum: Development
2010-02-17, 11:09
|
Replies: 1
Views: 1,856
Re: Start Default Application (QT4)
I have found the solution with DBus
from terminal execute:
dbus-send --print-reply --type=method_call --dest=com.nokia.osso_addressbook /com/nokia/osso_addressbook...
|
Forum: Development
2010-02-17, 06:48
|
Replies: 5
Views: 6,598
Re: Accessing GPS via Qt
These are the version numbers for different versions of qt-mobility, but all for Maemo 5.
Daniel
|
Forum: Maemo 5 / Fremantle
2010-02-16, 17:22
|
Replies: 1,455
Views: 507,601
|
Forum: Development
2010-02-15, 05:40
|
Replies: 3
Views: 2,898
|
Forum: Development
2010-02-12, 20:35
|
Replies: 3
Views: 2,448
|
Forum: Development
2010-02-05, 22:43
|
Replies: 7
Views: 2,126
Posted By
torshind
|
Forum: Development
2010-02-04, 23:06
|
Replies: 7
Views: 2,126
Posted By
torshind
|
Forum: Development
2010-02-03, 19:23
|
Replies: 7
Views: 2,647
Re: QMaemo5InformationBox Text Color
I noticed this bug myself, but forgot to report it because I was in the middle of something. Done now, you can track it here: http://bugreports.qt.nokia.com/browse/QTBUG-7887
|
Forum: Development
2010-02-03, 14:39
|
Replies: 7
Views: 2,647
|
Forum: Development
2010-02-03, 13:53
|
Replies: 7
Views: 2,647
Re: QMaemo5InformationBox Text Color
Hi,
it might be that it is because you are using another theme? Or it inherits the font-color from the parent. An easy solution would be to call the banner like:
...
|
Forum: Development
2010-01-27, 14:54
|
Replies: 4
Views: 2,564
|
Forum: Development
2010-01-27, 06:35
|
Replies: 1
Views: 1,617
Re: Qmake is gone when following Qt4hildon guide
The reason why qmake doesn't run when you type just 'qmake' is because with 4.6 it is installed in /opt/qt4-maemo5/bin/qmake which is not in PATH environment variable. So you can either add the...
|
Forum: Development
2010-01-19, 09:02
|
Replies: 34
Views: 13,858
Re: Packaging a Qt App to Deploy With It's Icon
Here is an example (https://garage.maemo.org/plugins/scmsvn/viewcvs.php/trunk/debian/postinst?root=ecoach&view=markup). Line 6 does the trick. But be aware that there is a bug in the platform itself,...
|
Forum: Development
2010-01-18, 14:54
|
Replies: 34
Views: 13,858
Re: Packaging a Qt App to Deploy With It's Icon
OK, Here is (hopefully) a step by step guide how to take a (simple) Qt app and package and deploye it with Icon using Madde.
The project I have is simple, 1 window called mainwindow.
Steps:
...
|
Forum: Development
2010-01-18, 01:26
|
Replies: 34
Views: 13,858
|