2022-04-09 00:24:37 -03:00
|
|
|
/*
|
|
|
|
|
* 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;
|
|
|
|
|
|
2022-12-04 15:02:33 -03:00
|
|
|
void new_script_with_temp_name(DeprecatedString);
|
2022-04-09 00:24:37 -03:00
|
|
|
ErrorOr<void> open_script_from_file(LexicalPath const&);
|
|
|
|
|
|
|
|
|
|
ErrorOr<bool> save();
|
|
|
|
|
ErrorOr<bool> save_as();
|
|
|
|
|
ErrorOr<bool> attempt_to_close();
|
|
|
|
|
|
2022-12-28 12:57:30 -03:00
|
|
|
DeprecatedString const& path() const { return m_path; }
|
|
|
|
|
|
2022-04-09 00:24:37 -03:00
|
|
|
private:
|
|
|
|
|
ScriptEditor();
|
|
|
|
|
|
2022-12-04 15:02:33 -03:00
|
|
|
DeprecatedString m_path;
|
2022-04-09 00:24:37 -03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|