KnoppMyth 5.5 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News KnoppMyth 5.5 (Default branch)
# 1  
Old 07-08-2008
KnoppMyth 5.5 (Default branch)

KnoppMyth is an attempt to make the installation of GNU/Linux and MythTV as trivial as possible. It includes everything needed to get your set-top box up and running in as little time as possible. License: GNU General Public License (GPL)Changes:
The kernel was updated for greater hardware support. Mythic.tv's Tweaker was included to allow customized tweaks based on hardware type and hardware class. The latest nVidia modules were provided along with FFmpeg and MPlayer from SVN with patches to support the playback of unencrypted high definition disc content. Apple TV and Intel Macs in general are now supported, and support was provided for more remotes out the box. There were also various bugfixes, updates, and improvements.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
DwtListBoxSetPos(3Dwt)													    DwtListBoxSetPos(3Dwt)

Name
       DwtListBoxSetPos  -  Makes a specified position (item number in the list) the top visible position in a list box, or as close to the top as
       possible.

Syntax
       void DwtListBoxSetPos(widget, position)
	    Widget widget;
	    int position;

Arguments
       widget	 Specifies the ID of the list box widget whose specified item number in the list you want displayed in the top position.

       position  Specifies the item number in the list displayed in the top position in the list box.

Description
       The DwtListBoxSetPos function makes the specified position (the item number in the list) the top visible position in a list box.  The func-
       tion  determines  which	item in the list box is displayed at the top of the list box, the choice of which is limited by the DwtNitemsCount
       and DwtNvisibleItemsCount attributes to the list box widget.  When DwtNvisibleItemsCount is greater than 1 and  less  than  DwtNitemsCount,
       the list box widget fills the list box with the maximum visible items regardless of the position value.

       For  example,  if  DwtNitemsCount  is  10  and  DwtNvisibleItemsCount is 5, you cannot make item 8 be displayed at the top of the list box.
       Instead, items 6 through 10 would be displayed.	Setting position to 4 would make items 4 through 8 be displayed.  If DwtNvisibleItemsCount
       is 1, you can make any item in the list be displayed at the top of the list box.

See Also
       Guide to the XUI Toolkit: C Language Binding
       Guide to the XUI Toolkit Intrinsics: C Language Binding

															    DwtListBoxSetPos(3Dwt)