summaryrefslogtreecommitdiff
path: root/Userland/DevTools/SQLStudio/ScriptEditor.h
blob: 0de219c0bb5c130e57761a82387c324d5317e55b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/*
 * 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(DeprecatedString);
    ErrorOr<void> open_script_from_file(LexicalPath const&);

    ErrorOr<bool> save();
    ErrorOr<bool> save_as();
    ErrorOr<bool> attempt_to_close();

    DeprecatedString const& path() const { return m_path; }

private:
    ScriptEditor();

    DeprecatedString m_path;
};

}