Unify qmleasing and easingcurveeditor
[profile/ivi/qtdeclarative.git] / tools / qmleasing / mainwindow.cpp
1 /****************************************************************************
2 **
3 ** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies).
4 ** Contact: http://www.qt-project.org/legal
5 **
6 ** This file is part of the tools applications of the Qt Toolkit.
7 **
8 ** $QT_BEGIN_LICENSE:LGPL$
9 ** Commercial License Usage
10 ** Licensees holding valid commercial Qt licenses may use this file in
11 ** accordance with the commercial license agreement provided with the
12 ** Software or, alternatively, in accordance with the terms contained in
13 ** a written agreement between you and Digia.  For licensing terms and
14 ** conditions see http://qt.digia.com/licensing.  For further information
15 ** use the contact form at http://qt.digia.com/contact-us.
16 **
17 ** GNU Lesser General Public License Usage
18 ** Alternatively, this file may be used under the terms of the GNU Lesser
19 ** General Public License version 2.1 as published by the Free Software
20 ** Foundation and appearing in the file LICENSE.LGPL included in the
21 ** packaging of this file.  Please review the following information to
22 ** ensure the GNU Lesser General Public License version 2.1 requirements
23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
24 **
25 ** In addition, as a special exception, Digia gives you certain additional
26 ** rights.  These rights are described in the Digia Qt LGPL Exception
27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
28 **
29 ** GNU General Public License Usage
30 ** Alternatively, this file may be used under the terms of the GNU
31 ** General Public License version 3.0 as published by the Free Software
32 ** Foundation and appearing in the file LICENSE.GPL included in the
33 ** packaging of this file.  Please review the following information to
34 ** ensure the GNU General Public License version 3.0 requirements will be
35 ** met: http://www.gnu.org/copyleft/gpl.html.
36 **
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41
42 #include "mainwindow.h"
43 #include "splineeditor.h"
44 #include <QtQuick/QQuickView>
45 #include <QtQuick>
46 #include <QtQml/QQmlContext>
47 #include <QEasingCurve>
48 #include <QHBoxLayout>
49 #include <QVBoxLayout>
50 #include <QDoubleValidator>
51 #include <QDialog>
52
53 MainWindow::MainWindow(QWidget *parent) :
54     QMainWindow(parent)
55 {
56     SplineEditor *splineEditor = new SplineEditor(this);
57
58     QWidget *mainWidget = new QWidget(this);
59
60     setCentralWidget(mainWidget);
61
62     QHBoxLayout *hboxLayout = new QHBoxLayout(mainWidget);
63     QVBoxLayout *vboxLayout = new QVBoxLayout();
64
65     mainWidget->setLayout(hboxLayout);
66     hboxLayout->addLayout(vboxLayout);
67
68     QWidget *propertyWidget = new QWidget(this);
69     ui_properties.setupUi(propertyWidget);
70
71     ui_properties.spinBox->setMinimum(50);
72     ui_properties.spinBox->setMaximum(10000);
73     ui_properties.spinBox->setValue(500);
74
75     hboxLayout->addWidget(propertyWidget);
76
77     m_placeholder = new QWidget(this);
78
79     m_placeholder->setFixedSize(quickView.size());
80
81     vboxLayout->addWidget(splineEditor);
82     vboxLayout->addWidget(m_placeholder);
83
84     ui_properties.plainTextEdit->setPlainText(splineEditor->generateCode());
85     connect(splineEditor, SIGNAL(easingCurveCodeChanged(QString)), ui_properties.plainTextEdit, SLOT(setPlainText(QString)));
86
87     quickView.rootContext()->setContextProperty(QLatin1String("spinBox"), ui_properties.spinBox);
88
89     foreach (const QString &name, splineEditor->presetNames())
90         ui_properties.comboBox->addItem(name);
91
92     connect(ui_properties.comboBox, SIGNAL(currentIndexChanged(QString)), splineEditor, SLOT(setPreset(QString)));
93
94     splineEditor->setPreset(ui_properties.comboBox->currentText());
95
96     QVBoxLayout *groupBoxLayout = new QVBoxLayout(ui_properties.groupBox);
97     groupBoxLayout->setMargin(0);
98     ui_properties.groupBox->setLayout(groupBoxLayout);
99
100     groupBoxLayout->addWidget(splineEditor->pointListWidget());
101     m_splineEditor = splineEditor;
102     connect(ui_properties.plainTextEdit, SIGNAL(textChanged()), this, SLOT(textEditTextChanged()));
103
104     QDialog* importDialog = new QDialog(this);
105     ui_import.setupUi(importDialog);
106     ui_import.inInfluenceEdit->setValidator(new QDoubleValidator(this));
107     ui_import.inSlopeEdit->setValidator(new QDoubleValidator(this));
108     ui_import.outInfluenceEdit->setValidator(new QDoubleValidator(this));
109     ui_import.outSlopeEdit->setValidator(new QDoubleValidator(this));
110     connect(ui_properties.importButton, SIGNAL(clicked()), importDialog, SLOT(show()));
111     connect(importDialog, SIGNAL(finished(int)), this, SLOT(importData(int)));
112
113     connect(this, SIGNAL(close()), this, SLOT(doClose()));
114     initQml();
115 }
116
117 void MainWindow::showQuickView()
118 {
119     const int margin = 16;
120     quickView.setPosition(pos() + QPoint(0, frameGeometry().height() + margin));
121
122     quickView.raise();
123     quickView.show();
124 }
125
126 void MainWindow::textEditTextChanged()
127 {
128     m_splineEditor->setEasingCurve(ui_properties.plainTextEdit->toPlainText().trimmed());
129 }
130
131 void MainWindow::moveEvent(QMoveEvent *event)
132 {
133     QMainWindow::moveEvent(event);
134     showQuickView();
135 }
136
137 void MainWindow::resizeEvent(QResizeEvent *event)
138 {
139     QMainWindow::resizeEvent(event);
140     showQuickView();
141 }
142
143 void MainWindow::initQml()
144 {
145     quickView.setFlags(Qt::FramelessWindowHint);
146     quickView.rootContext()->setContextProperty(QLatin1String("editor"), m_splineEditor);
147     quickView.setSource(QUrl("qrc:/preview.qml"));
148     quickView.show();
149 }
150
151 void MainWindow::closeEvent(QCloseEvent *)
152 {
153     quickView.close();
154 }
155
156 void MainWindow::importData(int result)
157 {
158     if (!result)
159         return;
160     double ii = ui_import.inInfluenceEdit->text().toDouble();
161     double is = ui_import.inSlopeEdit->text().toDouble();
162     double oi = ui_import.outInfluenceEdit->text().toDouble();
163     double os = ui_import.outSlopeEdit->text().toDouble();
164     ii = qBound<double>(0., ii, 100.) / 100.;
165     oi = qBound<double>(0., oi, 100.) / 100.;
166     QString generatedString = QString("[%1,%2,%3,%4,1,1]").arg(ii, 0, 'f', 3)
167         .arg(ii*is,0,'f',3).arg(1-oi, 0, 'f', 3).arg(1-(oi*os), 0, 'f', 3);
168     ui_properties.plainTextEdit->setPlainText(generatedString);
169 }