Aesthetic tweaks for qmleasing UI
[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     setWindowTitle("QML Easing Curve Editor");
57     SplineEditor *splineEditor = new SplineEditor(this);
58
59     QWidget *mainWidget = new QWidget(this);
60
61     setCentralWidget(mainWidget);
62
63     QHBoxLayout *hboxLayout = new QHBoxLayout(mainWidget);
64     QVBoxLayout *vboxLayout = new QVBoxLayout();
65
66     mainWidget->setLayout(hboxLayout);
67     hboxLayout->addLayout(vboxLayout);
68
69     QWidget *propertyWidget = new QWidget(this);
70     ui_properties.setupUi(propertyWidget);
71
72     ui_properties.spinBox->setMinimum(50);
73     ui_properties.spinBox->setMaximum(10000);
74     ui_properties.spinBox->setValue(500);
75
76     hboxLayout->addWidget(propertyWidget);
77
78     m_placeholder = new QWidget(this);
79
80     m_placeholder->setFixedSize(quickView.size());
81
82     vboxLayout->addWidget(splineEditor);
83     vboxLayout->addWidget(m_placeholder);
84
85     ui_properties.plainTextEdit->setPlainText(splineEditor->generateCode());
86     connect(splineEditor, SIGNAL(easingCurveCodeChanged(QString)), ui_properties.plainTextEdit, SLOT(setPlainText(QString)));
87
88     quickView.rootContext()->setContextProperty(QLatin1String("spinBox"), ui_properties.spinBox);
89
90     foreach (const QString &name, splineEditor->presetNames())
91         ui_properties.comboBox->addItem(name);
92
93     connect(ui_properties.comboBox, SIGNAL(currentIndexChanged(QString)), splineEditor, SLOT(setPreset(QString)));
94
95     splineEditor->setPreset(ui_properties.comboBox->currentText());
96
97     QVBoxLayout *groupBoxLayout = new QVBoxLayout(ui_properties.groupBox);
98     groupBoxLayout->setMargin(0);
99     ui_properties.groupBox->setLayout(groupBoxLayout);
100
101     groupBoxLayout->addWidget(splineEditor->pointListWidget());
102     m_splineEditor = splineEditor;
103     connect(ui_properties.plainTextEdit, SIGNAL(textChanged()), this, SLOT(textEditTextChanged()));
104
105     QDialog* importDialog = new QDialog(this);
106     ui_import.setupUi(importDialog);
107     ui_import.inInfluenceEdit->setValidator(new QDoubleValidator(this));
108     ui_import.inSlopeEdit->setValidator(new QDoubleValidator(this));
109     ui_import.outInfluenceEdit->setValidator(new QDoubleValidator(this));
110     ui_import.outSlopeEdit->setValidator(new QDoubleValidator(this));
111     connect(ui_properties.importButton, SIGNAL(clicked()), importDialog, SLOT(show()));
112     connect(importDialog, SIGNAL(finished(int)), this, SLOT(importData(int)));
113
114     connect(this, SIGNAL(close()), this, SLOT(doClose()));
115     initQml();
116 }
117
118 void MainWindow::showQuickView()
119 {
120     const int margin = 16;
121     quickView.setPosition(pos() + QPoint(0, frameGeometry().height() + margin));
122
123     quickView.raise();
124     quickView.show();
125 }
126
127 void MainWindow::textEditTextChanged()
128 {
129     m_splineEditor->setEasingCurve(ui_properties.plainTextEdit->toPlainText().trimmed());
130 }
131
132 void MainWindow::moveEvent(QMoveEvent *event)
133 {
134     QMainWindow::moveEvent(event);
135     showQuickView();
136 }
137
138 void MainWindow::resizeEvent(QResizeEvent *event)
139 {
140     QMainWindow::resizeEvent(event);
141     showQuickView();
142 }
143
144 void MainWindow::initQml()
145 {
146     quickView.setFlags(Qt::FramelessWindowHint);
147     quickView.rootContext()->setContextProperty(QLatin1String("editor"), m_splineEditor);
148     quickView.setSource(QUrl("qrc:/preview.qml"));
149     quickView.show();
150 }
151
152 void MainWindow::closeEvent(QCloseEvent *)
153 {
154     quickView.close();
155 }
156
157 void MainWindow::importData(int result)
158 {
159     if (!result)
160         return;
161     double ii = ui_import.inInfluenceEdit->text().toDouble();
162     double is = ui_import.inSlopeEdit->text().toDouble();
163     double oi = ui_import.outInfluenceEdit->text().toDouble();
164     double os = ui_import.outSlopeEdit->text().toDouble();
165     ii = qBound<double>(0., ii, 100.) / 100.;
166     oi = qBound<double>(0., oi, 100.) / 100.;
167     QString generatedString = QString("[%1,%2,%3,%4,1,1]").arg(ii, 0, 'f', 3)
168         .arg(ii*is,0,'f',3).arg(1-oi, 0, 'f', 3).arg(1-(oi*os), 0, 'f', 3);
169     ui_properties.plainTextEdit->setPlainText(generatedString);
170 }