mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 14:02:46 +00:00 
			
		
		
		
	 582539c570
			
		
	
	
		582539c570
		
	
	
	
	
		
			
			SQL Studio is a graphical SQL manager program that allows the user to create and edit SQL scripts.
		
			
				
	
	
		
			33 lines
		
	
	
	
		
			576 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
	
		
			576 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2022, Dylan Katz <dykatz@uw.edu>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <AK/LexicalPath.h>
 | |
| #include <LibGUI/TextEditor.h>
 | |
| 
 | |
| namespace SQLStudio {
 | |
| 
 | |
| class ScriptEditor : public GUI::TextEditor {
 | |
|     C_OBJECT(ScriptEditor)
 | |
| 
 | |
| public:
 | |
|     virtual ~ScriptEditor() = default;
 | |
| 
 | |
|     void new_script_with_temp_name(String);
 | |
|     ErrorOr<void> open_script_from_file(LexicalPath const&);
 | |
| 
 | |
|     ErrorOr<bool> save();
 | |
|     ErrorOr<bool> save_as();
 | |
|     ErrorOr<bool> attempt_to_close();
 | |
| 
 | |
| private:
 | |
|     ScriptEditor();
 | |
| 
 | |
|     String m_path;
 | |
| };
 | |
| 
 | |
| }
 |