summaryrefslogtreecommitdiff
path: root/client/widgets/altcombobox.cc
blob: 78797f6684c04c3df9922adcb93b1d7e7ad65dc7 (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
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/***************************************************************************
 *            altcombobox.cc
 *
 *  Tue Nov 25 08:18:10 CET 2008
 *  Copyright 2008 Bent Bisballe Nyeng
 *  deva@aasimon.org
 ****************************************************************************/

/*
 *  This file is part of Pracro.
 *
 *  Pracro 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 2 of the License, or
 *  (at your option) any later version.
 *
 *  Pracro 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 Pracro; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA.
 */
#include "altcombobox.h"

#include <QFrame>
#include <QHBoxLayout>
#include <QVBoxLayout>
#include <QComboBox>

#include "common.h"
#include "multilist.h"
#include "macrowindow.h"

#include "debug.h"

AltComboBox::AltComboBox(QDomNode &node, MacroWindow *macrowindow)
  : Widget(node, macrowindow)
{
  frame = new QFrame();
  widget = frame;

  hideChildren = true;

  innerwidget = NULL;

  setCommonAttributes(frame, node);
  setCommonLayout(frame, node);
  
  combobox = new ComboBox(node, macrowindow);
  frame->layout()->addWidget(combobox->qwidget());
  combobox->qwidget()->show();

  altframerepl = new QFrame();
  QHBoxLayout *l = new QHBoxLayout();
  altframerepl->setLayout(l);
  l->addStretch();
  altframe = new QFrame();
  frame->layout()->addWidget(altframe);

  QVector< Widget* > widgets;

  QString iwname;

  QDomNodeList items = node.childNodes();
  for(int i = 0; i < items.count(); i++) {
    QDomElement item = items.at(i).toElement();

    if(item.tagName() == "altitem") {
      
      if(item.hasAttribute("value")) {
        altvalue = item.attribute("value");
      } else {
        ERROR(altcombobos, "altitem tag is missing the value attribute, "
              "in altcombobox!\n");
      }

      if(item.hasAttribute("innerwidget")) {
        iwname = item.attribute("innerwidget");
      } else {
        ERROR(altcombobox, "altitem tag is missing the innerwidget attribute, "
               "in altcombobox!\n");
      }

      if(item.hasAttribute("layout")) {
        if(item.attribute("layout") == "hbox") {
          QHBoxLayout *layout = new QHBoxLayout();
          altframe->setLayout(layout);
        } else if(item.attribute("layout") == "vbox") {
          QVBoxLayout *layout = new QVBoxLayout();
          altframe->setLayout(layout);      
        } else { // Illigal layout choosen.
          QVBoxLayout *layout = new QVBoxLayout();
          altframe->setLayout(layout);
        }
      } else {
        QHBoxLayout *layout = new QHBoxLayout();
        altframe->setLayout(layout);
      }

      addChildren(item, altframe->layout());

    }

  }

  innerwidget = findWidget(iwname, true);

  if(innerwidget == NULL) {
    ERROR(altcombobox, "Inner Widget %s not found (in altcombobox)!\n",
           iwname.toStdString().c_str());
  }

  // To detect if the altvalue has been selected:
  connect(combobox->qwidget(), SIGNAL(currentIndexChanged(int)),
          this, SLOT(onValueChange(int)));
  connect(combobox->qwidget(), SIGNAL(editTextChanged(const QString&)),
          this, SLOT(onValueChange(const QString&)));

  // To react to changes in any of the children:
  connect(combobox, SIGNAL(wasChanged()), this, SLOT(onChildChange()));
  if(innerwidget)
    connect(innerwidget, SIGNAL(wasChanged()), this, SLOT(onChildChange()));

  if(frame->layout()) frame->layout()->setContentsMargins(0,0,0,0);
  if(altframe->layout()) altframe->layout()->setContentsMargins(0,0,0,0);

  frame->show(); // Force altframe to get resized to its real size.
  altframerepl->setFixedHeight(altframe->height());
}

AltComboBox::~AltComboBox()
{
  // delete frame;
}

bool AltComboBox::preValid()
{
  if(!combobox->valid()) return false;

  if(innerwidget && combobox->value() == altvalue) {
    if(!innerwidget->valid()) return false;
  }

  return true;
}

QString AltComboBox::value()
{
  if(combobox->value() == altvalue) {
    if(innerwidget) return innerwidget->value();
    else return "";
  } else {
    return combobox->value();
  }
}

void AltComboBox::setValue(QString value, QString source)
{
  // No need for this, it will be enitted by the children.
  // if(isUserSource(source)) emit wasChanged();

  QComboBox *cmb = (QComboBox*)combobox->qwidget();
  if(cmb->findData(value) != -1) {

    combobox->setValue(value, source);

  } else {
    combobox->setValue(altvalue);

    if(innerwidget) {
      innerwidget->setValue(value, source);
    }
  }

  //  setInitialValue(value);
}

void AltComboBox::onValueChange(int index)
{
  QComboBox *cmb = (QComboBox*)combobox->qwidget();

  DEBUG(alcombobox, "Value changed: %s altvalue: %s\n",
        cmb->itemData(index).toString().toStdString().c_str(),
        altvalue.toStdString().c_str());

  if(cmb->itemData(index).toString() == altvalue) {

    altframerepl->setVisible(false);
    frame->layout()->removeWidget(altframerepl);

    frame->layout()->addWidget(altframe);
    altframe->setVisible(true);

  } else {

    altframe->setVisible(false);
    frame->layout()->removeWidget(altframe);

    frame->layout()->addWidget(altframerepl);
    altframerepl->setVisible(true);

  }

  emit eventOnChange(true);
}

void AltComboBox::onValueChange(const QString &text)
{
  QComboBox *cmb = (QComboBox*)combobox->qwidget();
  onValueChange(cmb->findText(text));
}

void AltComboBox::onChildChange()
{
  emit eventOnChange(true);
  emit wasChanged();
}

bool AltComboBox::setKeyboardFocus()
{
  if(combobox->value() == altvalue) {
    if(innerwidget) return innerwidget->setKeyboardFocus();
  }

  combobox->setKeyboardFocus();
  return true;
}

void AltComboBox::setWdgValid(bool valid)
{
  DEBUG(altcombobox, "Set valid(%s)\n", valid?"true":"false");

  QPalette palette;

  if(valid) {
    // valid string
    palette.setBrush(QPalette::Base, QBrush(QColor(255, 255, 255)));
  } else {
    // invalid string
    palette.setBrush(QPalette::Base, QBrush(QColor(230, 200, 200)));
  }

  //  frame->setPalette(palette);
  combobox->setWdgValid(valid);
  //  if(innerwidget) innerwidget->setWdgValid(valid);
}