2012-03-17 02:18:09 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using System.Data;
|
|
|
|
|
using System.Drawing;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Windows.Forms;
|
2012-07-11 15:03:51 +00:00
|
|
|
|
using BizHawk.MultiClient.tools;
|
2012-03-17 02:18:09 +00:00
|
|
|
|
|
|
|
|
|
namespace BizHawk.MultiClient
|
|
|
|
|
{
|
|
|
|
|
public partial class LuaFunctionList : Form
|
|
|
|
|
{
|
|
|
|
|
public LuaFunctionList()
|
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void LuaFunctionList_Load(object sender, EventArgs e)
|
|
|
|
|
{
|
2012-07-12 00:57:09 +00:00
|
|
|
|
FunctionView.Items.Clear();
|
2012-07-11 15:03:51 +00:00
|
|
|
|
foreach (LuaDocumentation.LibraryFunction l in Global.MainForm.LuaConsole1.LuaImp.docs.FunctionList)
|
2012-03-28 12:26:43 +00:00
|
|
|
|
{
|
2012-07-12 00:57:09 +00:00
|
|
|
|
ListViewItem item = new ListViewItem();
|
|
|
|
|
item.Text = l.ReturnType;
|
|
|
|
|
item.SubItems.Add(l.library + ".");
|
|
|
|
|
item.SubItems.Add(l.name);
|
|
|
|
|
item.SubItems.Add(l.ParameterList);
|
|
|
|
|
FunctionView.Items.Add(item);
|
2012-03-28 12:26:43 +00:00
|
|
|
|
}
|
2012-03-17 02:18:09 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void OK_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
this.Close();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|