mirror of
				https://github.com/Ryujinx/GtkSharp.git
				synced 2025-11-04 13:04:53 +00:00 
			
		
		
		
	Update SourceView to return SourceView.Buffer
Add syntax highlighting to sample application.
This commit is contained in:
		
							parent
							
								
									6d3c0cf744
								
							
						
					
					
						commit
						c3f768c537
					
				
							
								
								
									
										12
									
								
								Source/Libs/SourceView/SourceView.cs
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										12
									
								
								Source/Libs/SourceView/SourceView.cs
									
									
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,12 @@
 | 
			
		|||
namespace GtkSource
 | 
			
		||||
{
 | 
			
		||||
    public partial class SourceView : Gtk.TextView
 | 
			
		||||
    {
 | 
			
		||||
        new public GtkSource.Buffer Buffer
 | 
			
		||||
        {
 | 
			
		||||
            get => base.Buffer as GtkSource.Buffer;
 | 
			
		||||
            set => base.Buffer = value;
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			@ -59,6 +59,7 @@ namespace Samples
 | 
			
		|||
 | 
			
		||||
            _textViewCode = new SourceView();
 | 
			
		||||
            _textViewCode.ShowLineNumbers = true;
 | 
			
		||||
	    _textViewCode.Buffer.Language = new LanguageManager().GetLanguage("c-sharp");
 | 
			
		||||
 | 
			
		||||
            _textViewCode.Margin = 3;
 | 
			
		||||
            scroll2.Child = _textViewCode;
 | 
			
		||||
| 
						 | 
				
			
			@ -147,4 +148,4 @@ namespace Samples
 | 
			
		|||
            _treeView.ExpandAll();
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in a new issue