diff options
author | Jaakko Keränen <jaakko.keranen@iki.fi> | 2020-08-05 16:30:34 +0300 |
---|---|---|
committer | Jaakko Keränen <jaakko.keranen@iki.fi> | 2020-08-05 16:30:34 +0300 |
commit | f38a940d722064e4b3fb2df6a6c0bcc025383ca0 (patch) | |
tree | f3df6097a60b04ff324cf9105f9cb1a4dbd825c9 /src/gmdocument.h | |
parent | 2b1de0641335ab1a88aeafcc8911056f155e94c9 (diff) |
Color palette theming
Diffstat (limited to 'src/gmdocument.h')
-rw-r--r-- | src/gmdocument.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/gmdocument.h b/src/gmdocument.h index b0a7df22..42639357 100644 --- a/src/gmdocument.h +++ b/src/gmdocument.h | |||
@@ -80,13 +80,21 @@ iInt2 sizeWithoutBanner_GmDocument (const iGmDocument *); | |||
80 | iRangecc findText_GmDocument (const iGmDocument *, const iString *text, const char *start); | 80 | iRangecc findText_GmDocument (const iGmDocument *, const iString *text, const char *start); |
81 | iRangecc findTextBefore_GmDocument (const iGmDocument *, const iString *text, const char *before); | 81 | iRangecc findTextBefore_GmDocument (const iGmDocument *, const iString *text, const char *before); |
82 | 82 | ||
83 | enum iGmLinkPart { | ||
84 | icon_GmLinkPart, | ||
85 | text_GmLinkPart, | ||
86 | textHover_GmLinkPart, | ||
87 | domain_GmLinkPart, | ||
88 | visited_GmLinkPart, | ||
89 | }; | ||
90 | |||
83 | const iGmRun * findRun_GmDocument (const iGmDocument *, iInt2 pos); | 91 | const iGmRun * findRun_GmDocument (const iGmDocument *, iInt2 pos); |
84 | const char * findLoc_GmDocument (const iGmDocument *, iInt2 pos); | 92 | const char * findLoc_GmDocument (const iGmDocument *, iInt2 pos); |
85 | const iGmRun * findRunAtLoc_GmDocument (const iGmDocument *, const char *loc); | 93 | const iGmRun * findRunAtLoc_GmDocument (const iGmDocument *, const char *loc); |
86 | const iString * linkUrl_GmDocument (const iGmDocument *, iGmLinkId linkId); | 94 | const iString * linkUrl_GmDocument (const iGmDocument *, iGmLinkId linkId); |
87 | uint16_t linkImage_GmDocument (const iGmDocument *, iGmLinkId linkId); | 95 | uint16_t linkImage_GmDocument (const iGmDocument *, iGmLinkId linkId); |
88 | int linkFlags_GmDocument (const iGmDocument *, iGmLinkId linkId); | 96 | int linkFlags_GmDocument (const iGmDocument *, iGmLinkId linkId); |
89 | enum iColorId linkColor_GmDocument (const iGmDocument *, iGmLinkId linkId); | 97 | enum iColorId linkColor_GmDocument (const iGmDocument *, iGmLinkId linkId, enum iGmLinkPart part); |
90 | const iTime * linkTime_GmDocument (const iGmDocument *, iGmLinkId linkId); | 98 | const iTime * linkTime_GmDocument (const iGmDocument *, iGmLinkId linkId); |
91 | iBool isMediaLink_GmDocument (const iGmDocument *, iGmLinkId linkId); | 99 | iBool isMediaLink_GmDocument (const iGmDocument *, iGmLinkId linkId); |
92 | const iString * title_GmDocument (const iGmDocument *); | 100 | const iString * title_GmDocument (const iGmDocument *); |