summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2011-07-19 21:18:14 +0300
committerAndrei Karas <akaras@inbox.ru>2011-07-19 22:24:00 +0300
commitca945c9bd62318109246443c6d43091885e817b1 (patch)
treec718a5fb680ad348317d6b9816eb5777eab14418 /src
parentdf948918905e15c62474a52dc895c6d1c181c506 (diff)
downloadplus-ca945c9bd62318109246443c6d43091885e817b1.tar.gz
plus-ca945c9bd62318109246443c6d43091885e817b1.tar.bz2
plus-ca945c9bd62318109246443c6d43091885e817b1.tar.xz
plus-ca945c9bd62318109246443c6d43091885e817b1.zip
Optimisations in scrollarea class.
Diffstat (limited to 'src')
-rw-r--r--src/guichan/include/guichan/widgets/scrollarea.hpp14
-rw-r--r--src/guichan/widgets/scrollarea.cpp84
2 files changed, 58 insertions, 40 deletions
diff --git a/src/guichan/include/guichan/widgets/scrollarea.hpp b/src/guichan/include/guichan/widgets/scrollarea.hpp
index 0b2ccad92..29f95ad85 100644
--- a/src/guichan/include/guichan/widgets/scrollarea.hpp
+++ b/src/guichan/include/guichan/widgets/scrollarea.hpp
@@ -433,42 +433,42 @@ namespace gcn
*
* @return the dimension of the up button.
*/
- Rectangle getUpButtonDimension();
+ Rectangle getUpButtonDimension() const;
/**
* Gets the down button dimension.
*
* @return the dimension of the down button.
*/
- Rectangle getDownButtonDimension();
+ Rectangle getDownButtonDimension() const;
/**
* Gets the left button dimension.
*
* @return the dimension of the left button.
*/
- Rectangle getLeftButtonDimension();
+ Rectangle getLeftButtonDimension() const;
/**
* Gets the right button dimension.
*
* @return the dimension of the right button.
*/
- Rectangle getRightButtonDimension();
+ Rectangle getRightButtonDimension() const;
/**
* Gets the vertical scrollbar dimension.
*
* @return the dimension of the vertical scrollbar.
*/
- Rectangle getVerticalBarDimension();
+ Rectangle getVerticalBarDimension() const;
/**
* Gets the horizontal scrollbar dimension.
*
* @return the dimension of the horizontal scrollbar.
*/
- Rectangle getHorizontalBarDimension();
+ Rectangle getHorizontalBarDimension() const;
/**
* Gets the vertical marker dimension.
@@ -483,7 +483,7 @@ namespace gcn
* @return the dimension of the horizontal marker.
*/
Rectangle getHorizontalMarkerDimension();
-
+
/**
* Holds the vertical scroll amount.
*/
diff --git a/src/guichan/widgets/scrollarea.cpp b/src/guichan/widgets/scrollarea.cpp
index 8001e1d5e..7dc7566c0 100644
--- a/src/guichan/widgets/scrollarea.cpp
+++ b/src/guichan/widgets/scrollarea.cpp
@@ -159,10 +159,8 @@ namespace gcn
Widget* ScrollArea::getContent()
{
- if (mWidgets.size() > 0)
- {
+ if (!mWidgets.empty())
return *mWidgets.begin();
- }
return NULL;
}
@@ -372,12 +370,12 @@ namespace gcn
{
if (mIsVerticalMarkerDragged)
{
- int pos = mouseEvent.getY() - getVerticalBarDimension().y
+ Rectangle barDim = getVerticalBarDimension();
+
+ int pos = mouseEvent.getY() - barDim.y
- mVerticalMarkerDragOffset;
int length = getVerticalMarkerDimension().height;
- Rectangle barDim = getVerticalBarDimension();
-
if ((barDim.height - length) > 0)
{
setVerticalScrollAmount((getVerticalMaxScroll() * pos)
@@ -391,12 +389,12 @@ namespace gcn
if (mIsHorizontalMarkerDragged)
{
- int pos = mouseEvent.getX() - getHorizontalBarDimension().x
+ Rectangle barDim = getHorizontalBarDimension();
+
+ int pos = mouseEvent.getX() - barDim.x
- mHorizontalMarkerDragOffset;
int length = getHorizontalMarkerDimension().width;
- Rectangle barDim = getHorizontalBarDimension();
-
if ((barDim.width - length) > 0)
{
setHorizontalScrollAmount((getHorizontalMaxScroll() * pos)
@@ -896,7 +894,7 @@ namespace gcn
}
}
- Rectangle ScrollArea::getUpButtonDimension()
+ Rectangle ScrollArea::getUpButtonDimension() const
{
if (!mVBarVisible)
return Rectangle(0, 0, 0, 0);
@@ -905,7 +903,7 @@ namespace gcn
mScrollbarWidth, mScrollbarWidth);
}
- Rectangle ScrollArea::getDownButtonDimension()
+ Rectangle ScrollArea::getDownButtonDimension() const
{
if (!mVBarVisible)
return Rectangle(0, 0, 0, 0);
@@ -924,7 +922,7 @@ namespace gcn
mScrollbarWidth);
}
- Rectangle ScrollArea::getLeftButtonDimension()
+ Rectangle ScrollArea::getLeftButtonDimension() const
{
if (!mHBarVisible)
return Rectangle(0, 0, 0, 0);
@@ -933,7 +931,7 @@ namespace gcn
mScrollbarWidth, mScrollbarWidth);
}
- Rectangle ScrollArea::getRightButtonDimension()
+ Rectangle ScrollArea::getRightButtonDimension() const
{
if (!mHBarVisible)
return Rectangle(0, 0, 0, 0);
@@ -964,7 +962,7 @@ namespace gcn
return area;
}
- Rectangle ScrollArea::getVerticalBarDimension()
+ Rectangle ScrollArea::getVerticalBarDimension() const
{
if (!mVBarVisible)
return Rectangle(0, 0, 0, 0);
@@ -988,7 +986,7 @@ namespace gcn
- getDownButtonDimension().height);
}
- Rectangle ScrollArea::getHorizontalBarDimension()
+ Rectangle ScrollArea::getHorizontalBarDimension() const
{
if (!mHBarVisible)
return Rectangle(0, 0, 0, 0);
@@ -1018,27 +1016,38 @@ namespace gcn
return Rectangle(0, 0, 0, 0);
int length, pos;
- Rectangle barDim = getVerticalBarDimension();
+ int height;
+
+ if (mHBarVisible)
+ {
+ height = getHeight() - getUpButtonDimension().height
+ - getDownButtonDimension().height - mScrollbarWidth;
+ }
+ else
+ {
+ height = getHeight() - getUpButtonDimension().height
+ - getDownButtonDimension().height;
+ }
if (getContent() && getContent()->getHeight() != 0)
{
- length = (barDim.height * getChildrenArea().height)
+ length = (height * getChildrenArea().height)
/ getContent()->getHeight();
}
else
{
- length = barDim.height;
+ length = height;
}
if (length < mScrollbarWidth)
length = mScrollbarWidth;
- if (length > barDim.height)
- length = barDim.height;
+ if (length > height)
+ length = height;
if (getVerticalMaxScroll() != 0)
{
- pos = ((barDim.height - length) * getVerticalScrollAmount())
+ pos = ((height - length) * getVerticalScrollAmount())
/ getVerticalMaxScroll();
}
else
@@ -1046,7 +1055,8 @@ namespace gcn
pos = 0;
}
- return Rectangle(barDim.x, barDim.y + pos, mScrollbarWidth, length);
+ return Rectangle(getWidth() - mScrollbarWidth,
+ getUpButtonDimension().height + pos, mScrollbarWidth, length);
}
Rectangle ScrollArea::getHorizontalMarkerDimension()
@@ -1055,31 +1065,38 @@ namespace gcn
return Rectangle(0, 0, 0, 0);
int length, pos;
- Rectangle barDim = getHorizontalBarDimension();
+ int width;
+
+ if (mVBarVisible)
+ {
+ width = getWidth() - getLeftButtonDimension().width
+ - getRightButtonDimension().width - mScrollbarWidth;
+ }
+ else
+ {
+ width = getWidth() - getLeftButtonDimension().width
+ - getRightButtonDimension().width;
+ }
if (getContent() && getContent()->getWidth() != 0)
{
- length = (barDim.width * getChildrenArea().width)
+ length = (width * getChildrenArea().width)
/ getContent()->getWidth();
}
else
{
- length = barDim.width;
+ length = width;
}
if (length < mScrollbarWidth)
- {
length = mScrollbarWidth;
- }
- if (length > barDim.width)
- {
- length = barDim.width;
- }
+ if (length > width)
+ length = width;
if (getHorizontalMaxScroll() != 0)
{
- pos = ((barDim.width - length) * getHorizontalScrollAmount())
+ pos = ((width - length) * getHorizontalScrollAmount())
/ getHorizontalMaxScroll();
}
else
@@ -1087,7 +1104,8 @@ namespace gcn
pos = 0;
}
- return Rectangle(barDim.x + pos, barDim.y, length, mScrollbarWidth);
+ return Rectangle(getLeftButtonDimension().width + pos,
+ getHeight() - mScrollbarWidth, length, mScrollbarWidth);
}
void ScrollArea::showWidgetPart(Widget* widget, Rectangle area)