aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorAndrew Hannam <andrewh@inmarket.com.au>2013-04-06 21:54:19 +1000
committerAndrew Hannam <andrewh@inmarket.com.au>2013-04-06 21:54:19 +1000
commitee19104dbb51b98a8753414854cc6c5cdee42a55 (patch)
tree1c2628cac2869e94ed6fe9246a0701a0784ca702 /include
parenta67cafeaa7fad2c9611647a8c9f71531750e260a (diff)
downloaduGFX-ee19104dbb51b98a8753414854cc6c5cdee42a55.tar.gz
uGFX-ee19104dbb51b98a8753414854cc6c5cdee42a55.tar.bz2
uGFX-ee19104dbb51b98a8753414854cc6c5cdee42a55.zip
GWIN slider + image support
Diffstat (limited to 'include')
-rw-r--r--include/gwin/gwin.h24
-rw-r--r--include/gwin/options.h7
-rw-r--r--include/gwin/slider.h233
3 files changed, 264 insertions, 0 deletions
diff --git a/include/gwin/gwin.h b/include/gwin/gwin.h
index e6b42b31..47c2e38d 100644
--- a/include/gwin/gwin.h
+++ b/include/gwin/gwin.h
@@ -488,6 +488,29 @@ void gwinBlitArea(GHandle gh, coord_t x, coord_t y, coord_t cx, coord_t cy, coor
void gwinFillConvexPoly(GHandle gh, coord_t tx, coord_t ty, const point *pntarray, unsigned cnt);
#endif
+#if GDISP_NEED_IMAGE || defined(__DOXYGEN__)
+ /**
+ * @brief Draw the image
+ * @return GDISP_IMAGE_ERR_OK (0) on success or an error code.
+ *
+ * @param[in] gh The window handle
+ * @param[in] img The image structure
+ * @param[in] x,y The window location to draw the image
+ * @param[in] cx,cy The area on the screen to draw
+ * @param[in] sx,sy The image position to start drawing at
+ *
+ * @pre gdispImageOpen() must have returned successfully.
+ *
+ * @note If sx,sy + cx,cy is outside the image boundaries the area outside the image
+ * is simply not drawn.
+ * @note If @p gdispImageCache() has been called first for this frame, this routine will draw using a
+ * fast blit from the cached frame. If not, it reads the input and decodes it as it
+ * is drawing. This may be significantly slower than if the image has been cached (but
+ * uses a lot less RAM)
+ */
+ gdispImageError gwinImageDraw(GHandle gh, gdispImage *img, coord_t x, coord_t y, coord_t cx, coord_t cy, coord_t sx, coord_t sy);
+#endif
+
#ifdef __cplusplus
}
#endif
@@ -496,6 +519,7 @@ void gwinBlitArea(GHandle gh, coord_t x, coord_t y, coord_t cx, coord_t cy, coor
#include "gwin/console.h"
#include "gwin/button.h"
#include "gwin/graph.h"
+#include "gwin/slider.h"
#endif /* GFX_USE_GWIN */
diff --git a/include/gwin/options.h b/include/gwin/options.h
index 4ec9ba5d..e8d527e0 100644
--- a/include/gwin/options.h
+++ b/include/gwin/options.h
@@ -59,6 +59,13 @@
#ifndef GWIN_NEED_GRAPH
#define GWIN_NEED_GRAPH FALSE
#endif
+ /**
+ * @brief Should slider functions be included.
+ * @details Defaults to FALSE
+ */
+ #ifndef GWIN_NEED_SLIDER
+ #define GWIN_NEED_SLIDER FALSE
+ #endif
/**
* @}
*
diff --git a/include/gwin/slider.h b/include/gwin/slider.h
new file mode 100644
index 00000000..c7599b33
--- /dev/null
+++ b/include/gwin/slider.h
@@ -0,0 +1,233 @@
+/*
+ ChibiOS/GFX - Copyright (C) 2012, 2013
+ Joel Bodenmann aka Tectu <joel@unormal.org>
+
+ This file is part of ChibiOS/GFX.
+
+ ChibiOS/GFX is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 3 of the License, or
+ (at your option) any later version.
+
+ ChibiOS/GFX is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+/**
+ * @file include/gwin/slider.h
+ * @brief GWIN Graphic window subsystem header file.
+ *
+ * @defgroup Slider Slider
+ * @ingroup GWIN
+ *
+ * @details Create sliders with different styles
+ *
+ * @pre GFX_USE_GWIN must be set to TRUE in your gfxconf.h
+ * @pre GWIN_NEED_SLIDER must be set to TRUE in your gfxconf.h
+ * @{
+ */
+
+#ifndef _GWIN_SLIDER_H
+#define _GWIN_SLIDER_H
+
+#if GWIN_NEED_SLIDER || defined(__DOXYGEN__)
+
+/*===========================================================================*/
+/* Driver constants. */
+/*===========================================================================*/
+
+#define GW_SLIDER 0x0004
+#define GEVENT_GWIN_SLIDER (GEVENT_GWIN_FIRST+1)
+
+/*===========================================================================*/
+/* Type definitions */
+/*===========================================================================*/
+
+typedef struct GEventGWinSlider_t {
+ GEventType type; // The type of this event (GEVENT_GWIN_BUTTON)
+ GHandle slider; // The slider that is returning results
+ int position;
+} GEventGWinSlider;
+
+// There are currently no GEventGWinSlider listening flags - use 0
+
+typedef struct GSliderDrawStyle_t {
+ color_t color_edge;
+ color_t color_thumb;
+ color_t color_active;
+ color_t color_inactive;
+} GSliderDrawStyle;
+
+typedef void (*GSliderDrawFunction)(GHandle gh, bool_t isVertical, coord_t thumbpos, const GSliderDrawStyle *pstyle, void *param);
+
+// A button window
+typedef struct GSliderObject_t {
+ GWindowObject gwin;
+
+ GSliderDrawStyle style;
+ bool_t tracking;
+ int min;
+ int max;
+ int pos;
+ GSliderDrawFunction fn;
+ void *param;
+ GListener listener;
+} GSliderObject;
+
+/*===========================================================================*/
+/* External declarations. */
+/*===========================================================================*/
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+/**
+ * @brief Create a slider window.
+ * @return NULL if there is no resultant drawing area, otherwise a window handle.
+ *
+ * @param[in] gb The GSliderObject structure to initialise. If this is NULL the structure is dynamically allocated.
+ * @param[in] x,y The screen co-ordinates for the bottom left corner of the window
+ * @param[in] width The width of the window
+ * @param[in] height The height of the window
+ * @note The drawing color gets set to White and the background drawing color to Black.
+ * @note The dimensions and position may be changed to fit on the real screen.
+ * @note The slider is not automatically drawn. Call gwinSliderDraw() after changing the slider style.
+ * @note Sets the slider range from 0 to 100 with an initial position of 0
+ *
+ * @api
+ */
+GHandle gwinCreateSlider(GSliderObject *gb, coord_t x, coord_t y, coord_t width, coord_t height);
+
+/**
+ * @brief Set the slider range.
+ *
+ * @param[in] gh The window handle (must be a slider window)
+ * @param[in] min The minimum value
+ * @param[in] max The maximum value
+ * @note Sets the position to the minimum value.
+ * @note The slider is not automatically drawn. Call gwinSliderDraw() after changing the range.
+ *
+ * @api
+ */
+void gwinSetSliderRange(GHandle gh, int min, int max);
+
+/**
+ * @brief Set the slider position.
+ *
+ * @param[in] gh The window handle (must be a slider window)
+ * @param[in] pos The new position
+ * @note If the new position is outside the slider range then the position
+ * is set to the closest end of the range.
+ * @note The slider is not automatically drawn. Call gwinSliderDraw() after changing the position.
+ *
+ * @api
+ */
+void gwinSetSliderPosition(GHandle gh, int pos);
+
+/**
+ * @brief Set the style of a slider.
+ * @details The slider style is defined by its colours.
+ *
+ * @param[in] gh The window handle (must be a slider window)
+ * @param[in] pStyle The styling for the slider.
+ *
+ * @note The slider is not automatically redrawn. Call gwinSliderDraw() after changing the slider style
+ * @note The slider style is copied into the internal slider structure - there is no need to
+ * maintain a static style structure.
+ *
+ * @api
+ */
+void gwinSetSliderStyle(GHandle gh, const GSliderDrawStyle *pStyle);
+
+/**
+ * @brief Redraw the slider.
+ *
+ * @param[in] gh The window handle (must be a slider window)
+ *
+ * @api
+ */
+void gwinSliderDraw(GHandle gh);
+
+/**
+ * @brief Set the callback routine to perform a custom button drawing.
+ *
+ * @param[in] gh The window handle (must be a button window)
+ * @param[in] fn The function to use to draw the button
+ * @param[in] param A parameter to pass to the button drawing function
+ *
+ * @api
+ */
+void gwinSetSliderCustom(GHandle gh, GSliderDrawFunction fn, void *param);
+
+/**
+ * @brief Get the current slider position.
+ * @return The slider position
+ *
+ * @param[in] gh The window handle (must be a button window)
+ *
+ * @note The use of a listener to get the slider position is recommended if you
+ * want continuous updates on the slider position.
+ *
+ * @api
+ */
+#define gwinGetSliderPosition(gh) (((GSliderObject *)(gh))->pos)
+
+/**
+ * @brief Get the source handle of a slider
+ * @details Get the source handle of a slider so the application can listen for events
+ *
+ * @param[in] gh The window handle
+ *
+ * @api
+ */
+#define gwinGetSliderSource(gh) ((GSourceHandle)(gh))
+
+#if defined(GINPUT_NEED_MOUSE) && GINPUT_NEED_MOUSE
+ /**
+ * @brief Attach a mouse source
+ * @details Attach a mouse source to a slider
+ *
+ * @param[in] gh The button handle
+ * @param[in] gsh The source handle
+ *
+ * @api
+ */
+ bool_t gwinAttachSliderMouseSource(GHandle gh, GSourceHandle gsh);
+#endif
+
+/**
+ * @brief Standard slider drawing routines
+ * @details This routine is called to draw the standard slider.
+ *
+ * @param[in] gh The button handle
+ * @param[in] isVertical The slider is vertically oriented instead of horizontal
+ * @param[in] thumbpos The position of the slider (0..cx-1 or cy-1..0)
+ * @param[in] pstyle The current drawing style
+ * @param[in] param A parameter passed in from the user
+ *
+ * @note In your custom slider drawing function you may optionally call this
+ * standard functions and then draw your extra details on top.
+ * @note The standard functions below ignore the param parameter. It is there
+ * only to ensure the functions match the GSliderDrawFunction type.
+ * @note When called by a slider the framework ensure that it is
+ * a slider object and sets up clipping to the slider object window. These
+ * drawing routines then don't have to worry about explicitly doing that.
+ *
+ * @api
+ */
+void gwinSliderDraw_Std(GHandle gh, bool_t isVertical, coord_t thumbpos, const GSliderDrawStyle *pstyle, void *param);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* GWIN_NEED_SLIDER */
+
+#endif /* _GWIN_SLIDER_H */
+/** @} */
+