/****************************************************************************
**
** Copyright (C) 1992-2008 Trolltech ASA. All rights reserved.
**
** This file is part of the Qt Designer of the Qt Toolkit.
**
** Licensees holding a valid Qt License Agreement may use this file in
** accordance with the rights, responsibilities and obligations
** contained therein. Please consult your licensing agreement or
** contact sales@trolltech.com if any conditions of this licensing
** agreement are not clear to you.
**
** Further information about Qt licensing is available at:
** http://www.trolltech.com/products/qt/licensing.html or by
** contacting info@trolltech.com.
**
** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
**
****************************************************************************/
#ifndef FORMSCRIPTRUNNER_H
#define FORMSCRIPTRUNNER_H
//
// W A R N I N G
// -------------
//
// This file is not part of the Qt API. It exists purely as an
// implementation detail. This header file may change from version to
// version without notice, or even be removed.
//
// We mean it.
//
#include <uilib_global.h>
#include <QtCore/QList>
#include <QtCore/QFlags>
#include <QtCore/QString>
class QWidget;
#ifdef QFORMINTERNAL_NAMESPACE
namespace QFormInternal
{
#endif
class DomWidget;
class QDESIGNER_UILIB_EXPORT QFormScriptRunner
{
public:
QFormScriptRunner();
~QFormScriptRunner();
typedef QList<QWidget*> WidgetList;
bool run(const DomWidget *domWidget,
const QString &customWidgetScript,
QWidget *widget, const WidgetList &children,
QString *errorMessage);
struct Error {
QString objectName;
QString script;
QString errorMessage;
};
typedef QList<Error> Errors;
Errors errors() const;
void clearErrors();
enum Option {
NoOptions = 0x0,
DisableWarnings = 0x1,
DisableScripts = 02
};
Q_DECLARE_FLAGS(Options, Option)
Options options() const;
void setOptions(Options options);
private:
class QFormScriptRunnerPrivate;
QFormScriptRunnerPrivate *m_impl;
QFormScriptRunner(const QFormScriptRunner &);
void operator = (const QFormScriptRunner &);
};
Q_DECLARE_OPERATORS_FOR_FLAGS(QFormScriptRunner::Options)
#ifdef QFORMINTERNAL_NAMESPACE
}
#endif
#endif // FORMSCRIPTRUNNER_H