|
From: <nic...@us...> - 2014-06-09 14:16:16
|
Revision: 4834
http://sourceforge.net/p/mp-plugins/code/4834
Author: nicsergio
Date: 2014-06-09 14:16:11 +0000 (Mon, 09 Jun 2014)
Log Message:
-----------
Modified Paths:
--------------
trunk/plugins/ShortCuter&SkinEditor/Source/ShortCuter/Plugin/NavigatorDialog.cs
Modified: trunk/plugins/ShortCuter&SkinEditor/Source/ShortCuter/Plugin/NavigatorDialog.cs
===================================================================
--- trunk/plugins/ShortCuter&SkinEditor/Source/ShortCuter/Plugin/NavigatorDialog.cs 2014-06-09 06:57:05 UTC (rev 4833)
+++ trunk/plugins/ShortCuter&SkinEditor/Source/ShortCuter/Plugin/NavigatorDialog.cs 2014-06-09 14:16:11 UTC (rev 4834)
@@ -16,7 +16,11 @@
#region Controlli Grafici
[SkinControl(10)]
- protected GUIImage logo; //Immagine logo Skin Navigator
+ protected GUIImage selectedIcon; //Icona elemento selezionato
+ [SkinControl(11)]
+ protected GUIThumbnailPanel panelView; //Pannello icone per visualizzazione alternativa a lista
+ [SkinControl(20)]
+ protected GUIImage logo; //Immagine logo Skin Navigator
#endregion
#region Metodi Pubblici
@@ -42,9 +46,31 @@
}
public override void Dispose() //Override metodo Dispose
{
+ selectedIcon.SafeDispose();
+ panelView.SafeDispose();
logo.SafeDispose();
base.Dispose();
}
+ public override bool OnMessage(GUIMessage message)
+ {
+
+ if (message.Message == GUIMessage.MessageType.GUI_MSG_WINDOW_INIT) //& alternativeView
+ {
+ //base.base.OnMessage();
+
+ return true;
+ }
+ else
+ return base.OnMessage(message);
+ }
+ protected override void OnClicked(int controlId, GUIControl control, Action.ActionType actionType)
+ {
+ base.OnClicked(controlId, control, actionType);
+ }
+ public override void selectOption(string keySelected)
+ {
+ base.selectOption(keySelected);
+ }
#endregion
#region Consumazione Eventi
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|