Don't use QWindow::move
[profile/ivi/qtdeclarative.git] / tools / easingcurveeditor / mainwindow.cpp
1 /****************************************************************************
2 **
3 ** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
4 ** Contact: http://www.qt-project.org/
5 **
6 ** This file is part of the tools applications of the Qt Toolkit.
7 **
8 ** $QT_BEGIN_LICENSE:LGPL$
9 ** GNU Lesser General Public License Usage
10 ** This file may be used under the terms of the GNU Lesser General Public
11 ** License version 2.1 as published by the Free Software Foundation and
12 ** appearing in the file LICENSE.LGPL included in the packaging of this
13 ** file. Please review the following information to ensure the GNU Lesser
14 ** General Public License version 2.1 requirements will be met:
15 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
16 **
17 ** In addition, as a special exception, Nokia gives you certain additional
18 ** rights. These rights are described in the Nokia Qt LGPL Exception
19 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
20 **
21 ** GNU General Public License Usage
22 ** Alternatively, this file may be used under the terms of the GNU General
23 ** Public License version 3.0 as published by the Free Software Foundation
24 ** and appearing in the file LICENSE.GPL included in the packaging of this
25 ** file. Please review the following information to ensure the GNU General
26 ** Public License version 3.0 requirements will be met:
27 ** http://www.gnu.org/copyleft/gpl.html.
28 **
29 ** Other Usage
30 ** Alternatively, this file may be used in accordance with the terms and
31 ** conditions contained in a signed written agreement between you and Nokia.
32 **
33 **
34 **
35 **
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
51 MainWindow::MainWindow(QWidget *parent) :
52     QMainWindow(parent)
53 {
54     SplineEditor *splineEditor = new SplineEditor(this);
55
56     QWidget *mainWidget = new QWidget(this);
57
58     setCentralWidget(mainWidget);
59
60     QHBoxLayout *hboxLayout = new QHBoxLayout(mainWidget);
61     QVBoxLayout *vboxLayout = new QVBoxLayout();
62
63     mainWidget->setLayout(hboxLayout);
64     hboxLayout->addLayout(vboxLayout);
65
66     QWidget *propertyWidget = new QWidget(this);
67     ui_properties.setupUi(propertyWidget);
68
69     ui_properties.spinBox->setMinimum(50);
70     ui_properties.spinBox->setMaximum(10000);
71     ui_properties.spinBox->setValue(500);
72
73     hboxLayout->addWidget(propertyWidget);
74
75     m_placeholder = new QWidget(this);
76
77     m_placeholder->setFixedSize(quickView.size());
78
79     vboxLayout->addWidget(splineEditor);
80     vboxLayout->addWidget(m_placeholder);
81
82     ui_properties.plainTextEdit->setPlainText(splineEditor->generateCode());
83     connect(splineEditor, SIGNAL(easingCurveCodeChanged(QString)), ui_properties.plainTextEdit, SLOT(setPlainText(QString)));
84
85     quickView.rootContext()->setContextProperty(QLatin1String("spinBox"), ui_properties.spinBox);
86
87     foreach (const QString &name, splineEditor->presetNames())
88         ui_properties.comboBox->addItem(name);
89
90     connect(ui_properties.comboBox, SIGNAL(currentIndexChanged(QString)), splineEditor, SLOT(setPreset(QString)));
91
92     splineEditor->setPreset(ui_properties.comboBox->currentText());
93
94     QVBoxLayout *groupBoxLayout = new QVBoxLayout(ui_properties.groupBox);
95     groupBoxLayout->setMargin(0);
96     ui_properties.groupBox->setLayout(groupBoxLayout);
97
98     groupBoxLayout->addWidget(splineEditor->pointListWidget());
99     m_splineEditor = splineEditor;
100     connect(ui_properties.plainTextEdit, SIGNAL(textChanged()), this, SLOT(textEditTextChanged()));
101     initQml();
102 }
103
104 void MainWindow::showQuickView()
105 {
106     const int margin = 16;
107     quickView.setPos(pos() + QPoint(0, frameGeometry().height() + margin));
108
109     quickView.raise();
110     quickView.show();
111 }
112
113 void MainWindow::textEditTextChanged()
114 {
115     m_splineEditor->setEasingCurve(ui_properties.plainTextEdit->toPlainText().trimmed());
116 }
117
118 void MainWindow::moveEvent(QMoveEvent *event)
119 {
120     QMainWindow::moveEvent(event);
121     showQuickView();
122 }
123
124 void MainWindow::resizeEvent(QResizeEvent *event)
125 {
126     QMainWindow::resizeEvent(event);
127     showQuickView();
128 }
129
130 void MainWindow::initQml()
131 {
132     quickView.setWindowFlags(Qt::FramelessWindowHint);
133     quickView.rootContext()->setContextProperty(QLatin1String("editor"), m_splineEditor);
134     quickView.setSource(QUrl("qrc:/preview.qml"));
135     quickView.show();
136 }