From: <ste...@us...> - 2011-02-17 12:22:07
|
Revision: 4124 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=4124&view=rev Author: steve44src Date: 2011-02-17 12:22:00 +0000 (Thu, 17 Feb 2011) Log Message: ----------- Added Paths: ----------- trunk/plugins/MP4IPSymcon/MP4IPSymcon/GroupClickHandler.cs Added: trunk/plugins/MP4IPSymcon/MP4IPSymcon/GroupClickHandler.cs =================================================================== --- trunk/plugins/MP4IPSymcon/MP4IPSymcon/GroupClickHandler.cs (rev 0) +++ trunk/plugins/MP4IPSymcon/MP4IPSymcon/GroupClickHandler.cs 2011-02-17 12:22:00 UTC (rev 4124) @@ -0,0 +1,35 @@ +/* + * Erstellt mit SharpDevelop. + * Benutzer: srinke + * Datum: 17.02.2011 + * Zeit: 08:43 + * + * Sie können diese Vorlage unter Extras > Optionen > Codeerstellung > Standardheader ändern. + */ +using System; +using System.Collections.Generic; +using System.Text; +using MediaPortal.GUI.Library; + +namespace MP4IPSymcon +{ + /// <summary> + /// Description of GroupClickHandler. + /// </summary> + public class GroupClickHandler : ClickHandler + { + int id; + IPSWindow win; + + public GroupClickHandler(int id, IPSWindow win) + { + this.id = id; + this.win = win; + } + + public void onClick(Action.ActionType actionType) + { + this.win.showGroup(id); + } + } +} This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |