blob: 8593a7ad927d8161a047e308334300cad6b90392 (
plain)
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
|
#pragma once
#include "gmrequest.h"
#include <the_Foundation/array.h>
#include <the_Foundation/string.h>
#include <the_Foundation/time.h>
iDeclareType(RecentUrl)
iDeclareTypeConstruction(RecentUrl)
struct Impl_RecentUrl {
iString url;
int scrollY; /* unit is gap_UI */
iGmResponse *cachedResponse; /* kept in memory for quicker back navigation */
};
iDeclareType(VisitedUrl)
iDeclareTypeConstruction(VisitedUrl)
struct Impl_VisitedUrl {
iString url;
iTime when;
};
/*----------------------------------------------------------------------------------------------*/
iDeclareType(History)
iDeclareTypeConstruction(History)
void clear_History (iHistory *);
void load_History (iHistory *, const char *dirPath);
void save_History (const iHistory *, const char *dirPath);
iRecentUrl *
recentUrl_History (iHistory *, size_t pos);
iRecentUrl *
mostRecentUrl_History (iHistory *);
const iString *
url_History (const iHistory *, size_t pos);
const iRecentUrl *
constRecentUrl_History (const iHistory *d, size_t pos);
const iRecentUrl *
constMostRecentUrl_History (const iHistory *);
iTime urlVisitTime_History (const iHistory *, const iString *url);
const iGmResponse *
cachedResponse_History (const iHistory *);
void addUrl_History (iHistory *, const iString *url); /* adds to the stack of recents */
void setCachedResponse_History (iHistory *, const iGmResponse *response);
void visitUrl_History (iHistory *, const iString *url); /* adds URL to the visited URLs set */
void replace_History (iHistory *, const iString *url);
iBool goBack_History (iHistory *);
iBool goForward_History (iHistory *);
|