Re: Dependency problems after PR 1.2 update to extras builder

2010-03-29 Thread Ram Kurvakat
would building QT4.6 apps by linking with libqt4-maemo5* still work ? AFAIK , these libqt4-maemo5* are still being kept for QT4.7 development. Now if that is true, atleast for the QT4.6 apps still in extras-devel we can still upload to the repository and it will work on the device as well. Im

Re: How to use MySQL with Maemo 5?

2010-03-30 Thread Ram Kurvakat
have you tried to install libqt4 mysql plugin ? This should help in case you havent already seen it http://doc.trolltech.com/4.6/sql-driver.html#qmysql http://doc.trolltech.com/4.6/sql-driver.html#qmysql http://doc.trolltech.com/4.6/sql-driver.html#qmysql - Original Message - From:

Re: How to use MySQL with Maemo 5?

2010-03-30 Thread Ram Kurvakat
sorry I didnt read the message below your error :p please ignore my message, will post when I get a chance to see it in detail. I've used sqllite on Linux and its just a matter of installing the plugins required for dev/runtime env. - Original Message - From: Ram Kurvakat Sent: 03/30/10

Re: OT: Cannot select targets - where's the session PID file?

2010-03-30 Thread Ram Kurvakat
log out of all your scratchbox env except one. type sb-menu. select kill all processes in scratch box. then try it :-) - Original Message - From: Christoph Eckert Sent: 03/30/10 10:59 AM To: maemo-developers@maemo.org Subject: OT: Cannot select targets - where's the session PID file? Hi,

Re: Dependency problems after PR 1.2 update to extras builder

2010-03-30 Thread Ram Kurvakat
replying to my own message since it didnt interest anybody :) Ive just been confirmed that this works for now as a temporary workaround for developers using QT4.6 on a PR1.2 SDK and uploading to extras devel/testing. It would still work on the device. - Original Message - From: Ram

Re: madde and Qt State Machine

2010-04-02 Thread Ram Kurvakat
to support QT4.6 in MADDE you could try this for now. http://labs.trolltech.com/blogs/2010/02/15/qt-462-for-maemo-5-released/ - Original Message - From: Ville M. Vainio Sent: 04/02/10 08:49 PM To: ac...@dsic.upv.es Subject: Re: madde and Qt State Machine On Fri, Apr 2, 2010 at

Re: madde and Qt State Machine

2010-04-02 Thread Ram Kurvakat
- Original Message - From: ac...@dsic.upv.es Sent: 04/02/10 08:52 PM To: Ville M. Vainio Subject: Re: madde and Qt State Machine Thank you very much for your aswer, Could I for the moment compile it through the scratch box the actual Maemo SDK? Thanks, A. Cano Quoting Ville M.

Re: PR1.2 SDK for Extras-devel: how to solve?

2010-04-07 Thread Ram Kurvakat
I would like to throw in my 2 pence as well for what its worth. The idea is to give a choice to the developer to choose which SDK the autobuilder needs to use and to which repo the app needs to go to. Providing an option in the debian control file to build against the user specified SDK since

problems uploading to non-free repository

2010-04-20 Thread Ram Kurvakat
hello, Ive seen many bugs related to this issue, which have been marked as solved. for example: https://bugs.maemo.org/show_bug.cgi?id=3354 https://bugs.maemo.org/show_bug.cgi?id=8077 https://bugs.maemo.org/show_bug.cgi?id=4241 Ive been getting this error today while uploading to the non-free

Re: problems uploading to non-free repository

2010-04-21 Thread Ram Kurvakat
thanks a mil Niel ! that did it. -Ram - Original Message - From: Niels Breet Sent: 04/21/10 01:30 PM To: Ram Kurvakat Subject: Re: problems uploading to non-free repository hello, Hi, Ive been getting this error today while uploading to the non-free section Uploading to fremantle

Re: PyQt ForegroundRole

2010-04-29 Thread Ram Kurvakat
Not a 100% sure, but I think this is due to the QMaemo5 style implementation you are not able to do it. Think Ive faced the issue before. Is there a chance you could try with a delegate for your columns, thats worked for me. Implementing the paint(). P.S. i dont use python, I use C++, hence I

Re: Noob question re Qt Application structure

2010-05-07 Thread Ram Kurvakat
just my 2 pence worth. you should perhaps try to make 2 different apps for it. 1 which runs as a daemon and invoked on startup using an upstart http://upstart.ubuntu.com/getting-started.html script. and the other a GUI based app , that can interact with your daemon, via files, sockets, any

RE: Noob question re Qt Application structure

2010-05-07 Thread Ram Kurvakat
will already be using that kind of code. - ianaré sévi 2010/5/7 Ram Kurvakat rkma...@gmx.com: just my 2 pence worth. you should perhaps try to make 2 different apps for it. 1 which runs as a daemon and invoked on startup using an upstart script. and the other a GUI based app , that can

Re: Displaying the information of the MMC card and the phone memory

2010-05-12 Thread Ram Kurvakat
not sure if you are using the QT framework for writing your code. have you considered using the QT mobility framework, its still beta, but seems close to completion/delivery. *for storage device info.* http://doc.qt.nokia.com/qtmobility-1.0/qsystemstorageinfo.html

Re: upstart and dbus

2010-05-12 Thread Ram Kurvakat
I cant provide a full solution now but to use the session bus you will need the session bus address I think which changes every restart. Are you doing that in your upstart script already ? ( setting the dbus session address something like here /tmp/session_bus_address.user ) -krk969 -

Re: Qt question: How to automatically enable numeric input mode for a field?

2010-05-13 Thread Ram Kurvakat
use input method hints - Original Message - From: Sudheer K. Sent: 05/13/10 11:04 PM To: Maemo Dev Mailing List Subject: Qt question: How to automatically enable numeric input mode for a field? Hi, I want to create a phone number field (QLineEdit) in my configuration widget. User

Re: Qt question: How to automatically enable numeric input mode for a field?

2010-05-13 Thread Ram Kurvakat
sorry my previous message was sent before I finished typing... anyways use input method hints.. http://doc.trolltech.com/4.6/qt.html#InputMethodHint-enum http://doc.trolltech.com/4.6/qt.html#InputMethodHint-enum something like this - Original Message - From: Sudheer K. Sent:

Re: Qt question: How to automatically enable numeric input mode for a field?

2010-05-13 Thread Ram Kurvakat
I dont know whats wrong with my mail client now, a control C just sends the message so sorry my previous message(s) were sent before I finished typing... anyways use input method hints.. http://doc.trolltech.com/4.6/qt.html#InputMethodHint-enum

RE: Qt question: How to automatically enable numeric input mode for a field?

2010-05-13 Thread Ram Kurvakat
have you tried this - Original Message - From: Sudheer K. Sent: 05/13/10 11:54 PM To: rkma...@gmx.com, Maemo Dev Mailing List Subject: RE: Qt question: How to automatically enable numeric input mode for a field? - Date:

RE: Qt question: How to automatically enable numeric input mode for a field?

2010-05-13 Thread Ram Kurvakat
have you tried this hint ? ( this worked for the spin box, I could use the hardware keyboard without pressing Fn ) Qt::ImhDigitsOnly Qt::ImhFormattedNumbersOnly didnt work for me , for the spin box , I needed a dot (.) , since I was using a double spinbox. I'll be raising a bug for that,

Re: Stats at Maemo repository

2010-05-19 Thread Ram Kurvakat
Hi Adrian, have you looked here(http://repository.maemo.org/extras/dists/fremantle/install/) to see the packages ( apps + libs ) ? The numbers there seem to be slightly lesser than the numbers you originally posted for extras-free. So just wanted to check with you how you get those numbers,

Re: maemo.org Packages interface maintenance break now.

2010-05-26 Thread Ram Kurvakat
Niels, will the extras-devel/testing repos for the non-free section also be updated to point to the right SDK. at the moment I think they still point to the old PR1.1 Thanks and Regards krk969 - Original Message - From: Niels Breet Sent: 05/25/10 10:18 PM To:

QT4.6 with PR1.2 has introduced issues

2010-05-27 Thread Ram Kurvakat
Hello, I have seen a few issues with the QT 4.6 version released with PR1.2. I've been using QT4.6 since PR1.1 and there seems to be these annoying changes since. I've provided some links to marked images to explain the issue so its easier to comprehend. Issue1 : http://bit.ly/cYPtRW

Re: QT4.6 with PR1.2 has introduced issues

2010-06-01 Thread Ram Kurvakat
Daniil, Robin or anyone did you get a chance to look at this one please ? thanks for your time, cheers krk969 - Original Message - From: Ram Kurvakat Sent: 05/29/10 10:32 AM To: Maemo-developers, virot...@viroteck.net, Daniil Ivanov Subject: Re: QT4.6 with PR1.2 has introduced issues

Re: QT4.6 with PR1.2 has introduced issues

2010-06-01 Thread Ram Kurvakat
free it? This is an example only to show the issue. Thanks, Daniil. On Tue, Jun 1, 2010 at 10:59 AM, Ram Kurvakat rkma...@gmx.com wrote: Daniil, Robin or anyone did you get a chance to look at this one please ? thanks for your time, cheers krk969 - Original

Re: QT4.6 with PR1.2 has introduced issues

2010-06-01 Thread Ram Kurvakat
- Original Message - From: Daniil Ivanov Sent: 06/01/10 10:44 AM To: Ram Kurvakat Subject: Re: QT4.6 with PR1.2 has introduced issues On Tue, Jun 1, 2010 at 12:00 PM, Ram Kurvakat rkma...@gmx.com wrote: -- Sent from my Nokia N900 - Original message - Hi Ram! Could you

Re: QT4.6 with PR1.2 has introduced issues

2010-06-01 Thread Ram Kurvakat
as the heap is cleared anyways after the return and app exits in the example ,is it not ?It would have been necessary had this been allocated in some custom class. cheerskrk969 - Original Message - From: Daniil Ivanov Sent: 06/01/10 11:34 AM To: Ram Kurvakat Subject: Re: QT4.6 with PR1.2 has

Q_WS_MAEMO_5 directive

2010-06-02 Thread Ram Kurvakat
Hi, what preprocessor directives need to be used for Maemo5 specific QT code ? is it still Q_WS_MAEMO_5 or has it changed in PR1.2 QT4.6 release ? I remember in QT4.5 it was Q_WS_HILDON. Thanks. - krk969 ___ maemo-developers mailing list

non-free section pointing to PR1.0 repos.

2010-06-02 Thread Ram Kurvakat
Niels, Ive sent you a mail about this already, please ignore it posted it here again so it helps everybody. the non-free section seems to be pointing to PR1.0 repos still. Is this known and somebody already working on it ? Perhaps Ive missed to see a mail or two. Not able to promote anything on

Re: non-free section pointing to PR1.0 repos.

2010-06-03 Thread Ram Kurvakat
just FYI: Niels has just corrected this issue. It should be pointing to the PR1.2 repos now. Thanks Niels. Regards -krk969 (Ram) - Original Message - From: Robin Burchell Sent: 06/02/10 11:47 PM To: Ram Kurvakat Subject: Re: non-free section pointing to PR1.0 repos. Thanks

RE: How to get kinetic scrolling working using Qt creator

2010-06-06 Thread Ram Kurvakat
just a quick example that would work, see if it helps. imageLabel = new QLabel; QImage image(someimagefile); imageLabel-setPixmap(QPixmap::fromImage(image)); _scrollForMapPage = new QScrollArea; _scrollForMapPage-setWidget(imageLabel); _mapWindow = new QMainWindow ( this );

Re: How to force landscape mode in Qt 4.6.2?

2010-06-08 Thread Ram Kurvakat
one way would be to disable the accelerometer, saves battery as well if its not needed. - Original Message - From: Sascha Mäkelä Sent: 06/08/10 09:37 AM To: maemo-developers Subject: How to force landscape mode in Qt 4.6.2? Hi, In my app I have

Re: How to force landscape mode in Qt 4.6.2?

2010-06-08 Thread Ram Kurvakat
sorry my browser acts funny sometimes so my previous message was incomplete... one way would be to disable the accelerometer, saves battery as well if its not needed. QDBusConnection::systemBus().call(QDBusMessage::createMethodCall(MCE_SERVICE, MCE_REQUEST_PATH, MCE_REQUEST_IF,

Re: How to force landscape mode in Qt 4.6.2?

2010-06-08 Thread Ram Kurvakat
also I think you need to setAttribute(Qt::WA_Maemo5AutoOrientation, true) on a QMainWindow to set that to landscape afterwards. Haven't checked if its a widget/application attribute also. -krk969 - Original Message - From: Ram Kurvakat Sent: 06/08/10 12:10 PM To: Sascha Mäkelä, maemo

Re: QtSql and Debian package probelm

2010-06-10 Thread Ram Kurvakat
you need libqt4-sql and probably libqt4-sql-plugin ( plugin = sqlite , if you are using sqlite plugin ) - Original Message - From: Sascha Mäkelä Sent: 06/10/10 01:01 PM To: maemo-developers Subject: QtSql and Debian package probelm Hi, I just made a Debian package of my app. I'm using

Re: extras-devel .install files issue

2010-06-10 Thread Ram Kurvakat
repsit ory and it's fremantle. Btw extras has the fremantle-1.2 rep too. Cheers, Antonio [1] http://repository.maemo.org/extras-devel/pool/ On Thu, Jun 10, 2010 at 1:47 PM, Ram Kurvakat rkma...@gmx.com wrote: is it dist = fremantle or dist = fremantle-1.2 ? I thought the latter