/**************************************************************************** ** ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). ** All rights reserved. ** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the Qt Designer of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL$ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions ** contained in the Technology Preview License Agreement accompanying ** this package. ** ** 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. ** ** In addition, as a special exception, Nokia gives you certain additional ** rights. These rights are described in the Nokia Qt LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ** If you have questions regarding the use of this file, please contact ** Nokia at qt-info@nokia.com. ** ** ** ** ** ** ** ** ** $QT_END_LICENSE$ ** ****************************************************************************/ #include "formwindowcursor.h" #include "formwindow.h" // sdk #include #include #include #include QT_BEGIN_NAMESPACE namespace qdesigner_internal { FormWindowCursor::FormWindowCursor(FormWindow *fw, QObject *parent) : QObject(parent), m_formWindow(fw) { update(); connect(fw, SIGNAL(changed()), this, SLOT(update())); } FormWindowCursor::~FormWindowCursor() { } QDesignerFormWindowInterface *FormWindowCursor::formWindow() const { return m_formWindow; } bool FormWindowCursor::movePosition(MoveOperation op, MoveMode mode) { if (widgetCount() == 0) return false; int iterator = position(); if (mode == MoveAnchor) m_formWindow->clearSelection(false); switch (op) { case Next: ++iterator; if (iterator >= widgetCount()) iterator = 0; m_formWindow->selectWidget(m_formWindow->widgetAt(iterator), true); return true; case Prev: --iterator; if (iterator < 0) iterator = widgetCount() - 1; if (iterator < 0) return false; m_formWindow->selectWidget(m_formWindow->widgetAt(iterator), true); return true; default: return false; } } int FormWindowCursor::position() const { const int index = m_formWindow->widgets().indexOf(current()); return index == -1 ? 0 : index; } void FormWindowCursor::setPosition(int pos, MoveMode mode) { if (!widgetCount()) return; if (mode == MoveAnchor) m_formWindow->clearSelection(false); if (pos >= widgetCount()) pos = 0; m_formWindow->selectWidget(m_formWindow->widgetAt(pos), true); } QWidget *FormWindowCursor::current() const { return m_formWindow->currentWidget(); } bool FormWindowCursor::hasSelection() const { return !m_formWindow->selectedWidgets().isEmpty(); } int FormWindowCursor::selectedWidgetCount() const { int N = m_formWindow->selectedWidgets().count(); return N ? N : 1; } QWidget *FormWindowCursor::selectedWidget(int index) const { return hasSelection() ? m_formWindow->selectedWidgets().at(index) : m_formWindow->mainContainer(); } void FormWindowCursor::update() { // ### todo } int FormWindowCursor::widgetCount() const { return m_formWindow->widgetCount(); } QWidget *FormWindowCursor::widget(int index) const { return m_formWindow->widgetAt(index); } void FormWindowCursor::setProperty(const QString &name, const QVariant &value) { // build selection const int N = selectedWidgetCount(); Q_ASSERT(N); SetPropertyCommand::ObjectList selection; for (int i=0; iinit(selection, name, value, current())) { m_formWindow->commandHistory()->push(setPropertyCommand); } else { delete setPropertyCommand; qDebug() << "Unable to set property " << name << '.'; } } void FormWindowCursor::setWidgetProperty(QWidget *widget, const QString &name, const QVariant &value) { SetPropertyCommand *cmd = new SetPropertyCommand(m_formWindow); if (cmd->init(widget, name, value)) { m_formWindow->commandHistory()->push(cmd); } else { delete cmd; qDebug() << "Unable to set property " << name << '.'; } } void FormWindowCursor::resetWidgetProperty(QWidget *widget, const QString &name) { ResetPropertyCommand *cmd = new ResetPropertyCommand(m_formWindow); if (cmd->init(widget, name)) { m_formWindow->commandHistory()->push(cmd); } else { delete cmd; qDebug() << "Unable to reset property " << name << '.'; } } } QT_END_NAMESPACE