aboutsummaryrefslogtreecommitdiff
path: root/test/dw/form.cc
blob: 93c65d3939f29834c49cb08f4ca2cf125ac7e09a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
/*
 * Dillo Widget
 *
 * Copyright 2005-2007 Sebastian Geerken <sgeerken@dillo.org>
 *
 * This program 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.
 *
 * This program 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/>.
 */



#include "form.hh"
#include "dlib/dlib.h"

namespace form {

using namespace dw::core::ui;

Form::ResourceDecorator::ResourceDecorator (const char *name)
{
   this->name = dStrdup (name);
}

Form::ResourceDecorator::~ResourceDecorator ()
{
   free((char *)name);
}

Form::TextResourceDecorator::TextResourceDecorator (const char *name,
                                                  TextResource *resource):
   Form::ResourceDecorator (name)
{
   this->resource = resource;
}

const char *Form::TextResourceDecorator::getValue ()
{
   return resource->getText ();
}

Form::RadioButtonResourceDecorator::RadioButtonResourceDecorator
   (const char *name, RadioButtonResource *resource, const char **values):
      Form::ResourceDecorator (name)
{
   this->resource = resource;

   int n = 0;
   while (values[n])
      n++;
   this->values = new const char*[n + 1];
   for (int i = 0; i < n; i++)
      this->values[i] = dStrdup (values[i]);
   this->values[n] = 0;
}

Form::RadioButtonResourceDecorator::~RadioButtonResourceDecorator ()
{
   for (int i = 0; values[i]; i++)
      free((char *)values[i]);
   delete[] values;
}

const char *Form::RadioButtonResourceDecorator::getValue ()
{
   RadioButtonResource::GroupIterator *it;
   int i;
   for (it = resource->groupIterator (), i = 0; it->hasNext (); i++) {
      RadioButtonResource *resource = it->getNext ();
      if(resource->isActivated ()) {
         it->unref ();
         return values[i];
      }
   }

   it->unref ();
   return NULL;
}

Form::CheckButtonResourceDecorator::CheckButtonResourceDecorator
   (const char *name, CheckButtonResource *resource):
   Form::ResourceDecorator (name)
{
   this->resource = resource;
}

const char *Form::CheckButtonResourceDecorator::getValue ()
{
   return resource->isActivated () ? "true" : NULL;
}

Form::SelectionResourceDecorator::SelectionResourceDecorator
   (const char *name, SelectionResource *resource, const char **values):
      Form::ResourceDecorator (name)
{
   this->resource = resource;

   int n = 0;
   while (values[n])
      n++;
   this->values = new const char*[n + 1];
   for(int i = 0; i < n; i++)
      this->values[i] = dStrdup (values[i]);
   this->values[n] = 0;
}

Form::SelectionResourceDecorator::~SelectionResourceDecorator ()
{
   for(int i = 0; values[i]; i++)
      free((char *)values[i]);
   delete[] values;
}

const char *Form::SelectionResourceDecorator::getValue ()
{
   valueBuf.clear();
   int n = resource->getNumberOfItems ();
   bool first = true;
   for (int i = 0; i < n; i++) {
      if (resource->isSelected (i)) {
         if (!first)
            valueBuf.append (", ");
         valueBuf.append (values[i]);
         first = false;
      }
   }

   return valueBuf.getChars ();
}

void Form::FormActivateReceiver::activate (Resource *resource)
{
   form->send (NULL, NULL, -1, -1);
}

void Form::FormActivateReceiver::enter (Resource *resource)
{
}

void Form::FormActivateReceiver::leave (Resource *resource)
{
}

Form::FormClickedReceiver::FormClickedReceiver (Form *form, const char *name,
                                          const char *value)
{
   this->form = form;
   this->name = dStrdup (name);
   this->value = dStrdup (value);
}

Form::FormClickedReceiver::~FormClickedReceiver ()
{
   free((char *)name);
   free((char *)value);
}

void Form::FormClickedReceiver::clicked (Resource *resource,
                                         dw::core::EventButton *event)
{
   form->send (name, value, event->xCanvas, event->yCanvas);
}

Form::Form ()
{
   resources = new lout::container::typed::List <ResourceDecorator> (true);
   activateReceiver = new FormActivateReceiver (this);
   clickedReceivers =
      new lout::container::typed::List <FormClickedReceiver> (true);
}

Form::~Form ()
{
   delete resources;
   delete activateReceiver;
   delete clickedReceivers;
}

/**
 * \brief Adds an instance of dw::core::ui::TextResource.
 */
void Form::addTextResource (const char *name,
                            dw::core::ui::TextResource *resource)
{
   resources->append (new TextResourceDecorator (name, resource));
   resource->connectActivate (activateReceiver);
}

/**
 * \brief Adds an instance of dw::core::ui::RadioButtonResource.
 *
 * This method has to be called only once for a group of radio buttons.
 */
void Form::addRadioButtonResource (const char *name,
                                   dw::core::ui::RadioButtonResource *resource,
                                   const char **values)
{
   resources->append (new RadioButtonResourceDecorator (name, resource,
                                                        values));
   resource->connectActivate (activateReceiver);
}

/**
 * \brief Adds an instance of dw::core::ui::CheckButtonResource.
 */
void Form::addCheckButtonResource (const char *name,
                                   dw::core::ui::CheckButtonResource *resource)
{
   resources->append (new CheckButtonResourceDecorator (name, resource));
   resource->connectActivate (activateReceiver);
}

/**
 * \brief Adds an instance of dw::core::ui::SelectionResource.
 */
void Form::addSelectionResource (const char *name,
                                 dw::core::ui::SelectionResource *resource,
                                 const char **values)
{
   resources->append (new SelectionResourceDecorator (name, resource, values));
   resource->connectActivate (activateReceiver);
}

/**
 * \todo Comment this;
 */
void Form::addButtonResource (const char *name,
                              dw::core::ui::ButtonResource *resource,
                              const char *value)
{
   FormClickedReceiver *receiver =
      new FormClickedReceiver (this, name, value);
   resource->connectClicked (receiver);
   clickedReceivers->append (receiver);
}

/**
 * \todo Comment this;
 */
void Form::send (const char *buttonName, const char *buttonValue, int x, int y)
{
   for (lout::container::typed::Iterator <ResourceDecorator> it =
           resources->iterator ();
        it.hasNext (); ) {
      ResourceDecorator *resource = it.getNext ();
      const char *value = resource->getValue ();
      if (value)
         printf ("%s = %s; x=%d y=%d\n", resource->getName (), value, x, y);
   }

   if(buttonName && buttonValue)
      printf ("%s = %s\n", buttonName, buttonValue);
}

} // namespace form