summaryrefslogtreecommitdiff
path: root/noncore/apps/tableviewer/ui/tveditview.cpp
blob: ba2bd061e3f0c8b2516febc4e3d6fa7ecbce53fd (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
/**********************************************************************
** Copyright (C) 2000 Trolltech AS.  All rights reserved.
**
** This file is part of Qtopia Environment.
**
** This file may be distributed and/or modified under the terms of the
** GNU General Public License version 2 as published by the Free Software
** Foundation and appearing in the file LICENSE.GPL included in the
** packaging of this file.
**
** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
**
** See http://www.trolltech.com/gpl/ for GPL licensing information.
**
** Contact info@trolltech.com if any conditions of this licensing are
** not clear to you.
**
**********************************************************************/


/* The edit view widget.  For each key in the DB display an
 * appropriate edit box, and a 'key' button to change that particular
 * key information (delete or edit).
 *
 * Bottem line should be a 'new key' button.  Should be able to scroll
 * in both directions.
 */

#include "tveditview.h"
#include "commonwidgets.h"

#include <qlayout.h>
#include <qgrid.h>
#include <qvbox.h>
#include <qlineedit.h>
#include <qcheckbox.h>
#include <qlist.h>
#include <qlabel.h>
#include <qscrollview.h>
#include <qsignalmapper.h>

TVEditView::TVEditView(TableState *s, DataElem *d, QWidget* parent = 0, 
        const char *name = 0, WFlags fl =0) : QDialog(parent, name, true, fl)
{
    if (!name)
        setName("TVEditView");

    QVBoxLayout *layout = new QVBoxLayout(this, 0); /* only so that will resize
                                                       correctly in other 
                                                       widgets */

    toggles = new QSignalMapper(this);
    QScrollView *sv = new QScrollView(this, 0);
    sv->setResizePolicy(QScrollView::AutoOneFit);

    layout->addWidget(sv);

    editDisplay = new QGrid(3, sv, 0);
    editDisplay->setSpacing(3);
    sv->addChild(editDisplay);

    connect(toggles, SIGNAL(mapped(int)), this, SLOT(toggleEnabled(int)));

    setData(s, d);
#ifdef Q_WS_QWS
    showMaximized();
#endif
}

TVEditView::~TVEditView() 
{
}

/*! set up the widgets in the grid, Set up initial values */
void TVEditView::setData(TableState *t, DataElem *d) 
{

    /* TODO need to somehow clear old children... a delete of each
     * child? */
    keyIds.clear();

    KeyListIterator it(*t->kRep);

    int i = 0;
    while(it.current()) {
		if (t->kRep->validIndex(it.currentKey())) {
			new QLabel(it.current()->name(), editDisplay);
			keyIds.insert(i, it.currentKey());
			if (d->hasValidValue(it.currentKey())) {
				switch(it.current()->type()) {
					case TVVariant::String: {
						QLineEdit *edit = new QLineEdit(editDisplay, 0);
						edit->setText(d->getField(it.currentKey()).toString());
						edits.append(edit);
						break;
					}
					case TVVariant::Int:  {
					    IntEdit *edit = new IntEdit(editDisplay, 0);
					    edit->setValue(d->getField(it.currentKey()).toInt());
					    edits.append(edit);
						break;
					}
				case TVVariant::Time: {
						TimeEdit *edit = new TimeEdit(editDisplay, 0);
						edit->setTime(d->getField(it.currentKey()).toTime());
						edits.append(edit);
						break;
					}
				case TVVariant::Date: {
						DateEdit *edit = new DateEdit(editDisplay, 0);
						edit->setDate(d->getField(it.currentKey()).toDate());
						edits.append(edit);
						break;
					}
					default:
						edits.append(new QLabel("<B><I>Uknown key type</I></B>", editDisplay));
				}
				QCheckBox *tb = new QCheckBox(editDisplay);
				tb->setChecked(TRUE);
				toggles->setMapping(tb, i);
				connect(tb, SIGNAL(clicked()), toggles, SLOT(map()));
				buttons.append(tb);
			} else {
				/* No valid value.. set to null */
				switch(it.current()->type()) {
					case TVVariant::String: {
						QLineEdit *edit = new QLineEdit(editDisplay, 0);
						edit->setEnabled(false);
						edits.append(edit);
						break;
					}
					case TVVariant::Int:  {
						IntEdit *edit = new IntEdit(editDisplay, 0);
						edit->setEnabled(false);
						edits.append(edit);
						break;
					}
					case TVVariant::Time: {
						TimeEdit *edit = new TimeEdit(editDisplay, 0);
						edit->setEnabled(false);
						edits.append(edit);
						break;
					}
					case TVVariant::Date: {
						DateEdit *edit = new DateEdit(editDisplay, 0);
						edit->setEnabled(false);
						edits.append(edit);
						break;
					}
					default:
						edits.append(new QLabel("<B><I>Uknown key type</I></B>", editDisplay));
				}
				QCheckBox *tb = new QCheckBox(editDisplay);
				tb->setChecked(FALSE);
				toggles->setMapping(tb, i);
				connect(tb, SIGNAL(clicked()), toggles, SLOT(map()));
				buttons.append(tb);
			}
			i++;
		}
        ++it;
    }
	num_edits = i;
}

void TVEditView::toggleEnabled(int i) {

    if(edits.at(i)->isEnabled()) {
        edits.at(i)->setEnabled(false);
        buttons.at(i)->setChecked(FALSE);
    } else {
        edits.at(i)->setEnabled(true);
        buttons.at(i)->setChecked(TRUE);
    }
}

bool TVEditView::openEditItemDialog(TableState *ts, DataElem *d, 
					QWidget *parent)
{
    int i;
    int keyId;

    if(!ts) return 0;
    if(!d) return 0;
    if(!ts->kRep) return 0;

    TVEditView *dlg = new TVEditView(ts, d, parent);

    if (dlg->exec() == QDialog::Accepted ) {
        /* update the element, basically for each
           edits, if isEnabled, set Value, else unsetField */

        for(i = 0; i < dlg->num_edits; i++) {
            keyId = dlg->keyIds[i];
            if(dlg->edits.at(i)->isEnabled()) {
                switch(d->getFieldType(keyId)) {
                    case TVVariant::String: {
                        TVVariant value = TVVariant(
                                ((QLineEdit *)dlg->edits.at(i))->text());
                        d->setField(keyId, value);
                        break;
                    }
                    case TVVariant::Int:  {
                        TVVariant value = TVVariant(
                                ((IntEdit *)dlg->edits.at(i))->value());
                        d->setField(keyId, value);
                        break;
                    }
                    case TVVariant::Time: {
                        TVVariant value = TVVariant(
                                ((TimeEdit *)dlg->edits.at(i))->time());
                        d->setField(keyId, value);
                        break;
                    }
                    case TVVariant::Date: {
                        TVVariant value = TVVariant(
                                ((DateEdit *)dlg->edits.at(i))->date());
                        d->setField(keyId, value);
                        break;
                    }
                    default:
                        break;
                }
            } else {
                /* unset the field */
                d->unsetField(keyId);
            }
        }
	delete dlg;
	return TRUE;
    }

    return FALSE;
}