-
Notifications
You must be signed in to change notification settings - Fork 1
/
Label.cpp
160 lines (134 loc) · 2.44 KB
/
Label.cpp
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
// Label.cpp
#include <string>
using namespace std;
#include "Label.h"
Label::Label()
{
this->length = 0;
this->capacity = 256;
this->current = 0;
}
Label::Label(int capacity):str(capacity)
{
this->length = 0;
this->capacity = capacity;
this->current = 0;
}
Label::Label(const Label& source):str(source.str)
{
this->length = source.length;
this->capacity = source.capacity;
this->current = source.current;
}
Label::~Label() {}
char& Label::GetAt(int index)
{
return this->str.GetAt(index);
}
char& Label::operator[](int index)
{
return this->str.GetAt(index);
}
Label::operator char*()
{
return (char*)(this->str);
}
Label& Label::operator=(const Label& source)
{
this->str = source.str;
this->length = source.length;
this->capacity = source.capacity;
this->current = source.current;
return *this;
}
int Label::Write(char ch)
{
if(this->current == this->length)
{
this->current = this->str.Append(ch);
}
else
{
this->current = this->str.Insert(this->current, ch);
}
this->length++;
return this->current;
}
int Label::Write(char* pstr)
{
int count = strlen(pstr);
if(this->current == this->length)
{
this->current = this->str.Append(pstr, count);
}
else
{
this->current = this->str.Insert(this->current, pstr, count);
}
this->length+=count;
return this->current;
}
int Label::Erase(int index, int count)
{
this->current = this->str.Delete(index, count);
this->length-=count;
return this->current;
}
int Label::MoveLeft()
{
this->current--;
return this->current;
}
int Label::MoveRight()
{
this->current++;
return this->current;
}
int Label::MoveHome()
{
this->current = 0;
return this->current;
}
int Label::MoveEnd()
{
this->current = this->length;
return this->current;
}
int Label::Move(int index)
{
if(index <= this->length)
{
this->current = index;
}
else
{
this->current = this->length;
}
return this->current;
}
char* Label::Copy()
{
char (*buffer) = new char[this->length+1];
for(int i = 0; i <= this->length; i++)
{
buffer[i] = this->str[i];
}
return buffer;
}
char* Label::Copy(int first, int count)
{
char (*temp);
if(first == 0)
{
temp = this->str.Left(count);
}
else if(first+count == this->length)
{
temp = this->str.Right(count);
}
else
{
temp = this->str.Mid(first, count);
}
return temp;
}