-
Notifications
You must be signed in to change notification settings - Fork 1
/
liste.cpp
259 lines (225 loc) · 4.15 KB
/
liste.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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
#include "liste.h"
#include "settings.h"
#include "main.h"
/*************************************************************
IMPLEMENTAZIONE
*************************************************************/
//Text
ListaDiTesto InitText(void)
{
return nullptr;
}
int NoText(ListaDiTesto lista)
{
return lista == nullptr;
}
ListaDiTesto InsText(ListaDiTesto lista)
{
ListaDiTesto punt;
punt = new Text;
punt->prox = lista;
return punt;
}
void DistruggiText(ListaDiTesto lista)
{
if (NoText(lista)) return;
DistruggiText(lista->prox);
delete (lista->txt);
delete (lista);
}
//Button
ListaDiBottoni InitButton(void)
{
return nullptr;
}
int NoButton(ListaDiBottoni lista)
{
return lista == nullptr;
}
ListaDiBottoni InsButton(ListaDiBottoni lista, int outline)
{
ListaDiBottoni punt;
punt = new Button;
punt->refs = nullptr;
punt->label = NULL;
punt->outline = outline;
punt->prox = lista;
return punt;
}
void DistruggiButton(ListaDiBottoni lista)
{
if (NoButton(lista)) return;
DistruggiButton(lista->prox);
delete (lista->btn);
delete (lista);
}
//Input
ListaDiInput InitInput(void)
{
return nullptr;
}
int NoInput(ListaDiInput lista)
{
return lista == nullptr;
}
ListaDiInput InsInFondo(ListaDiInput lista, TipoElemento name, TipoElemento type, TipoElemento value,
TipoElemento label)
{
ListaDiInput punt;
if (NoInput(lista))
{
punt = new Input;
punt->name = name;
punt->type = type;
punt->value = value;
punt->label = label;
punt->prox = nullptr;
return punt;
}
lista->prox = InsInFondo(lista->prox, name, type, value, label);
return lista;
}
void SetOption(ListaDiInput element, TipoElemento value)
{
if (!element)
return;
while (element->prox)
element = element->prox;
element->option = value;
}
void DistruggiInput(ListaDiInput lista)
{
if (NoInput(lista)) return;
DistruggiInput(lista->prox);
delete (lista);
}
//Image
ListaDiImg InitImg(void)
{
return nullptr;
}
int NoImg(ListaDiImg lista)
{
return lista == nullptr;
}
ListaDiImg InsImg(ListaDiImg lista)
{
ListaDiImg punt;
punt = new Image;
punt->tag = nullptr;
punt->imgdata = NULL;
punt->fetched = false;
punt->prox = lista;
return punt;
}
void DistruggiImg(ListaDiImg lista)
{
if (NoImg(lista)) return;
DistruggiImg(lista->prox);
delete (lista->img);
delete (lista->imgdata);
delete (lista);
}
//Index
Indice InitIndex(void)
{
return nullptr;
}
int NoIndex(Indice lista)
{
return lista == nullptr;
}
Indice InsIndex(Indice lista)
{
auto punt = new Index;
if (!NoIndex(lista))
lista->prec = punt;
punt->prec = nullptr;
punt->prox = lista;
return punt;
}
void DistruggiIndex(Indice lista)
{
if (NoIndex(lista)) return;
DistruggiIndex(lista->prox);
delete (lista);
}
//History
History InitHistory(void)
{
return nullptr;
}
History RewindHistory(History lista)
{
if (!lista)
return nullptr;
while (!NoUrls(lista->prec))
lista = lista->prec;
return lista;
}
int NoUrls(History lista)
{
return lista == nullptr;
}
History InsUrl(History lista, char* url)
{
auto punt = new Url;
punt->url = url;
if (!NoUrls(lista))
{
DistruggiHistory(lista->prox, 1);
lista->prox = punt;
}
punt->prox = nullptr;
punt->prec = lista;
return punt;
}
void DistruggiHistory(History lista, int prox)
{
if (NoUrls(lista)) return;
if (prox)
DistruggiHistory(lista->prox, prox);
else
DistruggiHistory(lista->prec, prox);
delete (lista);
}
void FreeHistory(History lista)
{
if (lista)
DistruggiHistory(lista->prox, 1);
DistruggiHistory(lista, 0);
}
void DumpList(History lista, const char* file)
{
char path[256];
snprintf(path, 256, "%s/appdata/history.txt", Settings.AppPath);
FILE* fp = fopen(path, "w");
if (!fp)
return;
lista = RewindHistory(lista);
while (!NoUrls(lista))
{
fprintf(fp, "%s\r\n", lista->url.c_str());
lista = lista->prox;
}
fprintf(fp, "# End List");
fclose(fp);
}
History LoadList(const char* file)
{
char path[512];
snprintf(path, 512, "%s/appdata/history.txt", Settings.AppPath);
FILE* fp = fopen(path, "r");
if (!fp)
return nullptr;
History lista = nullptr;
while (!feof(fp))
{
fscanf(fp, "%s", path);
if (strchr(path, '#'))
break;
lista = InsUrl(lista, path);
}
fclose(fp);
return lista;
}