aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Scripting/Tango.Scripting.Editors/Popups
diff options
context:
space:
mode:
authorRoy Ben Shabat <Roy.mail.net@gmail.com>2019-04-09 01:47:48 +0300
committerRoy Ben Shabat <Roy.mail.net@gmail.com>2019-04-09 01:47:48 +0300
commit080f1697e97e13461ec6df4d31c8924d01257a1b (patch)
treeb1fe0285de7bc9bc52e9e2195e66fe022bf8f5b3 /Software/Visual_Studio/Scripting/Tango.Scripting.Editors/Popups
parent1608e69a417bc5e40a607c3958c4a60f19f66f1a (diff)
downloadTango-080f1697e97e13461ec6df4d31c8924d01257a1b.tar.gz
Tango-080f1697e97e13461ec6df4d31c8924d01257a1b.zip
MERGE
Diffstat (limited to 'Software/Visual_Studio/Scripting/Tango.Scripting.Editors/Popups')
-rw-r--r--Software/Visual_Studio/Scripting/Tango.Scripting.Editors/Popups/MethodDescription.cs22
-rw-r--r--Software/Visual_Studio/Scripting/Tango.Scripting.Editors/Popups/MethodPopup.cs82
-rw-r--r--Software/Visual_Studio/Scripting/Tango.Scripting.Editors/Popups/ParameterDescription.cs26
3 files changed, 130 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Scripting/Tango.Scripting.Editors/Popups/MethodDescription.cs b/Software/Visual_Studio/Scripting/Tango.Scripting.Editors/Popups/MethodDescription.cs
new file mode 100644
index 000000000..70e0d028d
--- /dev/null
+++ b/Software/Visual_Studio/Scripting/Tango.Scripting.Editors/Popups/MethodDescription.cs
@@ -0,0 +1,22 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Tango.Scripting.Editors.Popups
+{
+ public class MethodDescription
+ {
+ public String Description { get; set; }
+ public String ReturnType { get; set; }
+ public List<ParameterDescription> Parameters { get; set; }
+ public String Class { get; set; }
+ public String Name { get; set; }
+
+ public MethodDescription()
+ {
+ Parameters = new List<ParameterDescription>();
+ }
+ }
+}
diff --git a/Software/Visual_Studio/Scripting/Tango.Scripting.Editors/Popups/MethodPopup.cs b/Software/Visual_Studio/Scripting/Tango.Scripting.Editors/Popups/MethodPopup.cs
new file mode 100644
index 000000000..7c431f9b4
--- /dev/null
+++ b/Software/Visual_Studio/Scripting/Tango.Scripting.Editors/Popups/MethodPopup.cs
@@ -0,0 +1,82 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows;
+using System.Windows.Controls;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Input;
+using System.Windows.Media;
+using System.Windows.Media.Imaging;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+
+namespace Tango.Scripting.Editors.Popups
+{
+ public class MethodPopup : Control
+ {
+ public List<MethodDescription> Methods { get; set; }
+
+ public int CurrentMethodIndex
+ {
+ get { return (int)GetValue(CurrentMethodIndexProperty); }
+ set { SetValue(CurrentMethodIndexProperty, value); }
+ }
+ public static readonly DependencyProperty CurrentMethodIndexProperty =
+ DependencyProperty.Register("CurrentMethodIndex", typeof(int), typeof(MethodPopup), new PropertyMetadata(1));
+
+ public MethodDescription CurrentMethod
+ {
+ get { return (MethodDescription)GetValue(CurrentMethodProperty); }
+ set { SetValue(CurrentMethodProperty, value); }
+ }
+ public static readonly DependencyProperty CurrentMethodProperty =
+ DependencyProperty.Register("CurrentMethod", typeof(MethodDescription), typeof(MethodPopup), new PropertyMetadata(null));
+
+ public void IncrementMethod()
+ {
+ if (Methods.Count > 0)
+ {
+ if (CurrentMethodIndex < Methods.Count)
+ {
+ CurrentMethodIndex++;
+ CurrentMethod = Methods[CurrentMethodIndex - 1];
+ }
+ else
+ {
+ CurrentMethodIndex = 1;
+ CurrentMethod = Methods[0];
+ }
+ }
+ }
+
+ public void DecrementMethod()
+ {
+ if (Methods.Count > 0)
+ {
+ if (CurrentMethodIndex > 1)
+ {
+ CurrentMethodIndex--;
+ CurrentMethod = Methods[CurrentMethodIndex - 1];
+ }
+ else
+ {
+ CurrentMethodIndex = Methods.Count;
+ CurrentMethod = Methods[Methods.Count - 1];
+ }
+ }
+ }
+
+ public MethodPopup()
+ {
+ Methods = new List<MethodDescription>();
+ }
+
+ static MethodPopup()
+ {
+ DefaultStyleKeyProperty.OverrideMetadata(typeof(MethodPopup), new FrameworkPropertyMetadata(typeof(MethodPopup)));
+ }
+ }
+}
diff --git a/Software/Visual_Studio/Scripting/Tango.Scripting.Editors/Popups/ParameterDescription.cs b/Software/Visual_Studio/Scripting/Tango.Scripting.Editors/Popups/ParameterDescription.cs
new file mode 100644
index 000000000..6650f76ec
--- /dev/null
+++ b/Software/Visual_Studio/Scripting/Tango.Scripting.Editors/Popups/ParameterDescription.cs
@@ -0,0 +1,26 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Tango.Scripting.Editors.Popups
+{
+ public class ParameterDescription
+ {
+ public ParameterDescription(MethodDescription method)
+ {
+ Method = method;
+ }
+
+ public MethodDescription Method { get; set; }
+ public String Type { get; set; }
+ public String Name { get; set; }
+ public String Description { get; set; }
+
+ public bool IsLast
+ {
+ get { return Method.Parameters.Last() == this; }
+ }
+ }
+}