-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathECTextEditor.h
48 lines (38 loc) · 1.7 KB
/
ECTextEditor.h
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
36
37
38
39
40
41
42
43
44
45
46
47
48
/* ECTextEditor
Written by: Nate Fanning */
#ifndef ECTextEditor_h
#define ECTextEditor_h
#include "ECTextViewImp.h"
#include "ECTextDocument.h"
#include "ECCommand.h"
#include <assert.h>
class ECTextEditor : public ECObserver
{
public:
ECTextEditor(ECTextViewImp &view, ECTextDocument &doc, ECTextDocumentCtrl &ctrl);
~ECTextEditor();
void Update();
private:
void ParseKeyCode(int c);
void Backspace(); // For key code backspace
bool StepCursorForward();
bool StepCursorBack();
bool StepCursorUp();
bool StepCursorDown();
bool SetCursor(int x, int y); // Set the cursor to the desired position
bool SetCursorLineEnd(); // Set the cursor to the end of the current line.
bool SetCursorWordEnd(); // Set the cursor to the end of the current word.
bool UpdateCursor(int cx, int cy); // Update cursor position if valid.
int GetNumRows(); // Get num rows on the current page
int GetLenRow(int y); // Get the length of a row on the current page
void UpdateStatusRow(); // Update the status row
void UpdateTextDisplay(); // Add the document text to the view.
void AddRow(string row); // Add a new row for testing purposes.
ECTextViewImp &textView; // The text view instance displays the text.
ECTextDocument &document; // The TextDocument holds all the text data.
ECTextDocumentCtrl &docCtrl; // The Document Controller controls the text document.
vector<string> formattedPage; // The formatted page in view
string StatusLeft; // Status row at the end of the view.
string StatusRight;
};
#endif