Ignore:
Timestamp:
Feb 11, 2010, 11:19:06 PM (15 years ago)
Author:
Dmitry A. Kuminov
Message:

trunk: Merged in qt 4.6.1 sources.

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk

  • trunk/tools/shared/qtgradienteditor/qtgradientstopscontroller.cpp

    r2 r561  
    22**
    33** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
    4 ** Contact: Qt Software Information (qt-info@nokia.com)
     4** All rights reserved.
     5** Contact: Nokia Corporation (qt-info@nokia.com)
    56**
    67** This file is part of the tools applications of the Qt Toolkit.
     
    2122** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
    2223**
    23 ** In addition, as a special exception, Nokia gives you certain
    24 ** additional rights. These rights are described in the Nokia Qt LGPL
    25 ** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this
    26 ** package.
     24** In addition, as a special exception, Nokia gives you certain additional
     25** rights.  These rights are described in the Nokia Qt LGPL Exception
     26** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
    2727**
    2828** GNU General Public License Usage
     
    3434** met: http://www.gnu.org/copyleft/gpl.html.
    3535**
    36 ** If you are unsure which license is appropriate for your use, please
    37 ** contact the sales department at qt-sales@nokia.com.
     36** If you have questions regarding the use of this file, please contact
     37** Nokia at qt-info@nokia.com.
    3838** $QT_END_LICENSE$
    3939**
    4040****************************************************************************/
    41 
    42 /*
    43 TRANSLATOR qdesigner_internal::QtGradientStopsController
    44 */
    4541
    4642#include "qtgradientstopscontroller.h"
     
    595591
    596592QtGradientStopsController::QtGradientStopsController(QObject *parent)
    597     : QObject(parent)
    598 {
    599     d_ptr = new QtGradientStopsControllerPrivate();
     593    : QObject(parent), d_ptr(new QtGradientStopsControllerPrivate())
     594{
    600595    d_ptr->q_ptr = this;
    601596
     
    614609    d_ptr->m_model = new QtGradientStopsModel(this);
    615610    d_ptr->m_ui->gradientStopsWidget->setGradientStopsModel(d_ptr->m_model);
    616     connect(d_ptr->m_model, SIGNAL(currentStopChanged(QtGradientStop *)),
    617                 this, SLOT(slotCurrentStopChanged(QtGradientStop *)));
    618     connect(d_ptr->m_model, SIGNAL(stopMoved(QtGradientStop *, qreal)),
    619                 this, SLOT(slotStopMoved(QtGradientStop *, qreal)));
    620     connect(d_ptr->m_model, SIGNAL(stopsSwapped(QtGradientStop *, QtGradientStop *)),
    621                 this, SLOT(slotStopsSwapped(QtGradientStop *, QtGradientStop *)));
    622     connect(d_ptr->m_model, SIGNAL(stopChanged(QtGradientStop *, const QColor &)),
    623                 this, SLOT(slotStopChanged(QtGradientStop *, const QColor &)));
    624     connect(d_ptr->m_model, SIGNAL(stopSelected(QtGradientStop *, bool)),
    625                 this, SLOT(slotStopSelected(QtGradientStop *, bool)));
    626     connect(d_ptr->m_model, SIGNAL(stopAdded(QtGradientStop *)),
    627                 this, SLOT(slotStopAdded(QtGradientStop *)));
    628     connect(d_ptr->m_model, SIGNAL(stopRemoved(QtGradientStop *)),
    629                 this, SLOT(slotStopRemoved(QtGradientStop *)));
    630 
    631     connect(d_ptr->m_ui->hueColorLine, SIGNAL(colorChanged(const QColor &)),
    632                 this, SLOT(slotChangeHue(const QColor &)));
    633     connect(d_ptr->m_ui->saturationColorLine, SIGNAL(colorChanged(const QColor &)),
    634                 this, SLOT(slotChangeSaturation(const QColor &)));
    635     connect(d_ptr->m_ui->valueColorLine, SIGNAL(colorChanged(const QColor &)),
    636                 this, SLOT(slotChangeValue(const QColor &)));
    637     connect(d_ptr->m_ui->alphaColorLine, SIGNAL(colorChanged(const QColor &)),
    638                 this, SLOT(slotChangeAlpha(const QColor &)));
    639     connect(d_ptr->m_ui->colorButton, SIGNAL(colorChanged(const QColor &)),
    640                 this, SLOT(slotChangeColor(const QColor &)));
     611    connect(d_ptr->m_model, SIGNAL(currentStopChanged(QtGradientStop*)),
     612                this, SLOT(slotCurrentStopChanged(QtGradientStop*)));
     613    connect(d_ptr->m_model, SIGNAL(stopMoved(QtGradientStop*,qreal)),
     614                this, SLOT(slotStopMoved(QtGradientStop*,qreal)));
     615    connect(d_ptr->m_model, SIGNAL(stopsSwapped(QtGradientStop*,QtGradientStop*)),
     616                this, SLOT(slotStopsSwapped(QtGradientStop*,QtGradientStop*)));
     617    connect(d_ptr->m_model, SIGNAL(stopChanged(QtGradientStop*,QColor)),
     618                this, SLOT(slotStopChanged(QtGradientStop*,QColor)));
     619    connect(d_ptr->m_model, SIGNAL(stopSelected(QtGradientStop*,bool)),
     620                this, SLOT(slotStopSelected(QtGradientStop*,bool)));
     621    connect(d_ptr->m_model, SIGNAL(stopAdded(QtGradientStop*)),
     622                this, SLOT(slotStopAdded(QtGradientStop*)));
     623    connect(d_ptr->m_model, SIGNAL(stopRemoved(QtGradientStop*)),
     624                this, SLOT(slotStopRemoved(QtGradientStop*)));
     625
     626    connect(d_ptr->m_ui->hueColorLine, SIGNAL(colorChanged(QColor)),
     627                this, SLOT(slotChangeHue(QColor)));
     628    connect(d_ptr->m_ui->saturationColorLine, SIGNAL(colorChanged(QColor)),
     629                this, SLOT(slotChangeSaturation(QColor)));
     630    connect(d_ptr->m_ui->valueColorLine, SIGNAL(colorChanged(QColor)),
     631                this, SLOT(slotChangeValue(QColor)));
     632    connect(d_ptr->m_ui->alphaColorLine, SIGNAL(colorChanged(QColor)),
     633                this, SLOT(slotChangeAlpha(QColor)));
     634    connect(d_ptr->m_ui->colorButton, SIGNAL(colorChanged(QColor)),
     635                this, SLOT(slotChangeColor(QColor)));
    641636
    642637    connect(d_ptr->m_ui->hueSpinBox, SIGNAL(valueChanged(int)),
     
    676671QtGradientStopsController::~QtGradientStopsController()
    677672{
    678     delete d_ptr;
    679673}
    680674
Note: See TracChangeset for help on using the changeset viewer.