diff options
author | deva <deva> | 2009-01-13 09:59:22 +0000 |
---|---|---|
committer | deva <deva> | 2009-01-13 09:59:22 +0000 |
commit | 9fcf15a06b9ec422dbad53508e8ce71d2d4145c3 (patch) | |
tree | d54147e52b1939ba9ebaf356e7047dfebea02887 /client/widgets/altcombobox.cc | |
parent | 9d982a5b4fc9c7efaa56c8f7a4130361f26b0302 (diff) |
A huge amount of changes, based on the results of two usertest.
The changes are contained (but not limited to) in the following list:
- Make disabled widgets ignored in validation test.
- Do not commit values of disabled widgets to the database.
- Make storechildren attribute on metawidget, that enables storing of the child widgets in the database.
- Implement LUA resume generator.
- Make language attribute on resume tag, and switch parser (format/LUA).
- Case insensitive search in combobox.
- Click on macro name or line, expands macro.
- Greyed out widgets in AltComboBox should be hidden instead.
- Keyboard 'delete' should delete item from multilist.
- "Commit" button needs to be more visible? Icon?
- Upon opening of a second macro, the first macro should indicate itself as 'not saved'.
- After 'add' in multilist, the input widgets should be reset.
- First widget in a macro should have keyboard focus after expansion.
- "Endnu ikke udfyldt" needs to be more clear (darker).
- Meta widgets must recurse the isValid() call to its children.
- Greyed out widgets must be hidden.
- Multilist should be read as a list prior to its input fields.
- Visible field on widgets. Hides a widget without disabling it.
Diffstat (limited to 'client/widgets/altcombobox.cc')
-rw-r--r-- | client/widgets/altcombobox.cc | 82 |
1 files changed, 72 insertions, 10 deletions
diff --git a/client/widgets/altcombobox.cc b/client/widgets/altcombobox.cc index 01fd36f..c68f816 100644 --- a/client/widgets/altcombobox.cc +++ b/client/widgets/altcombobox.cc @@ -33,6 +33,7 @@ #include "widgetbuilder.h" #include <QObject> +#include "multilist.h" AltComboBox::AltComboBox(QDomNode &node, MacroWindow *macrowindow) : QFrame(), Widget(node, macrowindow) @@ -45,7 +46,11 @@ AltComboBox::AltComboBox(QDomNode &node, MacroWindow *macrowindow) combobox = new ComboBox(node, macrowindow); layout()->addWidget(combobox); combobox->show(); - + + altframerepl = new QFrame(); + QHBoxLayout *l = new QHBoxLayout(); + altframerepl->setLayout(l); + l->addStretch(); altframe = new QFrame(); layout()->addWidget(altframe); @@ -87,7 +92,7 @@ AltComboBox::AltComboBox(QDomNode &node, MacroWindow *macrowindow) QDomNodeList children = item.childNodes(); for(int i = 0; i < children.count(); i++) { QDomNode child = children.at(i); - widgets += widgetBuilder(child, altframe, macrowindow); + widgets += widgetBuilder(child, altframe, macrowindow, false); } } @@ -108,22 +113,31 @@ AltComboBox::AltComboBox(QDomNode &node, MacroWindow *macrowindow) iwname.toStdString().c_str()); } + // To detect if the altvalue has been selected: connect(combobox, SIGNAL(currentIndexChanged(int)), this, SLOT(onValueChange(int))); connect(combobox, 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())); + innerwidget->connectFrom(SIGNAL(wasChanged()), this, SLOT(onChildChange())); + layout()->setContentsMargins(0,0,0,0); altframe->layout()->setContentsMargins(0,0,0,0); + + show(); // Force altframe to get resized to its real size. + altframerepl->setFixedHeight(altframe->height()); } + bool AltComboBox::isValid() { if(!combobox->isValid()) return false; if(innerwidget && combobox->getValue() == altvalue) { - return innerwidget->isValid(); + if(!innerwidget->isValid()) return false; } - return true; + return regexpValidator() && luaValidator(); } QString AltComboBox::getValue() @@ -136,25 +150,41 @@ QString AltComboBox::getValue() } } -void AltComboBox::setValue(QString value) +void AltComboBox::setValue(QString value, QString source) { - combobox->setValue(value); + // if(isUserSource(source)) emit wasChanged(); // No need for this, it will be enitted by the children. + + if(combobox->findData(value) != -1) { + + combobox->setValue(value, source); - if(combobox->isValid() == false) { // Combobox contain idx == -1 (invalid) if value didn't exist. + } else { combobox->setValue(altvalue); if(innerwidget) { - innerwidget->setValue(value); + innerwidget->setValue(value, source); } } + + setInitialValue(value); } void AltComboBox::onValueChange(int index) { if(combobox->itemData(index).toString() == altvalue) { - altframe->setEnabled(true); + // altframe->setEnabled(true); + altframerepl->setVisible(false); + layout()->removeWidget(altframerepl); + + layout()->addWidget(altframe); + altframe->setVisible(true); } else { - altframe->setEnabled(false); + // altframe->setEnabled(false); + altframe->setVisible(false); + layout()->removeWidget(altframe); + + layout()->addWidget(altframerepl); + altframerepl->setVisible(true); } } @@ -172,3 +202,35 @@ void AltComboBox::disable() { setEnabled(false); } + +void AltComboBox::onChildChange() +{ + emit wasChanged(); +} + +void AltComboBox::connectFrom(const char *signal, + const QObject *receiver, const char *method) +{ + connect(this, signal, receiver, method); +} + +void AltComboBox::connectTo(const QObject *sender, const char *signal, + const char *method) +{ + connect(sender, signal, this, method); +} + +bool AltComboBox::setKeyboardFocus() +{ + if(combobox->getValue() == altvalue) { + if(innerwidget) return innerwidget->setKeyboardFocus(); + } + + combobox->setKeyboardFocus(); + return true; +} + +void AltComboBox::setVisibility(bool visible) +{ + setVisible(visible); +} |