diff options
author | Jaakko Keränen <jaakko.keranen@iki.fi> | 2020-08-08 08:06:22 +0300 |
---|---|---|
committer | Jaakko Keränen <jaakko.keranen@iki.fi> | 2020-08-08 08:06:22 +0300 |
commit | d6875fba63cc674d2d9cac64a66c3b4c9f3eaba1 (patch) | |
tree | a12111a19b594fc17792a7a851d1526597470121 /src/app.h | |
parent | 9abe27c63e088bf1e139d108cbc29ac39222d74c (diff) |
Moved recent URLs history to DocumentWidget
App maintains the visited URLs database, but each DocumentWidget has its own stack of recent URLs for timeline navigation.
Diffstat (limited to 'src/app.h')
-rw-r--r-- | src/app.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -6,7 +6,7 @@ | |||
6 | #include <the_Foundation/time.h> | 6 | #include <the_Foundation/time.h> |
7 | 7 | ||
8 | iDeclareType(GmCerts) | 8 | iDeclareType(GmCerts) |
9 | iDeclareType(History) | 9 | iDeclareType(Visited) |
10 | iDeclareType(Window) | 10 | iDeclareType(Window) |
11 | 11 | ||
12 | enum iAppEventMode { | 12 | enum iAppEventMode { |
@@ -27,7 +27,7 @@ iBool handleCommand_App (const char *cmd); | |||
27 | void refresh_App (void); | 27 | void refresh_App (void); |
28 | 28 | ||
29 | iGmCerts * certs_App (void); | 29 | iGmCerts * certs_App (void); |
30 | iHistory * history_App (void); | 30 | iVisited * visited_App (void); |
31 | 31 | ||
32 | iAny * findWidget_App (const char *id); | 32 | iAny * findWidget_App (const char *id); |
33 | void addTicker_App (void (*ticker)(iAny *), iAny *context); | 33 | void addTicker_App (void (*ticker)(iAny *), iAny *context); |