mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-18 16:27:34 +01:00
57 lines
2.0 KiB
C++
57 lines
2.0 KiB
C++
#ifndef CODE_EDITOR_VIEW_H
|
|
#define CODE_EDITOR_VIEW_H
|
|
|
|
#include <escher.h>
|
|
#include "python_text_area.h"
|
|
|
|
namespace Code {
|
|
|
|
class EditorView : public Responder, public View, public ScrollViewDelegate {
|
|
public:
|
|
EditorView(Responder * parentResponder, App * pythonDelegate);
|
|
PythonTextArea::AutocompletionType autocompletionType(const char ** autocompletionBeginning, const char ** autocompletionEnd) const { return m_textArea.autocompletionType(nullptr, autocompletionBeginning, autocompletionEnd); }
|
|
bool isAutocompleting() const;
|
|
void resetSelection();
|
|
void setTextAreaDelegates(InputEventHandlerDelegate * inputEventHandlerDelegate, TextAreaDelegate * delegate) {
|
|
m_textArea.setDelegates(inputEventHandlerDelegate, delegate);
|
|
}
|
|
const char * text() const { return m_textArea.text(); }
|
|
void setText(char * textBuffer, size_t textBufferSize) {
|
|
m_textArea.setText(textBuffer, textBufferSize);
|
|
}
|
|
const char * cursorLocation() {
|
|
return m_textArea.cursorLocation();
|
|
}
|
|
bool setCursorLocation(const char * location) {
|
|
return m_textArea.setCursorLocation(location);
|
|
}
|
|
void loadSyntaxHighlighter() { m_textArea.loadSyntaxHighlighter(); };
|
|
void unloadSyntaxHighlighter() { m_textArea.unloadSyntaxHighlighter(); };
|
|
void scrollViewDidChangeOffset(ScrollViewDataSource * scrollViewDataSource) override;
|
|
void didBecomeFirstResponder() override;
|
|
private:
|
|
int numberOfSubviews() const override { return 2; }
|
|
View * subviewAtIndex(int index) override;
|
|
void layoutSubviews(bool force = false) override;
|
|
|
|
class GutterView : public View {
|
|
public:
|
|
GutterView(const KDFont * font) : View(), m_font(font), m_offset(0) {}
|
|
void drawRect(KDContext * ctx, KDRect rect) const override;
|
|
void setOffset(KDCoordinate offset);
|
|
KDSize minimalSizeForOptimalDisplay() const override;
|
|
private:
|
|
static constexpr KDCoordinate k_margin = 2;
|
|
static constexpr int k_lineNumberCharLength = 3;
|
|
const KDFont * m_font;
|
|
KDCoordinate m_offset;
|
|
};
|
|
|
|
PythonTextArea m_textArea;
|
|
GutterView m_gutterView;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|