- Timestamp:
- Feb 11, 2010, 11:19:06 PM (15 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
-
Property svn:mergeinfo
set to (toggle deleted branches)
/branches/vendor/nokia/qt/4.6.1 merged eligible /branches/vendor/nokia/qt/current merged eligible /branches/vendor/trolltech/qt/current 3-149
-
Property svn:mergeinfo
set to (toggle deleted branches)
-
trunk/tools/shared/qtgradienteditor/qtgradientstopscontroller.cpp
r2 r561 2 2 ** 3 3 ** 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) 5 6 ** 6 7 ** This file is part of the tools applications of the Qt Toolkit. … … 21 22 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 22 23 ** 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. 27 27 ** 28 28 ** GNU General Public License Usage … … 34 34 ** met: http://www.gnu.org/copyleft/gpl.html. 35 35 ** 36 ** If you are unsure which license is appropriate for your use, please37 ** 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. 38 38 ** $QT_END_LICENSE$ 39 39 ** 40 40 ****************************************************************************/ 41 42 /*43 TRANSLATOR qdesigner_internal::QtGradientStopsController44 */45 41 46 42 #include "qtgradientstopscontroller.h" … … 595 591 596 592 QtGradientStopsController::QtGradientStopsController(QObject *parent) 597 : QObject(parent) 598 { 599 d_ptr = new QtGradientStopsControllerPrivate(); 593 : QObject(parent), d_ptr(new QtGradientStopsControllerPrivate()) 594 { 600 595 d_ptr->q_ptr = this; 601 596 … … 614 609 d_ptr->m_model = new QtGradientStopsModel(this); 615 610 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))); 641 636 642 637 connect(d_ptr->m_ui->hueSpinBox, SIGNAL(valueChanged(int)), … … 676 671 QtGradientStopsController::~QtGradientStopsController() 677 672 { 678 delete d_ptr;679 673 } 680 674
Note:
See TracChangeset
for help on using the changeset viewer.