Hi all,
I have several questions for you :
1.Lets say I have defined new grammar in Microsoft Oslo SDK tool called IntelliPad and I want to use it in your grammar designer.Is there any possibility for such behavior or I have to write helper classes ? Here is the sample code of my grammar in IntelliPad pleease tell me if there is any chance for that.2.Im also interested when WPF Syntax Editor first public release is going to occur?
If we buy Syntax Editor component for Windows Forms can we later do some kind of upgrade or we have to buy WPF separately?
3.Is there any way to do custom outlining in code editor ? For example if I have this situation :
Entity.Person.BirthPlace.City.Street which can be any kind of custom expression,
how can I make it short just having a Street underlined (looking like link) instead of whole expression ?But when I click that word representing expression I could have some tool tip or restored expression for example.Is this possible?
4.Is there any way of validating custom expression and making syntax error when we define some lets say aritmetic expression and expect return type of Integer and we have double and then syntax error showing up tell us that return type of expression is expected?
I have several questions for you :
1.Lets say I have defined new grammar in Microsoft Oslo SDK tool called IntelliPad and I want to use it in your grammar designer.Is there any possibility for such behavior or I have to write helper classes ? Here is the sample code of my grammar in IntelliPad pleease tell me if there is any chance for that.
module Business
{
language BLang
{
token Ako = "Ako";
token OPar = "(";
token CPar = ")";
token Product = "Product";
token Dot = ".";
token Price = "Price";
token Manje = "<";
token Vece = ">";
token Jednako = "=";
token Num = "0".."9";
token OCur = "{";
token CCur = "}";
token Message = "Message";
token Expr = "A".."Z";
token SimpleRule = Ako | OPar | Product | Dot | Price | (Manje | Vece | Jednako)? | Num | OCur | Message | Expr | CCur;
syntax New = "New";
syntax LF = "\u000A";
syntax CR = "\u000D";
syntax Space = "\u0020";
syntax Whitespace = LF | CR | Space;
}
}
If we buy Syntax Editor component for Windows Forms can we later do some kind of upgrade or we have to buy WPF separately?
3.Is there any way to do custom outlining in code editor ? For example if I have this situation :
Entity.Person.BirthPlace.City.Street which can be any kind of custom expression,
how can I make it short just having a Street underlined (looking like link) instead of whole expression ?But when I click that word representing expression I could have some tool tip or restored expression for example.Is this possible?
4.Is there any way of validating custom expression and making syntax error when we define some lets say aritmetic expression and expect return type of Integer and we have double and then syntax error showing up tell us that return type of expression is expected?