Showing results 1 to 25 of 42 @ 0.36 seconds. Search: Posts Made By: shep
Forum: Development 2011-06-06, 13:49
Replies: 3
Views: 1,780
Posted By Saturn
Re: .ssh key for Qt Uploader

Hi,

did you follow the setup mentioned in the wiki page?
http://wiki.maemo.org/Uploading_to_Extras-devel#Setup
Forum: MeeGo / Harmattan 2010-09-26, 12:28
Replies: 154
Views: 72,837
Posted By fahadj2003
Tutorial for meego 1.1

Anyone interested, meego with call support has been released but is still LIMITED TO FEATURES and is jus for playing around with the preview.

READ FULL INSTRUCTIONS AND UNDERSTAND BEFORE...
Forum: Maemo 5 / Fremantle 2010-09-10, 15:50
Replies: 631
Views: 252,579
Posted By chucknorris
Re: Firmware 1.3 on its way????

the integration of Qt 4.7 in the industry "pr1.3" was supposed to be on Thursday, September 9, 2010:
http://qt.gitorious.org/qt/x11-maemo

but as of now no info on it..
but anyways the...
Forum: Development 2010-07-02, 12:50
Replies: 5
Views: 4,543
Posted By raedbenz
Re: QT - Madde - Accelerometer...help please

http://wiki.forum.nokia.com/index.php/How_to_get_accelerometer_data_of_N900_using_Qt
Forum: Nokia N900 2010-03-19, 23:52
Replies: 198
Views: 88,559
Posted By Fargus
Re: Gimmicks you might have missed on the N900

Something a lot of people don't seem to know is that pressing Ctrl+Shift+P snapshots the current screen to the images folder on the device.
Forum: Development 2010-03-01, 09:50
Replies: 4
Views: 1,923
Posted By ste.richards
Re: Being Lazy...Accelerometer Question (QT/Madde)

Take a look at this post that I made last week:

http://talk.maemo.org/showthread.php?t=45949

You could try adding questions to the post if you needed more information.

Stephen,
Forum: Development 2010-03-01, 05:18
Replies: 5
Views: 4,543
Posted By kunal_the_one
Re: QT - Madde - Accelerometer...help please

Try following code, it works for me.

static const QString PROC_ENTRY = "/sys/class/i2c-adapter/i2c-3/3-001d/coord";


QFile f(PROC_ENTRY);
if (!f.exists() or !f.open(QIODevice::ReadOnly |...
Forum: Development 2010-03-01, 04:47
Replies: 5
Views: 4,543
Posted By lpotter
Re: QT - Madde - Accelerometer...help please

http://doc.trolltech.com/4.6/qfile.html

On Unix, there are some special system files (e.g. in /proc) for which size() will always return 0, yet you may still be able to read more data from such a...
Forum: Development 2010-02-24, 12:36
Replies: 2
Views: 1,202
Posted By krk969
Re: Packaged app not showing up on extras-devel?

not to worry, it exists in the repository (http://repository.maemo.org/extras-devel/pool/fremantle/free/s/sitrep/):)
try refreshing your sources again.

*EDIT* ive checked my phone and it hasnt...
Forum: Development 2010-02-23, 11:13
Replies: 5
Views: 7,013
Posted By krk969
Re: QT and ESpeak - Command Line Call

QProcess is far more advanced than the system() call.
You could make use of the various signals that QProcess generate and also fork a process etc.
If all you want to do is execute a script and...
Forum: Development 2010-02-23, 10:42
Replies: 5
Views: 7,013
Posted By danielwilms
Re: QT and ESpeak - Command Line Call

Hi,

haven't used it by myself, but I think QProcess (http://qt.nokia.com/doc/qt-maemo-4.6/qprocess.html#details) is what you are looking for.

Daniel
Forum: Development 2010-02-22, 12:22
Replies: 1
Views: 3,758
Posted By krk969
Re: How to optify a QT/Madde App

Optification in simple terms is to ensure your app is installed in the /home/opt partition and not the rootfs partition.
Also any configurations files or data files installed/generated must be in...
Forum: Development 2010-02-15, 22:31
Replies: 7
Views: 5,555
Posted By w00t
Re: QT - My way to force numeric input

I'd suggest looking at:

http://doc.trolltech.com/4.6/qwidget.html#inputMethodHints-prop

and

http://doc.trolltech.com/4.6/qlineedit.html#inputMask-prop

and
Forum: Development 2010-02-15, 22:30
Replies: 7
Views: 5,555
Posted By qwerty12
Re: QT - My way to force numeric input

What about ze Germans with their QWERTZ keyboards? (Being qwerty12, I have to boo at the Germans for using the QWERTZ layout on their keyboards anyway, but... :p)
Forum: Development 2010-02-15, 22:17
Replies: 7
Views: 5,555
Posted By b666m
Re: QT - My way to force numeric input

set your code into the code-tag [.code] [./code] (of course without the . ) :)
Forum: Development 2010-02-12, 07:56
Replies: 3
Views: 3,687
Posted By tekojo
Re: QT Application - Graph

What kind of graphs are you looking for?

The graphics view (http://doc.trolltech.com/4.6/graphicsview.html) in 4.6 is pretty flexible and easy to use for creating custom graphs.

There are...
Forum: Development 2010-02-07, 16:27
Replies: 33
Views: 9,897
Posted By mikec
Re: Qt development step by step

OK Guys, here is the Quick start guide to use Qt and Python for Windows users

http://talk.maemo.org/showthread.php?p=514498#post514498

Please post comments on that thread.
Forum: Development 2010-02-06, 20:31
Replies: 5
Views: 5,040
Posted By pbouda
Re: Where should I save app data files on N900

I use QSettings in my Qt apps. It creates a config file for you in .config/CompanyName/AppName.conf. You can set the company name and application name when creating the QSettings object:

QSettings...
Forum: Development 2010-02-06, 12:57
Replies: 5
Views: 5,040
Posted By zwer
Re: Where should I save app data files on N900

Tho, if you plan on storing large files (videos, music, maps, whatever) you should probably put them on the mass storage partition. For my tests I use /home/user/MyDocs/.appName/ . It will show up to...
Forum: Development 2010-02-06, 12:24
Replies: 5
Views: 5,040
Posted By VDVsx
Re: Where should I save app data files on N900

If only the app should modify that file, you should put it in '/home/usr/.myapp', in the current location the user will see the file when in mass storage mode, and some users will delete it by...
Forum: Development 2010-02-06, 01:16
Replies: 5
Views: 5,040
Posted By wmarone
Re: Where should I save app data files on N900

I seem to recall a post or two regarding this recently, however I cannot recall where they are.

When saving application settings on Linux (and therefore Maemo) you want to save them in the user's...
Forum: Development 2010-02-05, 13:27
Replies: 295
Views: 112,249
Posted By danielwilms
Re: Technology Preview: MADDE

Hi,

there is an updated version of MADDE available for download. The biggest changes are a new toolchain, which matches the one in the Maemo5 SDK and the use of PR1.1 as target. Other changes are:...
Forum: Development 2010-02-02, 23:01
Replies: 9
Views: 4,800
Posted By mikec
Re: Large Qt Buttons wrap around

Pr1.1 introduced a limit to height on Qt buttons. Not sure if this is a bug or a feature.

This might help

https://bugs.maemo.org/show_bug.cgi?id=4717
Forum: Development 2010-02-02, 15:37
Replies: 9
Views: 4,800
Posted By TNiga
Re: Large Qt Buttons wrap around

I'm assuming you are talking about Maemo 5 since you didn't mention anything. I think the button height is pretty much fixed in Maemo 5, because they are drawn using the .png images of current theme...
Forum: Development 2010-01-21, 18:53
Replies: 34
Views: 13,297
Posted By too
Re: Packaging a Qt App to Deploy With It's Icon

Hi everybody posting these instructions. Good work ! :)

Please test the steps *without* entering 'mad qmake'
(as mad pscreate does debian/rules which has that step)

And, when verified to work,...
Showing results 1 to 25 of 42



 
Forum Jump

All times are GMT. The time now is 18:42.