You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
139 lines
3.9 KiB
139 lines
3.9 KiB
/* |
|
* Created by SharpDevelop. |
|
* User: Daniel Grunwald |
|
* Date: 07.05.2006 |
|
* Time: 18:09 |
|
*/ |
|
|
|
using System; |
|
using System.Collections.Generic; |
|
using System.Drawing; |
|
using System.IO; |
|
using System.Windows.Forms; |
|
|
|
using ICSharpCode.NRefactory; |
|
using ICSharpCode.NRefactory.PrettyPrinter; |
|
using ICSharpCode.NRefactory.Visitors; |
|
|
|
namespace NRefactoryDemo |
|
{ |
|
/// <summary> |
|
/// Graphical application to demonstrate NRefactory. |
|
/// </summary> |
|
public partial class MainForm |
|
{ |
|
[STAThread] |
|
public static void Main(string[] args) |
|
{ |
|
Application.EnableVisualStyles(); |
|
Application.SetCompatibleTextRenderingDefault(false); |
|
Application.Run(new MainForm()); |
|
} |
|
|
|
AstView astView = new AstView(); |
|
|
|
public MainForm() |
|
{ |
|
// The InitializeComponent() call is required for Windows Forms designer support. |
|
InitializeComponent(); |
|
astView.Dock = DockStyle.Fill; |
|
astPanel.Controls.Add(astView); |
|
ParseCSharpButtonClick(null, null); |
|
transformationComboBox.SelectedIndex = 0; |
|
} |
|
|
|
void ClearSpecialsButtonClick(object sender, EventArgs e) |
|
{ |
|
SetSpecials(new ISpecial[0]); |
|
} |
|
|
|
IList<ISpecial> savedSpecialsList; |
|
|
|
void SetSpecials(IList<ISpecial> specialsList) |
|
{ |
|
savedSpecialsList = specialsList; |
|
if (specialsList.Count == 1) |
|
specialsLabel.Text = "1 special saved"; |
|
else |
|
specialsLabel.Text = specialsList.Count + " specials saved"; |
|
} |
|
|
|
void ArrowDownPictureBoxPaint(object sender, PaintEventArgs e) |
|
{ |
|
Size size = arrowDownPictureBox.Size; |
|
e.Graphics.DrawLine(Pens.Black, size.Width / 2, 0, size.Width / 2, size.Height); |
|
e.Graphics.DrawLine(Pens.Black, 0, size.Height - size.Width / 2, size.Width / 2, size.Height); |
|
e.Graphics.DrawLine(Pens.Black, size.Width - 1, size.Height - size.Width / 2, size.Width / 2, size.Height); |
|
} |
|
|
|
void ArrowUpPictureBoxPaint(object sender, PaintEventArgs e) |
|
{ |
|
Size size = arrowUpPictureBox.Size; |
|
e.Graphics.DrawLine(Pens.Black, size.Width / 2, 0, size.Width / 2, size.Height); |
|
e.Graphics.DrawLine(Pens.Black, 0, size.Width / 2, size.Width / 2, 0); |
|
e.Graphics.DrawLine(Pens.Black, size.Width - 1, size.Width / 2, size.Width / 2, 0); |
|
} |
|
|
|
void ParseCSharpButtonClick(object sender, EventArgs e) |
|
{ |
|
Parse(SupportedLanguage.CSharp, codeTextBox.Text); |
|
} |
|
|
|
void ParseVBButtonClick(object sender, EventArgs e) |
|
{ |
|
Parse(SupportedLanguage.VBNet, codeTextBox.Text); |
|
} |
|
|
|
void Parse(SupportedLanguage language, string text) |
|
{ |
|
using (IParser parser = ParserFactory.CreateParser(language, new StringReader(text))) { |
|
parser.Parse(); |
|
SetSpecials(parser.Lexer.SpecialTracker.RetrieveSpecials()); |
|
astView.Unit = parser.CompilationUnit; |
|
if (parser.Errors.Count > 0) { |
|
MessageBox.Show(parser.Errors.ErrorOutput, "Parse errors"); |
|
} |
|
} |
|
} |
|
|
|
void GenerateCSharpButtonClick(object sender, EventArgs e) |
|
{ |
|
GenerateCode(new CSharpOutputVisitor()); |
|
} |
|
|
|
void GenerateVBButtonClick(object sender, EventArgs e) |
|
{ |
|
GenerateCode(new VBNetOutputVisitor()); |
|
} |
|
|
|
void GenerateCode(IOutputAstVisitor outputVisitor) |
|
{ |
|
using (SpecialNodesInserter.Install(savedSpecialsList, outputVisitor)) { |
|
astView.Unit.AcceptVisitor(outputVisitor, null); |
|
} |
|
codeTextBox.Text = outputVisitor.Text.Replace("\t", " "); |
|
} |
|
|
|
void DeleteSelectedNodeClick(object sender, EventArgs e) |
|
{ |
|
astView.DeleteSelectedNode(); |
|
} |
|
|
|
void ApplyTransformationClick(object sender, EventArgs e) |
|
{ |
|
try { |
|
string typeName = typeof(ToCSharpConvertVisitor).Namespace + "." + transformationComboBox.SelectedItem.ToString(); |
|
Type type = typeof(ToCSharpConvertVisitor).Assembly.GetType(typeName); |
|
astView.ApplyTransformation((IAstVisitor)Activator.CreateInstance(type)); |
|
} catch (Exception ex) { |
|
MessageBox.Show(ex.ToString(), "Error"); |
|
astView.Unit = astView.Unit; // complete refresh |
|
} |
|
} |
|
|
|
void EditNodeButtonClick(object sender, EventArgs e) |
|
{ |
|
astView.EditSelectedNode(); |
|
} |
|
} |
|
}
|
|
|