diff options
author | Erik Verbruggen <erik.verbruggen@nokia.com> | 2010-02-09 11:09:11 +0100 |
---|---|---|
committer | Erik Verbruggen <erik.verbruggen@nokia.com> | 2010-02-09 16:02:13 +0100 |
commit | d76fa87f0d04f68f39463eadd1aab941e72e419d (patch) | |
tree | 36db10f8b8cf4bff40daa7a7b815c1977d71a658 /src/plugins/qmldesigner/designersettings.h | |
parent | f796346a1d57ba81b4b127bfd1fabdc8219551ec (diff) | |
download | qt-creator-d76fa87f0d04f68f39463eadd1aab941e72e419d.tar.gz |
Added a QML designer settings page.
Diffstat (limited to 'src/plugins/qmldesigner/designersettings.h')
-rw-r--r-- | src/plugins/qmldesigner/designersettings.h | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/src/plugins/qmldesigner/designersettings.h b/src/plugins/qmldesigner/designersettings.h new file mode 100644 index 0000000000..db0829db03 --- /dev/null +++ b/src/plugins/qmldesigner/designersettings.h @@ -0,0 +1,59 @@ +/************************************************************************** +** +** This file is part of Qt Creator +** +** Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). +** +** Contact: Nokia Corporation (qt-info@nokia.com) +** +** Commercial Usage +** +** Licensees holding valid Qt Commercial licenses may use this file in +** accordance with the Qt Commercial License Agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and Nokia. +** +** GNU Lesser General Public License Usage +** +** Alternatively, this file may be used under the terms of the GNU Lesser +** General Public License version 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** If you are unsure which license is appropriate for your use, please +** contact the sales department at http://qt.nokia.com/contact. +** +**************************************************************************/ + + +#ifndef DESIGNERSETTINGS_H +#define DESIGNERSETTINGS_H + +#include <QtCore/QtGlobal> + +QT_BEGIN_NAMESPACE +class QSettings; +QT_END_NAMESPACE + +namespace QmlDesigner { + +struct DesignerSettings { + void fromSettings(QSettings *); + void toSettings(QSettings *) const; + + bool equals(const DesignerSettings &other) const; + + bool snapToGrid; + bool showBoundingRectangles; +}; + +inline bool operator==(const DesignerSettings &s1, const DesignerSettings &s2) +{ return s1.equals(s2); } +inline bool operator!=(const DesignerSettings &s1, const DesignerSettings &s2) +{ return !s1.equals(s2); } + +} // namespace QmlDesigner + +#endif // DESIGNERSETTINGS_H |