summaryrefslogtreecommitdiff
path: root/NxWidgets/libnxwidgets/src/ccyclebutton.cxx
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-12-21 20:09:32 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-12-21 20:09:32 +0000
commit1b917134adffafb33057be34683b5f73807aeca8 (patch)
treea548cfe35af25a0d7b7b3a8a304784c334aecdb6 /NxWidgets/libnxwidgets/src/ccyclebutton.cxx
parent2e885817755dbb96fa4183a312ea181b28bb70b1 (diff)
downloadpx4-nuttx-1b917134adffafb33057be34683b5f73807aeca8.tar.gz
px4-nuttx-1b917134adffafb33057be34683b5f73807aeca8.tar.bz2
px4-nuttx-1b917134adffafb33057be34683b5f73807aeca8.zip
Patches from Petteri Aimonen (plus a few other things)
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5448 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'NxWidgets/libnxwidgets/src/ccyclebutton.cxx')
-rw-r--r--NxWidgets/libnxwidgets/src/ccyclebutton.cxx19
1 files changed, 0 insertions, 19 deletions
diff --git a/NxWidgets/libnxwidgets/src/ccyclebutton.cxx b/NxWidgets/libnxwidgets/src/ccyclebutton.cxx
index b5f96683d..0fdbba73c 100644
--- a/NxWidgets/libnxwidgets/src/ccyclebutton.cxx
+++ b/NxWidgets/libnxwidgets/src/ccyclebutton.cxx
@@ -309,30 +309,21 @@ void CCycleButton::drawContents(CGraphicsPort *port)
CRect rect;
getRect(rect);
- nxgl_coord_t glyphSpace = m_borderSize.left - 1;
nxgl_coord_t glyphYOffset = (rect.getHeight() - g_cycle.height) >> 1;
nxwidget_pixel_t textColor;
- nxwidget_pixel_t separatorLeftColor;
- nxwidget_pixel_t separatorRightColor;
if (!isEnabled())
{
textColor = getDisabledTextColor();
- separatorLeftColor = getShadowEdgeColor();
- separatorRightColor = getShineEdgeColor();
}
else if (!isClicked())
{
textColor = getEnabledTextColor();
- separatorLeftColor = getShadowEdgeColor();
- separatorRightColor = getShineEdgeColor();
}
else
{
textColor = getSelectedTextColor();
- separatorLeftColor = getShineEdgeColor();
- separatorRightColor = getShadowEdgeColor();
}
// Draw cycle glyph
@@ -341,16 +332,6 @@ void CCycleButton::drawContents(CGraphicsPort *port)
g_cycle.width, g_cycle.height, &g_cycle,
0, 0, CONFIG_NXWIDGETS_TRANSPARENT_COLOR);
- // Draw separator
-
- nxgl_coord_t x = getX() + glyphSpace + g_cycle.width;
- nxgl_coord_t y = getY();
- nxgl_coord_t w = glyphSpace + g_cycle.width;
- nxgl_coord_t h = rect.getHeight() - 1;
-
- port->drawLine(x, y, w, h, separatorLeftColor);
- port->drawLine(x+1, y, w+1, h, separatorRightColor);
-
// Only draw text if option is selected
if (m_options.getSelectedItem() != NULL)