Refactor BeRTOS to be in his own directory.
[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  * \version $Id$
33  *
34  * \brief Integer edit widget (implementation).
35  *
36  * \version $Id$
37  * \author Bernardo Innocenti <bernie@develer.com>
38  * \author Francesco Sacchi <batt@develer.com>
39  */
40
41 /*#*
42  *#* $Log$
43  *#* Revision 1.2  2006/07/19 12:56:26  bernie
44  *#* Convert to new Doxygen style.
45  *#*
46  *#* Revision 1.1  2005/11/04 18:26:38  bernie
47  *#* Import into DevLib.
48  *#*
49  *#* Revision 1.7  2005/06/10 15:46:09  batt
50  *#* Add EDIS_WRAP style that wrap around min and max.
51  *#*
52  *#* Revision 1.6  2005/06/08 17:32:33  batt
53  *#* Switch to new messaging system.
54  *#*
55  *#* Revision 1.5  2005/06/06 11:04:12  batt
56  *#* Add some comments.
57  *#*
58  *#* Revision 1.4  2005/05/31 11:09:34  batt
59  *#* Fix sending pointer instead of value bug.
60  *#*
61  *#* Revision 1.3  2005/05/26 14:46:20  batt
62  *#* Use correct tag; remove warning.
63  *#*
64  *#* Revision 1.2  2005/05/26 14:44:10  batt
65  *#* Abstract widget from layer: use context.
66  *#*
67  *#* Revision 1.1  2005/05/26 08:32:53  batt
68  *#* Add new Develer widget system :)
69  *#*
70  *#*/
71
72 #include <mware/editint.h>
73 #include <dt/dwidget.h>
74 #include <dt/dtag.h>
75 #include <dt/dnotifier.h>
76
77 #include <cfg/macros.h>
78
79 #include <drv/lcd_text.h>
80
81 /**
82  * Init.
83  */
84 void editint_init(DEditInt *e, dpos_t pos, dpos_t size, dcontext_t *context, int *value, int min, int max)
85 {
86         // Initialize superclass
87         widget_init(&e->widget, pos, size, context);
88
89         // Override superclass methods
90         e->widget.notifier.update = (update_func_ptr)editint_update;
91
92         // Init instance
93         e->value = value;
94         e->min = min;
95         e->max = max;
96         e->style = EDIS_DEFAULT;
97         e->draw = editint_draw;
98 }
99
100 /**
101  * Handle the messages (edit the int).
102  */
103 void editint_update(DEditInt *e, dtag_t tag, dval_t _val)
104 {
105         bool changed = false;
106         int val = (int)_val;
107
108         switch (tag)
109         {
110         case TAG_SETVALUE:
111                 *e->value = MINMAX(e->min, val, e->max);
112                 changed = true;
113                 break;
114
115         /* Increments the integer by val */
116         case TAG_UP:
117                 if (e->style & EDIS_WRAP)
118                 {
119                         if (*e->value + val > e->max)
120                                 *e->value = (*e->value + val - e->min) % (e->max - e->min + 1) + e->min;
121                         else
122                                 *e->value += val;
123                 }
124                 else
125                         *e->value = MIN(*e->value + val, e->max);
126                 changed = true;
127                 break;
128         /* Decrements the integer by val */
129         case TAG_DOWN:
130                 if (e->style & EDIS_WRAP)
131                 {
132                         if (*e->value - val < e->min)
133                                 *e->value = e->max - (e->max - (*e->value - val)) % (e->max - e->min + 1);
134                         else
135                                 *e->value -= val;
136                 }
137                 else
138                         *e->value = MAX(*e->value - val, e->min);
139                 changed = true;
140                 break;
141
142         default:
143                 break;
144         }
145
146         if (changed)
147         {
148                 e->draw(e);
149                 dnotify_targets(&e->widget.notifier, TAG_SETVALUE, (dval_t)*e->value);
150         }
151 }
152
153 /**
154  * Draw the integer on the context.
155  */
156 void editint_draw(DEditInt *e)
157 {
158         lcd_printf((Layer *)e->widget.context, (lcdpos_t)e->widget.pos, LCD_NORMAL,"%*d", (int)e->widget.size, *e->value);
159 }