summaryrefslogtreecommitdiff
path: root/src/gmdocument.h
diff options
context:
space:
mode:
authorJaakko Keränen <jaakko.keranen@iki.fi>2020-11-28 11:26:37 +0200
committerJaakko Keränen <jaakko.keranen@iki.fi>2020-11-28 11:26:37 +0200
commitb6d0231a53abe3be35f71aa73ddda8654835833f (patch)
treeb4ad5c21ec9f8451dfefc053cf3e8e255d875ecb /src/gmdocument.h
parentff2deccfdf4aba25f04eed2bba442d28e6dba2df (diff)
Cleanup: Removed (hidden) preformatted wrap option
Diffstat (limited to 'src/gmdocument.h')
-rw-r--r--src/gmdocument.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/gmdocument.h b/src/gmdocument.h
index 5234f890..c2a4b272 100644
--- a/src/gmdocument.h
+++ b/src/gmdocument.h
@@ -80,6 +80,7 @@ enum iGmRunFlags {
80 endOfLine_GmRunFlag = iBit(3), 80 endOfLine_GmRunFlag = iBit(3),
81 siteBanner_GmRunFlag = iBit(4), /* area reserved for the site banner */ 81 siteBanner_GmRunFlag = iBit(4), /* area reserved for the site banner */
82 quoteBorder_GmRunFlag = iBit(5), 82 quoteBorder_GmRunFlag = iBit(5),
83 wide_GmRunFlag = iBit(6), /* horizontally scrollable */
83}; 84};
84 85
85struct Impl_GmRun { 86struct Impl_GmRun {
@@ -108,10 +109,10 @@ enum iGmDocumentFormat {
108void setThemeSeed_GmDocument (iGmDocument *, const iBlock *seed); 109void setThemeSeed_GmDocument (iGmDocument *, const iBlock *seed);
109void setFormat_GmDocument (iGmDocument *, enum iGmDocumentFormat format); 110void setFormat_GmDocument (iGmDocument *, enum iGmDocumentFormat format);
110void setSiteBannerEnabled_GmDocument(iGmDocument *, iBool siteBannerEnabled); 111void setSiteBannerEnabled_GmDocument(iGmDocument *, iBool siteBannerEnabled);
111void setWidth_GmDocument (iGmDocument *, int width, int forceBreakWidth); 112void setWidth_GmDocument (iGmDocument *, int width);
112void redoLayout_GmDocument (iGmDocument *); 113void redoLayout_GmDocument (iGmDocument *);
113void setUrl_GmDocument (iGmDocument *, const iString *url); 114void setUrl_GmDocument (iGmDocument *, const iString *url);
114void setSource_GmDocument (iGmDocument *, const iString *source, int width, int forceBreakWidth); 115void setSource_GmDocument (iGmDocument *, const iString *source, int width);
115 116
116void reset_GmDocument (iGmDocument *); /* free images */ 117void reset_GmDocument (iGmDocument *); /* free images */
117 118