2019-03-07 02:31:06 +03:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <LibGUI/GWidget.h>
|
|
|
|
#include <AK/Function.h>
|
|
|
|
#include <AK/HashMap.h>
|
|
|
|
|
|
|
|
class GScrollBar;
|
|
|
|
|
|
|
|
class GTextPosition {
|
|
|
|
public:
|
|
|
|
GTextPosition() { }
|
|
|
|
GTextPosition(int line, int column)
|
|
|
|
: m_line(line)
|
|
|
|
, m_column(column)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
bool is_valid() const { return m_line >= 0 && m_column >= 0; }
|
|
|
|
|
|
|
|
int line() const { return m_line; }
|
|
|
|
int column() const { return m_column; }
|
|
|
|
|
|
|
|
void set_line(int line) { m_line = line; }
|
|
|
|
void set_column(int column) { m_column = column; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
int m_line { -1 };
|
|
|
|
int m_column { -1 };
|
|
|
|
};
|
|
|
|
|
|
|
|
class GTextEditor : public GWidget {
|
|
|
|
public:
|
|
|
|
explicit GTextEditor(GWidget* parent);
|
|
|
|
virtual ~GTextEditor() override;
|
|
|
|
|
2019-03-07 02:46:29 +03:00
|
|
|
Function<void(GTextEditor&)> on_cursor_change;
|
2019-03-07 02:31:06 +03:00
|
|
|
|
2019-03-07 02:46:29 +03:00
|
|
|
void set_text(const String&);
|
2019-03-07 02:31:06 +03:00
|
|
|
int content_width() const;
|
2019-03-07 15:54:02 +03:00
|
|
|
int content_height() const;
|
2019-03-07 02:31:06 +03:00
|
|
|
Rect visible_content_rect() const;
|
2019-03-07 15:13:25 +03:00
|
|
|
void scroll_cursor_into_view();
|
2019-03-07 02:31:06 +03:00
|
|
|
int line_count() const { return m_lines.size(); }
|
2019-03-07 03:05:35 +03:00
|
|
|
int line_spacing() const { return m_line_spacing; }
|
|
|
|
int line_height() const { return font().glyph_height() + m_line_spacing; }
|
2019-03-07 15:54:02 +03:00
|
|
|
int padding() const { return 3; }
|
2019-03-07 02:46:29 +03:00
|
|
|
GTextPosition cursor() const { return m_cursor; }
|
2019-03-07 02:31:06 +03:00
|
|
|
|
|
|
|
private:
|
|
|
|
virtual void paint_event(GPaintEvent&) override;
|
|
|
|
virtual void resize_event(GResizeEvent&) override;
|
|
|
|
virtual void mousedown_event(GMouseEvent&) override;
|
|
|
|
virtual void keydown_event(GKeyEvent&) override;
|
2019-03-07 03:05:35 +03:00
|
|
|
virtual void focusin_event(GEvent&) override;
|
|
|
|
virtual void focusout_event(GEvent&) override;
|
|
|
|
virtual void timer_event(GTimerEvent&) override;
|
2019-03-07 02:31:06 +03:00
|
|
|
virtual bool accepts_focus() const override { return true; }
|
|
|
|
|
|
|
|
class Line {
|
|
|
|
public:
|
|
|
|
Line() { }
|
|
|
|
|
|
|
|
String text() const { return m_text; }
|
|
|
|
int length() const { return m_text.length(); }
|
|
|
|
int width(const Font&) const;
|
|
|
|
void set_text(const String&);
|
|
|
|
|
|
|
|
private:
|
|
|
|
String m_text;
|
|
|
|
mutable int m_cached_width { -1 };
|
|
|
|
};
|
2019-03-07 15:21:51 +03:00
|
|
|
|
|
|
|
void update_scrollbar_ranges();
|
|
|
|
Rect line_content_rect(int item_index) const;
|
|
|
|
Rect line_widget_rect(int line_index) const;
|
|
|
|
Rect cursor_content_rect() const;
|
|
|
|
void update_cursor();
|
|
|
|
void set_cursor(int line, int column);
|
|
|
|
Line& current_line() { return m_lines[m_cursor.line()]; }
|
|
|
|
const Line& current_line() const { return m_lines[m_cursor.line()]; }
|
|
|
|
|
|
|
|
GScrollBar* m_vertical_scrollbar { nullptr };
|
|
|
|
GScrollBar* m_horizontal_scrollbar { nullptr };
|
|
|
|
|
2019-03-07 02:31:06 +03:00
|
|
|
Vector<Line> m_lines;
|
|
|
|
GTextPosition m_cursor;
|
2019-03-07 03:05:35 +03:00
|
|
|
bool m_cursor_state { true };
|
|
|
|
int m_line_spacing { 2 };
|
2019-03-07 02:31:06 +03:00
|
|
|
};
|