123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- /*=============================================================================
-
- Library: CTK
-
- Copyright (c) German Cancer Research Center,
- Division of Medical and Biological Informatics
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
-
- =============================================================================*/
- #include "ctkCmdLineModuleInstanceQtGui_p.h"
- #include "ctkCmdLineModuleReference.h"
- #include "ctkCmdLineModuleXslTransform.h"
- #include "ctkCmdLineModuleObjectTreeWalker_p.h"
- #include <QBuffer>
- #include <QUiLoader>
- #include <QWidget>
- #include <QVariant>
- #include <QDebug>
- ctkCmdLineModuleInstanceQtGui::ctkCmdLineModuleInstanceQtGui(const ctkCmdLineModuleReference& moduleRef)
- : ctkCmdLineModuleInstance(moduleRef),
- WidgetTree(NULL)
- {
- }
- QObject* ctkCmdLineModuleInstanceQtGui::guiHandle() const
- {
- if (WidgetTree) return WidgetTree;
- QBuffer input;
- input.setData(moduleReference().rawXmlDescription());
- QBuffer uiForm;
- uiForm.open(QIODevice::ReadWrite);
- ctkCmdLineModuleXslTransform xslTransform(&input, &uiForm);
- if (!xslTransform.transform())
- {
- // maybe throw an exception
- qCritical() << xslTransform.errorString();
- return 0;
- }
- QUiLoader uiLoader;
- WidgetTree = uiLoader.load(&uiForm);
- return WidgetTree;
- }
- QVariant ctkCmdLineModuleInstanceQtGui::value(const QString ¶meter) const
- {
- if (!WidgetTree) return QVariant();
- ctkCmdLineModuleObjectTreeWalker reader(WidgetTree);
- while(reader.readNextParameter())
- {
- if(reader.name() == parameter)
- {
- return reader.value();
- }
- }
- return QVariant();
- }
- void ctkCmdLineModuleInstanceQtGui::setValue(const QString ¶meter, const QVariant &value)
- {
- if (!WidgetTree) return;
- ctkCmdLineModuleObjectTreeWalker walker(WidgetTree);
- while(walker.readNextParameter())
- {
- if(walker.name() == parameter && walker.value() != value)
- {
- walker.setValue(value);
- emit valueChanged(parameter, value);
- }
- }
- }
- QList<QString> ctkCmdLineModuleInstanceQtGui::parameterNames() const
- {
- if (!ParameterNames.empty()) return ParameterNames;
- // Compute the list of parameter names using the widget hierarchy
- // if it has already created (otherwise fall back to the superclass
- // implementation.
- // This avoids creating a ctkCmdLineModuleDescription instance.
- if (WidgetTree == 0) return ctkCmdLineModuleInstance::parameterNames();
- ctkCmdLineModuleObjectTreeWalker walker(WidgetTree);
- while(walker.readNextParameter())
- {
- ParameterNames.push_back(walker.name());
- }
- return ParameterNames;
- }
|