The Following User Says Thank You to Helmuth For This Useful Post: | ||
|
2011-03-22
, 16:31
|
|
Posts: 1,259 |
Thanked: 1,341 times |
Joined on Oct 2009
@ Germany
|
#472
|
Hmm, you meant the playback from gpodder. Ok i tried with panucci qt now and it plays the file immediately on both panucci versions.
|
2011-03-22
, 17:53
|
|
Posts: 1,259 |
Thanked: 1,341 times |
Joined on Oct 2009
@ Germany
|
#473
|
Hmm, you meant the playback from gpodder. Ok i tried with panucci qt now and it plays the file immediately on both panucci versions.
Edit: To clarify, if panucci is not running and I chose to play a file in gpodder it plays it automaticly.
|
2011-03-22
, 22:57
|
|
Posts: 513 |
Thanked: 651 times |
Joined on Feb 2011
@ Sweden
|
#474
|
Perhaps a good place for:
It works at maemo, too. But it is confusing that the task manager appears as soon as you close the settings screen. It's a little bit different.Code:if platform.FREMANTLE:
self.main_window.setWindowModality(QtCore.Qt.WindowModal)
Yes, the menu looks great. And Qt does a great job.
The settings dialog works, too. But have a look at the screenshot. It's a little bit crowded. Perhaps a Vertical Scrollarea would be a good idea.
But Qt works good. It doesn't gave up and everything fit's in the screen.
If panucci is not running and I chose th play a file in gpodder it plays the last track automatically from the beginning (not the last position and not the new track) - The new track, chosen to play, is added at the end of the playlist.
But additionally, have a look at the screenshot number 2. There are german umlauts in the track description (or title). Instead of the umlaut ü it shows 2 other characters (not able to type those at the moment)
Have you ensured to use QString instead of the String object everywhere in the code? There seems to be a problem using unicode characters.
|
2011-03-23
, 07:56
|
|
Posts: 1,391 |
Thanked: 4,272 times |
Joined on Sep 2007
@ Vienna, Austria
|
#475
|
setAttribute(Qt::WA_Maemo5StackedWindow);
|
2011-03-23
, 07:58
|
|
Posts: 1,391 |
Thanked: 4,272 times |
Joined on Sep 2007
@ Vienna, Austria
|
#476
|
|
2011-03-23
, 11:32
|
|
Posts: 513 |
Thanked: 651 times |
Joined on Feb 2011
@ Sweden
|
#477
|
But additionally, have a look at the screenshot number 2. There are german umlauts in the track description (or title). Instead of the umlaut ü it shows 2 other characters (not able to type those at the moment)
Have you ensured to use QString instead of the String object everywhere in the code? There seems to be a problem using unicode characters.
The Following User Says Thank You to xerxes2 For This Useful Post: | ||
|
2011-03-23
, 11:34
|
|
Posts: 513 |
Thanked: 651 times |
Joined on Feb 2011
@ Sweden
|
#478
|
You are probably looking for that code:
(see this wiki page for details)Code:setAttribute(Qt::WA_Maemo5StackedWindow);
For scrolling the settings dialog, you can have a look at the platform notes, which suggests QAbstractKineticScroller and QAbstractScrollArea.
HTH
|
2011-03-23
, 11:39
|
|
Posts: 513 |
Thanked: 651 times |
Joined on Feb 2011
@ Sweden
|
#479
|
PS: Did I mention that if you want to have a UI for MeeGo, then QML with Qt Components would be the way to go?
|
2011-03-23
, 19:18
|
|
Posts: 1,259 |
Thanked: 1,341 times |
Joined on Oct 2009
@ Germany
|
#480
|
This one was a bit tricky. On GTK you just use the set_transient_for() method but that doesn't seem to exist for Qt. i've switched to the Dialog flag now, see this commit:
https://github.com/xerxes2/panucci/c...357b541ce8c044
Haha, yeah I forgot to add a scrollarea to the settings dialog, fixed it now.
Hmm, I don't think I'm using qstring no, maybe I should? Actually this was the first time I heard about it. First I can say to you that you probably can't use files with the old 8-bit iso encoding. UTF-8 should work fine though afaik. Can you point me to a file with this problem?
The Following User Says Thank You to Helmuth For This Useful Post: | ||
It feels here like that.
I guess I need a new suit and a proper car for this mission.
So this value has to be true to get the current behavior or false to get immediate playback. Hmm... what do you think?
Or is it more confusing than "immediate playback of new tracks"?
The settings dialog works, too. But have a look at the screenshot. It's a little bit crowded. Perhaps a Vertical Scrollarea would be a good idea.
But Qt works good. It doesn't gave up and everything fit's in the screen.
[...]
But this is only at the gtk code. The Qt part looks very good.
But additionally, have a look at the screenshot number 2. There are german umlauts in the track description (or title). Instead of the umlaut ü it shows 2 other characters (not able to type those at the moment)
Have you ensured to use QString instead of the String object everywhere in the code? There seems to be a problem using unicode characters.
Last edited by Helmuth; 2011-03-22 at 11:36.