diff options
author | Jaakko Keränen <jaakko.keranen@iki.fi> | 2020-07-26 22:00:14 +0300 |
---|---|---|
committer | Jaakko Keränen <jaakko.keranen@iki.fi> | 2020-07-26 22:00:14 +0300 |
commit | 6d8d188237324fc1379859251ca66f1ba4247589 (patch) | |
tree | 1c7f95edf7ad96bf80c4586271ce0e869c989147 /src/gmdocument.h | |
parent | be6438af11dec5ee10b68fe315b3bc74d2877f8e (diff) |
Finding text in the document
Diffstat (limited to 'src/gmdocument.h')
-rw-r--r-- | src/gmdocument.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/gmdocument.h b/src/gmdocument.h index 22e614ea..01ade5d3 100644 --- a/src/gmdocument.h +++ b/src/gmdocument.h | |||
@@ -28,6 +28,8 @@ typedef void (*iGmDocumentRenderFunc)(void *, const iGmRun *); | |||
28 | void render_GmDocument (const iGmDocument *, iRangei visRangeY, iGmDocumentRenderFunc render, void *); | 28 | void render_GmDocument (const iGmDocument *, iRangei visRangeY, iGmDocumentRenderFunc render, void *); |
29 | iInt2 size_GmDocument (const iGmDocument *); | 29 | iInt2 size_GmDocument (const iGmDocument *); |
30 | 30 | ||
31 | const iGmRun * findRun_GmDocument (const iGmDocument *, iInt2 pos); | 31 | iRangecc findText_GmDocument (const iGmDocument *, const iString *text, const char *start); |
32 | const iString * linkUrl_GmDocument (const iGmDocument *, iGmLinkId linkId); | 32 | const iGmRun * findRun_GmDocument (const iGmDocument *, iInt2 pos); |
33 | const iString * title_GmDocument (const iGmDocument *); | 33 | const iGmRun * findRunCStr_GmDocument (const iGmDocument *, const char *textCStr); |
34 | const iString * linkUrl_GmDocument (const iGmDocument *, iGmLinkId linkId); | ||
35 | const iString * title_GmDocument (const iGmDocument *); | ||