mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 17:42:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
	
		
			394 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
	
		
			394 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2021, Conor Byrne <cbyrneee@protonmail.com>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <AK/LexicalPath.h>
 | |
| #include <LibGUI/Widget.h>
 | |
| 
 | |
| namespace HackStudio {
 | |
| 
 | |
| class GMLPreviewWidget final : public GUI::Widget {
 | |
|     C_OBJECT(GMLPreviewWidget)
 | |
| public:
 | |
|     void load_gml(String const&);
 | |
| 
 | |
| private:
 | |
|     explicit GMLPreviewWidget(String const&);
 | |
| };
 | |
| 
 | |
| }
 | 
