| The Following 3 Users Say Thank You to reinob For This Useful Post: | ||
|
|
2014-08-08
, 15:56
|
|
|
Posts: 1,974 |
Thanked: 1,834 times |
Joined on Mar 2013
@ india
|
#62
|
@Copernicus,
I haven't tried Linguine because podcasts are not interesting to me.. but if you could implement a RSS reader that keeps synchronized with online RSS readers (*cough* theoldreader.com *cough*) I would be really happy.
The standard RSS reader (and most of the RSS readers) manage everything on their own, but I prefer having a central place (previously google reader, for some time now theoldreader), so that there's no need to synchronize anything, and which I then read from home, office or train. The latter involves the N900 and an ugly hack: I ssh into a server of mine in which I run a cursed-curses-programcalled newsbeuter with which I read my feeds directly off theoldreader. A more "graphical" and "native" tool would be a blessing.

|
|
2014-08-09
, 16:08
|
|
|
Posts: 6,346 |
Thanked: 20,674 times |
Joined on Sep 2012
@ UK
|
#63
|
| The Following 3 Users Say Thank You to pichlo For This Useful Post: | ||
|
|
2014-08-09
, 18:04
|
|
|
Posts: 1,986 |
Thanked: 7,697 times |
Joined on Dec 2010
@ Dayton, Ohio
|
#64
|

So yeah, you can expect a lot of messiness in this app as I try to figure things out...1. I would really appreciate a filter for just selected news feeds. For example, only BBC. I guess this would be even more useful for other countries' nationals, to filter e.g. only French channels etc.
2. It would be preferable to display the news channel name in the list (e.g in Text News or Comics) rather than the headline. Or display both, with the channel name first. There is the channel icon but that is so small as to be barely discernable.
3. Follow-up to #2. If displaying both the name and the headline, then sort by the channel name, not the headline. Or make the sorting configuable. It is annoying when e.g. the BBC news suddenly move to the end of the list because the headline starts with "The ...".
4. It would be nice to have a "do not show pictures" option available for Text News.
5. It would be nice to save the settings on exit, including the current selected tab.
|
|
2014-08-09
, 18:26
|
|
|
Posts: 6,346 |
Thanked: 20,674 times |
Joined on Sep 2012
@ UK
|
#65
|
I should say, after looking at a handful of feed readers, they seem to do things in the opposite manner: rather than offering a selection of feeds right off, they all seem to start of with giving you a blank page, and ask you to manually subscribe to feeds yourself. This may be a better way of going about things...

The problem comes down to my use of the Qt "QListWidget" class. QListWidget provides a surprisingly powerful and economical mechanism for displaying a large list of data, but it has some significant limitations. In particular, there is almost no formatting available for the text of a list item.
I've pretty much determined that the QListWidget isn't going to serve my purposes here. Things should get better once I find a UI mechanism that has more flexibility...
) and must say that I found the QListWidget/QListView model a bit confusing at first, but I think I got the hang of it in the end.| The Following 3 Users Say Thank You to pichlo For This Useful Post: | ||
|
|
2014-08-09
, 18:54
|
|
|
Posts: 2,448 |
Thanked: 9,523 times |
Joined on Aug 2010
@ Wigan, UK
|
#66
|
Yeah, I've been fighting with this for a bit now. The problem comes down to my use of the Qt "QListWidget" class. QListWidget provides a surprisingly powerful and economical mechanism for displaying a large list of data, but it has some significant limitations. In particular, there is almost no formatting available for the text of a list item. I've been trying a number of different ways to cram the name, headline, and timestamp into each list item, but it just never seems to come out in a readable fashion. I've ended up just leaving the headline in, as that seems the most important information. I've also tried sorting by name or by timestamp even without showing them in the text, but that ends up with a list looking just as chaotic as it does now.
I've pretty much determined that the QListWidget isn't going to serve my purposes here. Things should get better once I find a UI mechanism that has more flexibility...
| The Following 2 Users Say Thank You to marxian For This Useful Post: | ||
|
|
2014-08-09
, 19:38
|
|
|
Posts: 1,986 |
Thanked: 7,697 times |
Joined on Dec 2010
@ Dayton, Ohio
|
#67
|
Look specifically for the "delegate" classes as that is how it works: each QListWidget entry uses a delegate to draw itself. You have pretty much a free hand what to do and how.
But yeah, that's probably the direction I'll have to go.
| The Following User Says Thank You to Copernicus For This Useful Post: | ||
|
|
2014-08-09
, 19:43
|
|
|
Posts: 6,346 |
Thanked: 20,674 times |
Joined on Sep 2012
@ UK
|
#68
|
| The Following 2 Users Say Thank You to pichlo For This Useful Post: | ||
|
|
2014-08-09
, 19:53
|
|
|
Posts: 1,986 |
Thanked: 7,697 times |
Joined on Dec 2010
@ Dayton, Ohio
|
#69
|
I would honestly recommend switching to the model/view approach, even if you just stick with the default item delegate. You will need to do that in future anyway, if you ever want to use QML for the UI (say, for Harmattan or Sailfish). It also allows you to share the same data between multiple item views.
| The Following 4 Users Say Thank You to Copernicus For This Useful Post: | ||
|
|
2014-08-14
, 02:02
|
|
|
Posts: 1,986 |
Thanked: 7,697 times |
Joined on Dec 2010
@ Dayton, Ohio
|
#70
|

| The Following 9 Users Say Thank You to Copernicus For This Useful Post: | ||
![]() |
| Tags |
| podcast, rss reader |
| Thread Tools | |
|
I haven't tried Linguine because podcasts are not interesting to me.. but if you could implement a RSS reader that keeps synchronized with online RSS readers (*cough* theoldreader.com *cough*) I would be really happy.
The standard RSS reader (and most of the RSS readers) manage everything on their own, but I prefer having a central place (previously google reader, for some time now theoldreader), so that there's no need to synchronize anything, and which I then read from home, office or train. The latter involves the N900 and an ugly hack: I ssh into a server of mine in which I run a cursed-curses-program