File indexing completed on 2024-05-12 16:39:49

0001 /* This file is part of the KDE project
0002    Copyright (C) 2009 Jarosław Staniek <staniek@kde.org>
0003 
0004    This library is free software; you can redistribute it and/or
0005    modify it under the terms of the GNU Library General Public
0006    License as published by the Free Software Foundation; either
0007    version 2 of the License, or (at your option) any later version.
0008 
0009    This library is distributed in the hope that it will be useful,
0010    but WITHOUT ANY WARRANTY; without even the implied warranty of
0011    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
0012    Library General Public License for more details.
0013 
0014    You should have received a copy of the GNU Library General Public License
0015    along with this library; see the file COPYING.LIB.  If not, write to
0016    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
0017  * Boston, MA 02110-1301, USA.
0018 */
0019 
0020 #include "FormWidgetInterface.h"
0021 #include <QWidget>
0022 #include <QCursor>
0023 
0024 using namespace KFormDesigner;
0025 
0026 class Q_DECL_HIDDEN FormWidgetInterface::Private
0027 {
0028 public:
0029     Private() : design(false), editing(false) {}
0030     bool design;
0031     bool editing;
0032 };
0033 
0034 FormWidgetInterface::FormWidgetInterface()
0035  : d( new Private )
0036 {
0037 }
0038 
0039 FormWidgetInterface::~FormWidgetInterface()
0040 {
0041     delete d;
0042 }
0043 
0044 bool FormWidgetInterface::designMode() const
0045 {
0046     return d->design;
0047 }
0048 
0049 void FormWidgetInterface::setDesignMode(bool design)
0050 {
0051     d->design = design;
0052     if (design)
0053         dynamic_cast<QWidget*>(this)->setCursor(QCursor(Qt::ArrowCursor));
0054 }
0055 
0056 bool FormWidgetInterface::editingMode() const
0057 {
0058     return d->editing;
0059 }
0060 
0061 void FormWidgetInterface::setEditingMode(bool editing)
0062 {
0063     d->editing = editing;
0064 }