Update preset.
[bertos.git] / bertos / dt / editint.c
1 /**
2  * \file
3  * <!--
4  * This file is part of BeRTOS.
5  *
6  * Bertos is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19  *
20  * As a special exception, you may use this file as part of a free software
21  * library without restriction.  Specifically, if other files instantiate
22  * templates or use macros or inline functions from this file, or you compile
23  * this file and link it with other files to produce an executable, this
24  * file does not by itself cause the resulting executable to be covered by
25  * the GNU General Public License.  This exception does not however
26  * invalidate any other reasons why the executable file might be covered by
27  * the GNU General Public License.
28  *
29  * Copyright 2005 Develer S.r.l. (http://www.develer.com/)
30  * -->
31  *
32  * \brief Integer edit widget (implementation).
33  *
34  * \author Bernie Innocenti <bernie@codewiz.org>
35  * \author Francesco Sacchi <batt@develer.com>
36  */
37
38 #include "editint.h"
39
40 #include <cfg/macros.h>
41
42 #include <dt/dwidget.h>
43 #include <dt/dtag.h>
44 #include <dt/dnotifier.h>
45
46 #include <drv/lcd_text.h>
47
48 /**
49  * Init.
50  */
51 void editint_init(DEditInt *e, dpos_t pos, dpos_t size, dcontext_t *context, int *value, int min, int max)
52 {
53         // Initialize superclass
54         widget_init(&e->widget, pos, size, context);
55
56         // Override superclass methods
57         e->widget.notifier.update = (update_func_ptr)editint_update;
58
59         // Init instance
60         e->value = value;
61         e->min = min;
62         e->max = max;
63         e->style = EDIS_DEFAULT;
64         e->draw = editint_draw;
65 }
66
67 /**
68  * Handle the messages (edit the int).
69  */
70 void editint_update(DEditInt *e, dtag_t tag, dval_t _val)
71 {
72         bool changed = false;
73         int val = (int)_val;
74
75         switch (tag)
76         {
77         case TAG_SETVALUE:
78                 *e->value = MINMAX(e->min, val, e->max);
79                 changed = true;
80                 break;
81
82         /* Increments the integer by val */
83         case TAG_UP:
84                 if (e->style & EDIS_WRAP)
85                 {
86                         if (*e->value + val > e->max)
87                                 *e->value = (*e->value + val - e->min) % (e->max - e->min + 1) + e->min;
88                         else
89                                 *e->value += val;
90                 }
91                 else
92                         *e->value = MIN(*e->value + val, e->max);
93                 changed = true;
94                 break;
95         /* Decrements the integer by val */
96         case TAG_DOWN:
97                 if (e->style & EDIS_WRAP)
98                 {
99                         if (*e->value - val < e->min)
100                                 *e->value = e->max - (e->max - (*e->value - val)) % (e->max - e->min + 1);
101                         else
102                                 *e->value -= val;
103                 }
104                 else
105                         *e->value = MAX(*e->value - val, e->min);
106                 changed = true;
107                 break;
108
109         default:
110                 break;
111         }
112
113         if (changed)
114         {
115                 e->draw(e);
116                 dnotify_targets(&e->widget.notifier, TAG_SETVALUE, (dval_t)*e->value);
117         }
118 }
119
120 /**
121  * Draw the integer on the context.
122  */
123 void editint_draw(DEditInt *e)
124 {
125         lcd_printf((Layer *)e->widget.context, (lcdpos_t)e->widget.pos, LCD_NORMAL,"%*d", (int)e->widget.size, *e->value);
126 }