Rename myself
[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  * \version $Id$
35  * \author Bernie Innocenti <bernie@codewiz.org>
36  * \author Francesco Sacchi <batt@develer.com>
37  */
38
39 #include "editint.h"
40
41 #include <cfg/macros.h>
42
43 #include <dt/dwidget.h>
44 #include <dt/dtag.h>
45 #include <dt/dnotifier.h>
46
47 #include <drv/lcd_text.h>
48
49 /**
50  * Init.
51  */
52 void editint_init(DEditInt *e, dpos_t pos, dpos_t size, dcontext_t *context, int *value, int min, int max)
53 {
54         // Initialize superclass
55         widget_init(&e->widget, pos, size, context);
56
57         // Override superclass methods
58         e->widget.notifier.update = (update_func_ptr)editint_update;
59
60         // Init instance
61         e->value = value;
62         e->min = min;
63         e->max = max;
64         e->style = EDIS_DEFAULT;
65         e->draw = editint_draw;
66 }
67
68 /**
69  * Handle the messages (edit the int).
70  */
71 void editint_update(DEditInt *e, dtag_t tag, dval_t _val)
72 {
73         bool changed = false;
74         int val = (int)_val;
75
76         switch (tag)
77         {
78         case TAG_SETVALUE:
79                 *e->value = MINMAX(e->min, val, e->max);
80                 changed = true;
81                 break;
82
83         /* Increments the integer by val */
84         case TAG_UP:
85                 if (e->style & EDIS_WRAP)
86                 {
87                         if (*e->value + val > e->max)
88                                 *e->value = (*e->value + val - e->min) % (e->max - e->min + 1) + e->min;
89                         else
90                                 *e->value += val;
91                 }
92                 else
93                         *e->value = MIN(*e->value + val, e->max);
94                 changed = true;
95                 break;
96         /* Decrements the integer by val */
97         case TAG_DOWN:
98                 if (e->style & EDIS_WRAP)
99                 {
100                         if (*e->value - val < e->min)
101                                 *e->value = e->max - (e->max - (*e->value - val)) % (e->max - e->min + 1);
102                         else
103                                 *e->value -= val;
104                 }
105                 else
106                         *e->value = MAX(*e->value - val, e->min);
107                 changed = true;
108                 break;
109
110         default:
111                 break;
112         }
113
114         if (changed)
115         {
116                 e->draw(e);
117                 dnotify_targets(&e->widget.notifier, TAG_SETVALUE, (dval_t)*e->value);
118         }
119 }
120
121 /**
122  * Draw the integer on the context.
123  */
124 void editint_draw(DEditInt *e)
125 {
126         lcd_printf((Layer *)e->widget.context, (lcdpos_t)e->widget.pos, LCD_NORMAL,"%*d", (int)e->widget.size, *e->value);
127 }