public DirectiveP()
 {
     DisplayName     = "AsmDude - Syntax Highlighting - Directive"; //human readable version of the name found in Tools>Options>Environment>Fonts and Colors>Text Editor
     ForegroundColor = AsmDudeToolsStatic.convertColor(Settings.Default.SyntaxHighlighting_Directive);
     IsItalic        = true;
 }
 public JumpP()
 {
     DisplayName     = "AsmDude - Syntax Highlighting - Jump"; //human readable version of the name
     ForegroundColor = AsmDudeToolsStatic.convertColor(Settings.Default.SyntaxHighlighting_Jump);
 }
 public OpcodeP()
 {
     //Debug.WriteLine(string.Format(CultureInfo.CurrentCulture, "INFO: Entering constructor for: {0}", this.ToString()));
     DisplayName     = "AsmDude - Syntax Highlighting - Mnemonic"; //human readable version of the name found in Tools>Options>Environment>Fonts and Colors>Text Editor
     ForegroundColor = AsmDudeToolsStatic.convertColor(Settings.Default.SyntaxHighlighting_Opcode);
 }
 public RegisterP()
 {
     DisplayName     = "AsmDude - Syntax Highlighting - Register"; //human readable version of the name found in Tools>Options>Environment>Fonts and Colors>Text Editor
     ForegroundColor = AsmDudeToolsStatic.convertColor(Settings.Default.SyntaxHighlighting_Register);
 }
예제 #5
0
 public DirectiveP()
 {
     DisplayName     = "directive"; //human readable version of the name
     ForegroundColor = AsmDudeToolsStatic.convertColor(Settings.Default.SyntaxHighlighting_Directive);
     IsItalic        = true;
 }
 public LabelDefP()
 {
     DisplayName     = "AsmDude - Syntax Highlighting - Label Definition"; //human readable version of the name found in Tools>Options>Environment>Fonts and Colors>Text Editor
     ForegroundColor = AsmDudeToolsStatic.convertColor(Settings.Default.SyntaxHighlighting_Label);
     //TextDecorations = System.Windows.TextDecorations.Underline;
 }
예제 #7
0
 public RemarkP()
 {
     DisplayName     = "remark"; //human readable version of the name
     ForegroundColor = AsmDudeToolsStatic.convertColor(Settings.Default.SyntaxHighlighting_Remark);
     IsItalic        = true;
 }
예제 #8
0
 public RegisterP()
 {
     DisplayName     = "register"; //human readable version of the name
     ForegroundColor = AsmDudeToolsStatic.convertColor(Settings.Default.SyntaxHighlighting_Register);
 }
예제 #9
0
 public MiscP()
 {
     DisplayName     = "misc"; //human readable version of the name
     ForegroundColor = AsmDudeToolsStatic.convertColor(Settings.Default.SyntaxHighlighting_Misc);
 }
예제 #10
0
 public ConstantP()
 {
     DisplayName     = "constant"; //human readable version of the name
     ForegroundColor = AsmDudeToolsStatic.convertColor(Settings.Default.SyntaxHighlighting_Constant);
 }
예제 #11
0
 public LabelP()
 {
     DisplayName     = "Display label"; //human readable version of the name
     ForegroundColor = AsmDudeToolsStatic.convertColor(Settings.Default.SyntaxHighlighting_Label);
     //TextDecorations = System.Windows.TextDecorations.Underline;
 }