diff options
Diffstat (limited to 'src/gui/scrollarea.h')
-rw-r--r-- | src/gui/scrollarea.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/gui/scrollarea.h b/src/gui/scrollarea.h index 63c8a122..c5b8c94d 100644 --- a/src/gui/scrollarea.h +++ b/src/gui/scrollarea.h @@ -53,6 +53,16 @@ class ScrollArea : public gcn::ScrollArea { * Draws the background and border of the scroll area. */ void drawBorder(gcn::Graphics *graphics); + + protected: + void drawUpButton(gcn::Graphics *graphics); + void drawDownButton(gcn::Graphics *graphics); + void drawLeftButton(gcn::Graphics *graphics); + void drawRightButton(gcn::Graphics *graphics); + void drawVBar(gcn::Graphics *graphics); + void drawHBar(gcn::Graphics *graphics); + void drawVMarker(gcn::Graphics *graphics); + void drawHMarker(gcn::Graphics *graphics); }; #endif |