mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 03:32:45 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
	
		
			218 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			218 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include <AK/Function.h>
 | |
| #include <LibGUI/GTextEditor.h>
 | |
| 
 | |
| class GTextBox : public GTextEditor {
 | |
|     C_OBJECT(GTextBox)
 | |
| public:
 | |
|     explicit GTextBox(GWidget* parent);
 | |
|     virtual ~GTextBox() override;
 | |
| };
 | 
