diff options
Diffstat (limited to 'src/gui/widgets/browserbox.h')
-rw-r--r-- | src/gui/widgets/browserbox.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/gui/widgets/browserbox.h b/src/gui/widgets/browserbox.h index 28ec734a..1be74a0f 100644 --- a/src/gui/widgets/browserbox.h +++ b/src/gui/widgets/browserbox.h @@ -92,6 +92,16 @@ class BrowserBox : public gcn::Widget, void setHighlightMode(unsigned int highMode); /** + * Sets whether the font will use a shadow for text. + */ + void setShadowedText(bool shadows) { mShadows = shadows; } + + /** + * Sets whether the font will use a shadow for text. + */ + void setOutlinedText(bool outline) { mOutline = outline; } + + /** * Sets the maximum numbers of rows in the browser box. 0 = no limit. */ void setMaxRow(unsigned max) {mMaxRows = max; }; @@ -197,6 +207,8 @@ class BrowserBox : public gcn::Widget, LinkHandler *mLinkHandler; unsigned int mMode; unsigned int mHighMode; + bool mShadows; + bool mOutline; bool mOpaque; bool mUseLinksAndUserColors; int mSelectedLink; |