> Pirlouwi wrote: >> Hello, >> I need some info to design my plugin. >> How can I display the information grabbed on the web? I need some kind >> of scrolling list to display the search result. How can I do that? >> Secondly, I need a way to go from a freevo folder directly to another >> folder, programmatically. How to do that?
Depends what you are trying to display, if its a list of items that you want to be able to select to do something further, like displaying a list of files that you want to be able to display, then a Menu is what you want as Christian said. If however you are just displaying a list of text but don't want to do anything with the specific lines/items you could use ScrollableText (src/skin.py), this is used to display a scrollable description of TV programs at the moment. The slight disadvantage of using this is that you'll need to add a section to the basic skin to define what other areas you want etc. For more details have a look at src/tv/program_details.py and share/skins/main/basic.fxd While we are on the subject of GUI items, I've recently submitted a patch, that Duncan kindly applied to the repo, that adds 2 new skinable GUI elements, a single line text entry field and a grid of buttons that can be navigated, check out tv/plugins/search_programs.py or active tv.search_programs plugin in your local_conf.py and go to the TV menu to have a look. Duncan wrote: > > Adam is the GUI King, he may be able to help you best. Lol, wouldn't go that far but I'm beginning to understand the code :o). Cheers Adam ------------------------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/ _______________________________________________ Freevo-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/freevo-users
