summaryrefslogtreecommitdiff
path: root/NxWidgets/libnxwidgets/include/cslidervertical.hxx
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-07-16 11:11:55 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-07-16 11:11:55 -0600
commit789172023edd1e4d082824983cb4ac8c59d00b95 (patch)
treee8d88c24026c15cd19094464bffc823e19407480 /NxWidgets/libnxwidgets/include/cslidervertical.hxx
parent8e932634ac53d6ac42d60d805ccee4e2e285aa72 (diff)
downloadnuttx-789172023edd1e4d082824983cb4ac8c59d00b95.tar.gz
nuttx-789172023edd1e4d082824983cb4ac8c59d00b95.tar.bz2
nuttx-789172023edd1e4d082824983cb4ac8c59d00b95.zip
NxWM::CMediaPlayer: Fix of state related bugs + Size if CLabel is increased (in preparation for becoming a CListBox)
Diffstat (limited to 'NxWidgets/libnxwidgets/include/cslidervertical.hxx')
-rw-r--r--NxWidgets/libnxwidgets/include/cslidervertical.hxx22
1 files changed, 11 insertions, 11 deletions
diff --git a/NxWidgets/libnxwidgets/include/cslidervertical.hxx b/NxWidgets/libnxwidgets/include/cslidervertical.hxx
index f08010f3c..a63611823 100644
--- a/NxWidgets/libnxwidgets/include/cslidervertical.hxx
+++ b/NxWidgets/libnxwidgets/include/cslidervertical.hxx
@@ -1,7 +1,7 @@
/****************************************************************************
* NxWidgets/libnxwidgets/include/cslidervertical.hxx
*
- * Copyright (C) 2012 Gregory Nutt. All rights reserved.
+ * Copyright (C) 2012, 2014 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
*
* Redistribution and use in source and binary forms, with or without
@@ -110,8 +110,8 @@ namespace NXWidgets
{
protected:
CSliderVerticalGrip* m_grip; /**< Pointer to the grip. */
- nxgl_coord_t m_minimumValue; /**< Minimum value that the grip can represent. */
- nxgl_coord_t m_maximumValue; /**< Maximum value that the grip can represent. */
+ int m_minimumValue; /**< Minimum value that the grip can represent. */
+ int m_maximumValue; /**< Maximum value that the grip can represent. */
int32_t m_value; /**< Current value of the slider. */
nxgl_coord_t m_minimumGripHeight; /**< Smallest height that the grip can become. */
nxgl_coord_t m_pageSize; /**< Value of a page of data, used when clicking
@@ -124,7 +124,7 @@ namespace NXWidgets
* Get the maximum possible value that the slider can represent. Useful when
* using the slider as a scrollbar, as the height of the grip prevents the full
* range of values being accessed (intentionally).
- * The returned value is bitshfted left 16 places for more accuracy in fixed-point
+ * The returned value is shifted left 16 places for more accuracy in fixed-point
* calculations.
*
* @return The maximum possible value that the slider can represent.
@@ -219,7 +219,7 @@ namespace NXWidgets
* @return The smallest value.
*/
- inline const nxgl_coord_t getMinimumValue(void) const
+ inline const int getMinimumValue(void) const
{
return m_minimumValue;
}
@@ -230,7 +230,7 @@ namespace NXWidgets
* @return The largest value.
*/
- inline const nxgl_coord_t getMaximumValue(void) const
+ inline const int getMaximumValue(void) const
{
return m_maximumValue;
}
@@ -240,7 +240,7 @@ namespace NXWidgets
* return The current slider value.
*/
- inline const nxgl_coord_t getValue(void) const
+ inline const int getValue(void) const
{
return m_value >> 16;
}
@@ -265,7 +265,7 @@ namespace NXWidgets
* @param value The smallest value.
*/
- inline void setMinimumValue(const nxgl_coord_t value)
+ inline void setMinimumValue(const int value)
{
m_minimumValue = value;
m_contentSize = m_maximumValue - m_minimumValue + 1;
@@ -278,7 +278,7 @@ namespace NXWidgets
* @param value The largest value.
*/
- inline void setMaximumValue(const nxgl_coord_t value)
+ inline void setMaximumValue(const int value)
{
m_maximumValue = value;
m_contentSize = m_maximumValue - m_minimumValue + 1;
@@ -292,11 +292,11 @@ namespace NXWidgets
* @param value The new value.
*/
- void setValue(const nxgl_coord_t value);
+ void setValue(const int value);
/**
* Set the value that of the slider. This will reposition and redraw
- * the grip. The supplied value should be bitshifted left 16 places.
+ * the grip. The supplied value should be shifted left 16 places.
* This ensures greater accuracy than the standard setValue() method if
* the slider is being used as a scrollbar.
*